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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ed0a0df9f1006ce0417cefeab51f9a514ee0f309 | c80f25d24cee6ed8dba1513c227886c07d83cf75 | /WeaponGirl_1/Client/trunk/Classes/Network/Common/MsgGameDebug.cpp | dfec58c375223698734f3bf8a07e12696434ea05 | [
"MIT"
] | permissive | cnsuhao/newProBase | c250e54ead43efb57363347d1700649a35617d15 | 4fe81d30740a2a0857ca6e09a281fed1146e6202 | refs/heads/master | 2021-08-23T14:19:24.568828 | 2015-11-27T13:37:54 | 2015-11-27T13:37:54 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 1,208 | cpp | ////////////////////////////////////////////////////////////////////////
// Copyright(c) 2015-9999, WuHan GoodGame, All Rights Reserved
// Moudle: MsgGameDebug.cpp
// Author: ÅíÎÄÆæ(Peng Wenqi)
// Created: 2015/10/13
////////////////////////////////////////////////////////////////////////
#include "MsgGameDebug.h"
#include "MyCocosCommon\LayerHint.h"
//////////////////////////////////////////////////////////////////////////
CMsgGameDebug::CMsgGameDebug()
{
Init();
m_pInfo = (MSG_Info*)m_bufMsg;
m_head.usType = _MSG_GAME_DEBUG;
m_head.usSize = sizeof(MSG_Info);
}
//////////////////////////////////////////////////////////////////////////
CMsgGameDebug::~CMsgGameDebug()
{
}
//////////////////////////////////////////////////////////////////////////
void CMsgGameDebug::Process()
{
::AddHint(m_pInfo->szString);
}
//////////////////////////////////////////////////////////////////////////
bool CMsgGameDebug::CreateString(const char* pszString)
{
CHECKF(pszString);
this->Init();
m_head.usType = _MSG_GAME_DEBUG;
m_head.usSize = sizeof(MSG_Info);
::SafeCopy(m_pInfo->szString, pszString, sizeof(m_pInfo->szString));
return true;
}
| [
"c913421043@dbc7df3a-5862-4ee2-b0ae-4c0d245d469e"
] | c913421043@dbc7df3a-5862-4ee2-b0ae-4c0d245d469e |
db39b168b564493da9685e58dd071c642570e972 | ac56e5761a6abcc357c9f58d74362147d1ffddeb | /Leecode/guessNumber.cpp | 5c7e1d93d7bd3ed4c7549b8a7783aadc2a68753d | [] | no_license | tuomao/leecode | d1553cb65e5ca1913a6def06c79259e3cc66c87e | b4dcf4d7dfb1c303cdcc27fb8d1ea88236ffafc6 | refs/heads/master | 2021-01-21T09:53:30.797784 | 2016-11-28T12:24:01 | 2016-11-28T12:24:01 | 68,451,819 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 457 | cpp | #include "stdlib.h"
#include "stdio.h"
int guess(int num);
int findNumber(int min,int max);
int guessNumber(int n);
int guess(int num){
if(num==6){
return 0;
}else if(num<6){
return -1;
}
return 1;
}
int findNumber(int min,int max){
int m=(min+max)/2;
if(guess(m)==0){
return m;
}else if(guess(m)==-1){
return findNumber(min,m);
}else if(guess(m)==1){
return findNumber(m,max);
}
}
int guessNumber(int n){
return findNumber(1,n);
} | [
"a11211052@163.com"
] | a11211052@163.com |
2695c686b7987f5f4c6a28275e5d146418c8a45e | 462c13295e76b4ae2b2e407ee9ad15aa93365db7 | /problems/+cardiff/@CantileverBeam2d/meshes/cantileverBeam100x5x1/constant/polyMesh/owner | 6012b86fe9dcc859f4d4042e80c2551be0c60e98 | [
"MIT"
] | permissive | lucasribeiroufrj/nfvm | 14343ae0e85cae5d66640f13331f25d824282855 | e6e548d86d06419f740fa8dc73bf14416fba3d02 | refs/heads/main | 2023-06-17T13:55:13.736895 | 2021-07-09T20:25:21 | 2021-07-09T20:25:21 | 384,543,859 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,823 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | foam-extend: Open Source CFD |
| \\ / O peration | Version: 4.0 |
| \\ / A nd | Web: http://www.foam-extend.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class labelList;
note "nPoints: 1212 nCells: 500 nFaces: 2105 nInternalFaces: 895";
location "constant/polyMesh";
object owner;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
2105
(
0
0
1
1
2
2
3
3
4
4
5
5
6
6
7
7
8
8
9
9
10
10
11
11
12
12
13
13
14
14
15
15
16
16
17
17
18
18
19
19
20
20
21
21
22
22
23
23
24
24
25
25
26
26
27
27
28
28
29
29
30
30
31
31
32
32
33
33
34
34
35
35
36
36
37
37
38
38
39
39
40
40
41
41
42
42
43
43
44
44
45
45
46
46
47
47
48
48
49
49
50
50
51
51
52
52
53
53
54
54
55
55
56
56
57
57
58
58
59
59
60
60
61
61
62
62
63
63
64
64
65
65
66
66
67
67
68
68
69
69
70
70
71
71
72
72
73
73
74
74
75
75
76
76
77
77
78
78
79
79
80
80
81
81
82
82
83
83
84
84
85
85
86
86
87
87
88
88
89
89
90
90
91
91
92
92
93
93
94
94
95
95
96
96
97
97
98
98
99
100
100
101
101
102
102
103
103
104
104
105
105
106
106
107
107
108
108
109
109
110
110
111
111
112
112
113
113
114
114
115
115
116
116
117
117
118
118
119
119
120
120
121
121
122
122
123
123
124
124
125
125
126
126
127
127
128
128
129
129
130
130
131
131
132
132
133
133
134
134
135
135
136
136
137
137
138
138
139
139
140
140
141
141
142
142
143
143
144
144
145
145
146
146
147
147
148
148
149
149
150
150
151
151
152
152
153
153
154
154
155
155
156
156
157
157
158
158
159
159
160
160
161
161
162
162
163
163
164
164
165
165
166
166
167
167
168
168
169
169
170
170
171
171
172
172
173
173
174
174
175
175
176
176
177
177
178
178
179
179
180
180
181
181
182
182
183
183
184
184
185
185
186
186
187
187
188
188
189
189
190
190
191
191
192
192
193
193
194
194
195
195
196
196
197
197
198
198
199
200
200
201
201
202
202
203
203
204
204
205
205
206
206
207
207
208
208
209
209
210
210
211
211
212
212
213
213
214
214
215
215
216
216
217
217
218
218
219
219
220
220
221
221
222
222
223
223
224
224
225
225
226
226
227
227
228
228
229
229
230
230
231
231
232
232
233
233
234
234
235
235
236
236
237
237
238
238
239
239
240
240
241
241
242
242
243
243
244
244
245
245
246
246
247
247
248
248
249
249
250
250
251
251
252
252
253
253
254
254
255
255
256
256
257
257
258
258
259
259
260
260
261
261
262
262
263
263
264
264
265
265
266
266
267
267
268
268
269
269
270
270
271
271
272
272
273
273
274
274
275
275
276
276
277
277
278
278
279
279
280
280
281
281
282
282
283
283
284
284
285
285
286
286
287
287
288
288
289
289
290
290
291
291
292
292
293
293
294
294
295
295
296
296
297
297
298
298
299
300
300
301
301
302
302
303
303
304
304
305
305
306
306
307
307
308
308
309
309
310
310
311
311
312
312
313
313
314
314
315
315
316
316
317
317
318
318
319
319
320
320
321
321
322
322
323
323
324
324
325
325
326
326
327
327
328
328
329
329
330
330
331
331
332
332
333
333
334
334
335
335
336
336
337
337
338
338
339
339
340
340
341
341
342
342
343
343
344
344
345
345
346
346
347
347
348
348
349
349
350
350
351
351
352
352
353
353
354
354
355
355
356
356
357
357
358
358
359
359
360
360
361
361
362
362
363
363
364
364
365
365
366
366
367
367
368
368
369
369
370
370
371
371
372
372
373
373
374
374
375
375
376
376
377
377
378
378
379
379
380
380
381
381
382
382
383
383
384
384
385
385
386
386
387
387
388
388
389
389
390
390
391
391
392
392
393
393
394
394
395
395
396
396
397
397
398
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
0
100
200
300
400
99
199
299
399
499
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
0
100
200
300
400
1
101
201
301
401
2
102
202
302
402
3
103
203
303
403
4
104
204
304
404
5
105
205
305
405
6
106
206
306
406
7
107
207
307
407
8
108
208
308
408
9
109
209
309
409
10
110
210
310
410
11
111
211
311
411
12
112
212
312
412
13
113
213
313
413
14
114
214
314
414
15
115
215
315
415
16
116
216
316
416
17
117
217
317
417
18
118
218
318
418
19
119
219
319
419
20
120
220
320
420
21
121
221
321
421
22
122
222
322
422
23
123
223
323
423
24
124
224
324
424
25
125
225
325
425
26
126
226
326
426
27
127
227
327
427
28
128
228
328
428
29
129
229
329
429
30
130
230
330
430
31
131
231
331
431
32
132
232
332
432
33
133
233
333
433
34
134
234
334
434
35
135
235
335
435
36
136
236
336
436
37
137
237
337
437
38
138
238
338
438
39
139
239
339
439
40
140
240
340
440
41
141
241
341
441
42
142
242
342
442
43
143
243
343
443
44
144
244
344
444
45
145
245
345
445
46
146
246
346
446
47
147
247
347
447
48
148
248
348
448
49
149
249
349
449
50
150
250
350
450
51
151
251
351
451
52
152
252
352
452
53
153
253
353
453
54
154
254
354
454
55
155
255
355
455
56
156
256
356
456
57
157
257
357
457
58
158
258
358
458
59
159
259
359
459
60
160
260
360
460
61
161
261
361
461
62
162
262
362
462
63
163
263
363
463
64
164
264
364
464
65
165
265
365
465
66
166
266
366
466
67
167
267
367
467
68
168
268
368
468
69
169
269
369
469
70
170
270
370
470
71
171
271
371
471
72
172
272
372
472
73
173
273
373
473
74
174
274
374
474
75
175
275
375
475
76
176
276
376
476
77
177
277
377
477
78
178
278
378
478
79
179
279
379
479
80
180
280
380
480
81
181
281
381
481
82
182
282
382
482
83
183
283
383
483
84
184
284
384
484
85
185
285
385
485
86
186
286
386
486
87
187
287
387
487
88
188
288
388
488
89
189
289
389
489
90
190
290
390
490
91
191
291
391
491
92
192
292
392
492
93
193
293
393
493
94
194
294
394
494
95
195
295
395
495
96
196
296
396
496
97
197
297
397
497
98
198
298
398
498
99
199
299
399
499
0
100
200
300
400
1
101
201
301
401
2
102
202
302
402
3
103
203
303
403
4
104
204
304
404
5
105
205
305
405
6
106
206
306
406
7
107
207
307
407
8
108
208
308
408
9
109
209
309
409
10
110
210
310
410
11
111
211
311
411
12
112
212
312
412
13
113
213
313
413
14
114
214
314
414
15
115
215
315
415
16
116
216
316
416
17
117
217
317
417
18
118
218
318
418
19
119
219
319
419
20
120
220
320
420
21
121
221
321
421
22
122
222
322
422
23
123
223
323
423
24
124
224
324
424
25
125
225
325
425
26
126
226
326
426
27
127
227
327
427
28
128
228
328
428
29
129
229
329
429
30
130
230
330
430
31
131
231
331
431
32
132
232
332
432
33
133
233
333
433
34
134
234
334
434
35
135
235
335
435
36
136
236
336
436
37
137
237
337
437
38
138
238
338
438
39
139
239
339
439
40
140
240
340
440
41
141
241
341
441
42
142
242
342
442
43
143
243
343
443
44
144
244
344
444
45
145
245
345
445
46
146
246
346
446
47
147
247
347
447
48
148
248
348
448
49
149
249
349
449
50
150
250
350
450
51
151
251
351
451
52
152
252
352
452
53
153
253
353
453
54
154
254
354
454
55
155
255
355
455
56
156
256
356
456
57
157
257
357
457
58
158
258
358
458
59
159
259
359
459
60
160
260
360
460
61
161
261
361
461
62
162
262
362
462
63
163
263
363
463
64
164
264
364
464
65
165
265
365
465
66
166
266
366
466
67
167
267
367
467
68
168
268
368
468
69
169
269
369
469
70
170
270
370
470
71
171
271
371
471
72
172
272
372
472
73
173
273
373
473
74
174
274
374
474
75
175
275
375
475
76
176
276
376
476
77
177
277
377
477
78
178
278
378
478
79
179
279
379
479
80
180
280
380
480
81
181
281
381
481
82
182
282
382
482
83
183
283
383
483
84
184
284
384
484
85
185
285
385
485
86
186
286
386
486
87
187
287
387
487
88
188
288
388
488
89
189
289
389
489
90
190
290
390
490
91
191
291
391
491
92
192
292
392
492
93
193
293
393
493
94
194
294
394
494
95
195
295
395
495
96
196
296
396
496
97
197
297
397
497
98
198
298
398
498
99
199
299
399
499
)
// ************************************************************************* //
| [
"lucasribeiroufrj@gmail.com"
] | lucasribeiroufrj@gmail.com | |
438197b0fcf9a0befe743dbd71a1f31418bf401c | d607fa153791e1c37e22e5ae4f3732cc329327ff | /include/CWorkerThread.h | 172e6de662f66acb36cc1a692c6667a2ad2b447c | [] | no_license | qiubin2016/ThreadPool | e611c0b11d442e8b918178bdd75ca65ec9fc47a6 | 4ecb6960d2d29a30270259ae89a5720543a905a2 | refs/heads/master | 2020-03-21T00:34:26.061601 | 2018-06-19T17:17:43 | 2018-06-19T17:17:43 | 137,899,188 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 794 | h | #ifndef CWORKERTHREAD_H_
#define CWORKERTHREAD_H_
#include "CThreadA.h"
#include "CJob.h"
#include "CMutex.h"
#include "CCondition.h"
//#include "CThreadPool.h"
class CThreadPool;
class CWorkerThread: public CThreadA
{
private:
CThreadPool *m_ThreadPool;
CJob *m_Job;
void *m_JobData;
CMutex m_VarMutex;
bool m_IsEnd;
protected:
public:
CCondition m_JobCond;
CMutex m_WorkMutex;
CWorkerThread();
virtual ~CWorkerThread();
void Run();
void SetJob(CJob *job, void *jobdata);
CJob *GetJob(void) {return m_Job;}
void SetThreadPool(CThreadPool *thrpool);
CThreadPool *GetThreadPool(void) {return m_ThreadPool;}
void Stop(void);
};
#endif
| [
"cust@custVBOX.(none)"
] | cust@custVBOX.(none) |
d01c2cb0679ad90b1f1d41825e143903182ecd83 | 22ebcde0f235b60c1c5cff32461f477ac4f72ecf | /QtSrc/gui/tmp/moc/debug_shared/moc_qtoolbarseparator_p.cpp | 2246ad5066d214f0d1ddd7825b72596e1a7436d1 | [] | no_license | kystyn/ui | 13dc1e7c0e01761b0658be101528bea440be70d9 | 083a011a735f6dc65c271bc92e397c75155ca61f | refs/heads/master | 2020-07-29T03:45:08.929517 | 2020-06-17T23:42:05 | 2020-06-17T23:42:05 | 209,656,041 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,612 | cpp | /****************************************************************************
** Meta object code from reading C++ file 'qtoolbarseparator_p.h'
**
** Created: Fri Sep 2 00:08:17 2011
** by: The Qt Meta Object Compiler version 62 (Qt 4.7.4)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include "../../../widgets/qtoolbarseparator_p.h"
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'qtoolbarseparator_p.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 62
#error "This file was generated using the moc from 4.7.4. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
QT_BEGIN_MOC_NAMESPACE
static const uint qt_meta_data_QToolBarSeparator[] = {
// content:
5, // revision
0, // classname
0, 0, // classinfo
1, 14, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
0, // signalCount
// slots: signature, parameters, type, tag, flags
31, 19, 18, 18, 0x0a,
0 // eod
};
static const char qt_meta_stringdata_QToolBarSeparator[] = {
"QToolBarSeparator\0\0orientation\0"
"setOrientation(Qt::Orientation)\0"
};
const QMetaObject QToolBarSeparator::staticMetaObject = {
{ &QWidget::staticMetaObject, qt_meta_stringdata_QToolBarSeparator,
qt_meta_data_QToolBarSeparator, 0 }
};
#ifdef Q_NO_DATA_RELOCATION
const QMetaObject &QToolBarSeparator::getStaticMetaObject() { return staticMetaObject; }
#endif //Q_NO_DATA_RELOCATION
const QMetaObject *QToolBarSeparator::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->metaObject : &staticMetaObject;
}
void *QToolBarSeparator::qt_metacast(const char *_clname)
{
if (!_clname) return 0;
if (!strcmp(_clname, qt_meta_stringdata_QToolBarSeparator))
return static_cast<void*>(const_cast< QToolBarSeparator*>(this));
return QWidget::qt_metacast(_clname);
}
int QToolBarSeparator::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = QWidget::qt_metacall(_c, _id, _a);
if (_id < 0)
return _id;
if (_c == QMetaObject::InvokeMetaMethod) {
switch (_id) {
case 0: setOrientation((*reinterpret_cast< Qt::Orientation(*)>(_a[1]))); break;
default: ;
}
_id -= 1;
}
return _id;
}
QT_END_MOC_NAMESPACE
| [
"konstantindamaskinskiy@gmail.com"
] | konstantindamaskinskiy@gmail.com |
533cb0b65ffe65037806c8654f8daa21fa272162 | 53d24065cf64623296c525cedd5192c85b163528 | /codeforces/469/B.cpp | 7678d22a300c08ef7ccc98c1c3cd0ce1afc604d2 | [] | no_license | qwer-zcc/OI | a71f0e9ff0fcf67f3477f78d41ad0beffd0bb667 | 2b2000526092ca524e45fffcd470c1daae8a8ba9 | refs/heads/master | 2021-01-20T01:57:16.540586 | 2015-04-27T12:28:40 | 2015-04-27T12:28:40 | 34,663,865 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,314 | cpp | //+-------------------------------------+
//| By qwer_zcc |
//| Date 14/08/2014 |
//+-------------------------------------+
#include <bits/stdc++.h>
#define INF ~0U>>1
#define LLINF ~0ULL>>1
#define LL long long
#define uLL unsigned long long
#define uint unsigned int
#define D double
#define LD long double
#define rep(i,a,b) for (int i=a;i<=b;i++)
#define drep(i,a,b) for (int i=a;i>=b;i--)
#define M(a) memset(a,0,sizeof(a));
#define pb push_back
#define mp make_pair
#define Pi M_PI
using namespace std;
template<class T> inline T min(T &a,T &b) {return a<b?a:b;}
template<class T> inline T max(T &a,T &b) {return a>b?a:b;}
template<class T> void read(T &x)
{
char ch;
while ((ch=getchar()) && !isdigit(ch));x=ch-'0';
while ((ch=getchar()) && isdigit(ch)) x=x*10+ch-'0';
}
struct point
{
int x,y;
point() {}
point(int _x,int _y) : x(_x),y(_y) {}
} ;
struct lj{int x,y;}P[100],Q[100];
int n,m,l,r,cnt;
int main()
{
scanf("%d%d%d%d",&n,&m,&l,&r);
rep(i,1,n) scanf("%d%d",&P[i].x,&P[i].y);
rep(i,1,m) scanf("%d%d",&Q[i].x,&Q[i].y);
rep(i,l,r)
{
int flag=0;
rep(j,1,n)
{
rep(k,1,m)
if (!(P[j].x>Q[k].y+i||P[j].y<Q[k].x+i)) flag=1;
}
cnt+=flag;
}
printf("%d\n",cnt);
}
| [
"qwer_zcc@126.com"
] | qwer_zcc@126.com |
34c359eb6073d8feb55bd1398b706c44c14b8594 | 5c77b6fe4abf6aea7cda21fb189e57f407d47638 | /Dyanamic Programming/Interleaving String.cpp | 6b6b32fa4af2a248b7ac6d89aed01e6da25dd5f7 | [] | no_license | PrachiSinghal86/Leetcode | d4afefffd25cac133389f2c544e4d27529b95bab | 0cf2ef338af20ff10b99eb36aa0c35f75e9eb054 | refs/heads/master | 2023-02-19T04:56:04.634885 | 2021-01-17T08:36:36 | 2021-01-17T08:36:36 | 261,002,086 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,148 | cpp | class Solution {
public:
bool isInterleave(string s1, string s2, string s3) {
if((s1.size()==0&&s2==s3)||(s2.size()==0&&s1==s3))
return true;
vector<vector<bool>>dp(s1.size()+1,vector<bool>(s2.size()+1,false));
dp[0][0]=true;
if(s1.size()+s2.size()!=s3.size())
return false;
for(int i=1;i<=s2.size();i++)
{
if(s2[i-1]==s3[i-1])
dp[0][i]=true;
else
break;
}
//cout<<dp[0][1]<<dp[1][0];
for(int i=1;i<=s1.size();i++)
{
if(s1[i-1]==s3[i-1])
dp[i][0]=true;
else
break;
}
for(int i=1;i<=s1.size();i++)
{
for(int j=1;j<=s2.size();j++)
{
if(s3[i+j-1]==s1[i-1])
dp[i][j]=dp[i-1][j];
cout<<dp[i][j];
if(s3[i+j-1]==s2[j-1])
{
dp[i][j]=dp[i][j]||dp[i][j-1];
}
//cout<<dp[i][j-1];
}
}
return dp[s1.size()][s2.size()];
}
}; | [
"prachisinghals076@gmail.com"
] | prachisinghals076@gmail.com |
3b18943862c0ccebdbfa33dc76c1b57ffe03ca1b | cc733834bdb5b4d33210c091744100c818beb2cb | /knRapid/src/rapidExtArcIo/HydraIo.cpp | ad60fd0236411bdf060d8e06326760a3a660d2dd | [
"Apache-2.0"
] | permissive | hhutz/soraCore | b7d592424afb2ff111c24f542853a993d99326e3 | 0b140e0bca251498c3b12c102d04bcb68e4c31b1 | refs/heads/master | 2021-06-26T00:37:20.379488 | 2015-12-17T17:18:51 | 2016-02-11T17:29:47 | 21,436,387 | 1 | 5 | null | 2021-06-18T16:59:09 | 2014-07-02T18:50:50 | C++ | UTF-8 | C++ | false | false | 774 | cpp | #include "HydraIo.h"
#include "rapidIo/HeaderIo.h"
#include "rapidIo/BaseTypesIo.h"
#include "rapidExtArcDds/HydraConfig.h"
#include "RapidExtArcIoParameters.h"
#include <iostream>
namespace rapid
{
namespace ext
{
namespace arc
{
std::ostream& operator<< (std::ostream& ostr, HydraConfig const& rhs)
{
ostr << "HydraConfig: {"
<< rhs.hdr << ","
<< rhs.name << ","
<< rhs.valueKeys << "}";
return ostr;
}
void operator <<= (HydraConfig& config, HydraConfigParameters const& params)
{
config.hdr <<= params.hdr;
strncpy (config.name, params.name.c_str(), 31);
config.name[31] = 0;
config.valueKeys <<= params.valueKeys;
}
}
}
}
| [
"mallan@71bd3d61-4118-0410-985d-8aea7a627388"
] | mallan@71bd3d61-4118-0410-985d-8aea7a627388 |
7a651c5020ad335b2af382cabadfb87cc8769d85 | 3c9f984766c81ba95f1f4f828fd9c4e6efef9da1 | /SupplyFinanceChain/src/SupplyFinanceChain/protocol/impl/SecretKey.cpp | 71ebb0f04f49fd7061fce4ec09817cb8743ebd93 | [] | no_license | SCF-Team/scfchain | 5f73e3c3a41ac5e33d2637980f428a9b8173fda5 | 41f020da81e1c69a61d0c1698df04cf33b20fc63 | refs/heads/master | 2020-06-26T21:51:29.263077 | 2019-08-05T11:11:24 | 2019-08-05T11:11:24 | 199,766,740 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 9,136 | cpp | //------------------------------------------------------------------------------
/*
This file is part of SupplyFinanceChaind: https://github.com/SupplyFinanceChain/SupplyFinanceChaind
Copyright (c) 2012, 2013 SupplyFinanceChain Labs Inc.
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
//==============================================================================
#include <SupplyFinanceChain/basics/strHex.h>
#include <SupplyFinanceChain/protocol/SecretKey.h>
#include <SupplyFinanceChain/protocol/digest.h>
#include <SupplyFinanceChain/protocol/impl/secp256k1.h>
#include <SupplyFinanceChain/basics/contract.h>
#include <SupplyFinanceChain/crypto/GenerateDeterministicKey.h>
#include <SupplyFinanceChain/crypto/csprng.h>
#include <SupplyFinanceChain/beast/crypto/secure_erase.h>
#include <SupplyFinanceChain/beast/utility/rngfill.h>
#include <ed25519-donna/ed25519.h>
#include <cstring>
namespace SupplyFinanceChain {
SecretKey::~SecretKey()
{
beast::secure_erase(buf_, sizeof(buf_));
}
SecretKey::SecretKey (std::array<std::uint8_t, 32> const& key)
{
std::memcpy(buf_, key.data(), key.size());
}
SecretKey::SecretKey (Slice const& slice)
{
if (slice.size() != sizeof(buf_))
LogicError("SecretKey::SecretKey: invalid size");
std::memcpy(buf_, slice.data(), sizeof(buf_));
}
std::string
SecretKey::to_string() const
{
return strHex(*this);
}
//------------------------------------------------------------------------------
/** Produces a sequence of secp256k1 key pairs. */
class Generator
{
private:
Blob gen_; // VFALCO compile time size?
public:
explicit
Generator (Seed const& seed)
{
// FIXME: Avoid copying the seed into a uint128 key only to have
// generateRootDeterministicPublicKey copy out of it.
uint128 ui;
std::memcpy(ui.data(),
seed.data(), seed.size());
gen_ = generateRootDeterministicPublicKey(ui);
}
/** Generate the nth key pair.
The seed is required to produce the private key.
*/
std::pair<PublicKey, SecretKey>
operator()(Seed const& seed, std::size_t ordinal) const
{
// FIXME: Avoid copying the seed into a uint128 key only to have
// generatePrivateDeterministicKey copy out of it.
uint128 ui;
std::memcpy(ui.data(), seed.data(), seed.size());
auto gsk = generatePrivateDeterministicKey(gen_, ui, ordinal);
auto gpk = generatePublicDeterministicKey(gen_, ordinal);
SecretKey const sk(Slice{ gsk.data(), gsk.size() });
PublicKey const pk(Slice{ gpk.data(), gpk.size() });
beast::secure_erase(ui.data(), ui.size());
beast::secure_erase(gsk.data(), gsk.size());
return {pk, sk};
}
};
//------------------------------------------------------------------------------
Buffer
signDigest (PublicKey const& pk, SecretKey const& sk,
uint256 const& digest)
{
if (publicKeyType(pk.slice()) != KeyType::secp256k1)
LogicError("sign: secp256k1 required for digest signing");
BOOST_ASSERT(sk.size() == 32);
secp256k1_ecdsa_signature sig_imp;
if(secp256k1_ecdsa_sign(
secp256k1Context(),
&sig_imp,
reinterpret_cast<unsigned char const*>(
digest.data()),
reinterpret_cast<unsigned char const*>(
sk.data()),
secp256k1_nonce_function_rfc6979,
nullptr) != 1)
LogicError("sign: secp256k1_ecdsa_sign failed");
unsigned char sig[72];
size_t len = sizeof(sig);
if(secp256k1_ecdsa_signature_serialize_der(
secp256k1Context(),
sig,
&len,
&sig_imp) != 1)
LogicError("sign: secp256k1_ecdsa_signature_serialize_der failed");
return Buffer{sig, len};
}
Buffer
sign (PublicKey const& pk,
SecretKey const& sk, Slice const& m)
{
auto const type =
publicKeyType(pk.slice());
if (! type)
LogicError("sign: invalid type");
switch(*type)
{
case KeyType::ed25519:
{
Buffer b(64);
ed25519_sign(m.data(), m.size(),
sk.data(), pk.data() + 1, b.data());
return b;
}
case KeyType::secp256k1:
{
sha512_half_hasher h;
h(m.data(), m.size());
auto const digest =
sha512_half_hasher::result_type(h);
secp256k1_ecdsa_signature sig_imp;
if(secp256k1_ecdsa_sign(
secp256k1Context(),
&sig_imp,
reinterpret_cast<unsigned char const*>(
digest.data()),
reinterpret_cast<unsigned char const*>(
sk.data()),
secp256k1_nonce_function_rfc6979,
nullptr) != 1)
LogicError("sign: secp256k1_ecdsa_sign failed");
unsigned char sig[72];
size_t len = sizeof(sig);
if(secp256k1_ecdsa_signature_serialize_der(
secp256k1Context(),
sig,
&len,
&sig_imp) != 1)
LogicError("sign: secp256k1_ecdsa_signature_serialize_der failed");
return Buffer{sig, len};
}
default:
LogicError("sign: invalid type");
}
}
SecretKey
randomSecretKey()
{
std::uint8_t buf[32];
beast::rngfill(
buf,
sizeof(buf),
crypto_prng());
SecretKey sk(Slice{ buf, sizeof(buf) });
beast::secure_erase(buf, sizeof(buf));
return sk;
}
// VFALCO TODO Rewrite all this without using OpenSSL
// or calling into GenerateDetermisticKey
SecretKey
generateSecretKey (KeyType type, Seed const& seed)
{
if (type == KeyType::ed25519)
{
auto key = sha512Half_s(Slice(
seed.data(), seed.size()));
SecretKey sk = Slice{ key.data(), key.size() };
beast::secure_erase(key.data(), key.size());
return sk;
}
if (type == KeyType::secp256k1)
{
// FIXME: Avoid copying the seed into a uint128 key only to have
// generateRootDeterministicPrivateKey copy out of it.
uint128 ps;
std::memcpy(ps.data(),
seed.data(), seed.size());
auto const upk =
generateRootDeterministicPrivateKey(ps);
SecretKey sk = Slice{ upk.data(), upk.size() };
beast::secure_erase(ps.data(), ps.size());
return sk;
}
LogicError ("generateSecretKey: unknown key type");
}
PublicKey
derivePublicKey (KeyType type, SecretKey const& sk)
{
switch(type)
{
case KeyType::secp256k1:
{
secp256k1_pubkey pubkey_imp;
if(secp256k1_ec_pubkey_create(
secp256k1Context(),
&pubkey_imp,
reinterpret_cast<unsigned char const*>(
sk.data())) != 1)
LogicError("derivePublicKey: secp256k1_ec_pubkey_create failed");
unsigned char pubkey[33];
std::size_t len = sizeof(pubkey);
if(secp256k1_ec_pubkey_serialize(
secp256k1Context(),
pubkey,
&len,
&pubkey_imp,
SECP256K1_EC_COMPRESSED) != 1)
LogicError("derivePublicKey: secp256k1_ec_pubkey_serialize failed");
return PublicKey{Slice{ pubkey, len }};
}
case KeyType::ed25519:
{
unsigned char buf[33];
buf[0] = 0xED;
ed25519_publickey(sk.data(), &buf[1]);
return PublicKey(Slice{ buf, sizeof(buf) });
}
default:
LogicError("derivePublicKey: bad key type");
};
}
std::pair<PublicKey, SecretKey>
generateKeyPair (KeyType type, Seed const& seed)
{
switch(type)
{
case KeyType::secp256k1:
{
Generator g(seed);
return g(seed, 0);
}
default:
case KeyType::ed25519:
{
auto const sk = generateSecretKey(type, seed);
return { derivePublicKey(type, sk), sk };
}
}
}
std::pair<PublicKey, SecretKey>
randomKeyPair (KeyType type)
{
auto const sk = randomSecretKey();
return { derivePublicKey(type, sk), sk };
}
template <>
boost::optional<SecretKey>
parseBase58 (TokenType type, std::string const& s)
{
auto const result = decodeBase58Token(s, type);
if (result.empty())
return boost::none;
if (result.size() != 32)
return boost::none;
return SecretKey(makeSlice(result));
}
} // SupplyFinanceChain
| [
"ghubdevelop@protonmail.com"
] | ghubdevelop@protonmail.com |
564f3ecfbf2f31b028343d617733cbf04d51502d | e0a4005b1668b0be562e597d09d139059f81f070 | /jagles/src/main/jni/gles/GLES/sphere.h | 1ee67a6aa23b0835d70f63cc35855452f675720d | [
"Apache-2.0"
] | permissive | xxxwentao/Gles | d7c49af0c71a4396b3e118602411849ea5f28fe4 | 9fafaa4cafd6fbcbc3e4d5d650bb1a1637c8cd70 | refs/heads/master | 2020-06-05T01:11:12.446825 | 2018-05-19T06:20:32 | 2018-05-19T06:20:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,008 | h | //
// Created by LiHong on 16/4/23.
// Copyright (c) 2016 LiHong. All rights reserved.
//
#ifndef IOS_SPHERE_H
#define IOS_SPHERE_H
#include "BaseScreen.h"
class sphere : public BaseScreen {
public:
sphere(float radius,float aspect,void *mgn) ;
~sphere();
vec3 Evaluate(const vec2& domain);
vec2 EvaluateCoord(const vec2& domain);
void setupProjection();
void ResetPosition();
void DrawSelf(int scnindex);
void SetupBuffer();
void SwitchMode(int mode);
void setupProgram(const char *segsrc, const char *fragsrc);
void setupProgram(const char *segsrc, const char *fragsrc, bool yuv);
void updateSurfaceTransform();
void updateSurfaceTransform(KSMatrix4 *_proj, KSMatrix4 *_model, KSMatrix4 *_rotate, float zoom, vec3 pPos, vec3 pScale, vec3 pRotate, GLuint projslot, GLuint modelslot, int atype);
void LoadRecordStatuTexture(GLuint texid, int scnindex) {};
virtual void* GetLoading() { return 0; };
void SetChangeAnimation(bool Start, int step, int stepcount, int nexttype);
void SetChangePSR(vec3 pos, vec3 scale, vec3 rotate, vec3 tpos, vec3 tscale, vec3 trotate);
void SetTextTexture(GLuint texid) { mTexText = texid; };
void UpdateViewportAspect(float aspect) { mViewportAspect = aspect; };
void EnableGrid(bool value) { mShowGrid = value; };
void DirectTextureFrameUpdata(int w, int h, void * directBuffer, int index);
void CreateDirectTexture();
void SetIsUseDirectTexture(bool value) { isUseDirectTexture = value; directTextureBuffer = NULL; _texwidth = 0; _texheight = 0; };
bool isUseDirectTexture;
void UpdateMaskFrame(float left, float right, float top, float bottom, int index);
void ClearMaskFrame();
private:
float m_radius;
KSMatrix4 mChangemodelViewMatrix;
KSMatrix4 mChangeprojectionMatrix;
KSMatrix4 mChangeRoateMatrix;
GLuint mVertexVBOBuffer[VERTEX_TYPE_COUNT];
GLuint mVertexSize[VERTEX_TYPE_COUNT];
GLuint mTriangleIndexCount[VERTEX_TYPE_COUNT];
GLuint mTextureCoordSize[VERTEX_TYPE_COUNT];
GLuint mTextureCoordBuffer[VERTEX_TYPE_COUNT];
GLuint mSegModeHandle;
GLuint mSegRotateHandle;
GLuint mSegDiameterHandle;
GLuint mSegTexWidthHandle;
GLuint mSegTexHeightHandle;
GLuint mSegAspectHandle;
GLuint mSegChangeAnimationHandle;
GLuint mSegChangeStepHandle;
GLuint mSegChangePositionHandle;
GLuint mSegChangeStepCountHandle;
GLuint mSegChangeModeHandle;
GLuint mSegChangeProjHandle;
GLuint mSegChangeModelHandle;
GLuint mSegChangeDiameterHandle;
GLuint mSegChangeRotateHandle;
GLuint mSegViewportAspectHandle;
GLuint mFragSolutionHandle;
GLuint mFragModeHandle;
GLuint mTexText;
GLuint mFragTexture;
GLuint mFragTexText;
vec3 nPosition;
vec3 nScale;
vec3 nRotate;
vec3 nTexPosition;
vec3 nTexScale;
vec3 nTexRotate;
float mViewportAspect;
bool mChangeAnimation;
int mChangeType;
int mChangeStep;
int mChangeStepCount;
int mVertexType;
bool mShowGrid;
ISurface *mDrawSelected;
void * directTextureBuffer;
int direct_width;
int direct_height;
};
#endif //IOS_SPHERE_H
| [
"2964287498@qq.com"
] | 2964287498@qq.com |
74e34af04b6e5bea701977013384861a68f30de6 | 02e541928d0cdac6bce3e5d3e8d8304d3a7357bf | /Codes/p156.cpp | 69a193e70d07ae8079c8b510dbdcd0a41668375a | [] | no_license | israkul9/Uva-Problems- | 90063119f6f1441ec6b03c072a517414592f5fc3 | 282c438cfce62874385305a9f1750d4f81e8c75e | refs/heads/master | 2021-07-23T19:34:00.745196 | 2020-08-04T09:01:29 | 2020-08-04T09:01:29 | 201,115,518 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,426 | cpp | /*
BISMILLAH - HIR - RAHMANIR - RAHIM
*/
#include<bits/stdc++.h>
using namespace std;
#define ll long long int
int const N = 3e5 + 10;
int const MOD = 1e9 + 7;
#define bug cout <<"-----------"<<endl
#define MAX 2268312229760322080
string s ;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
vector < string > vec ;
map < string, int >mp;
map < string, string > mp2;
while (cin >> s, s != "#")
{
string t = s;
//bug;
// cout << t <<" ===";
transform(s.begin(), s.end(), s.begin(), ::tolower);
sort(s.begin(),s.end());
vec.push_back( s );
mp2[s] = t;
mp[s]++;
// vec.push_back(t);
//cout << t <<endl;
// bug;
// cout << s <<endl;
}
// bug;
vector < string > distinct ;
for(auto it = mp.begin(); it!=mp.end(); ++it)
{
if(it->second==1)
distinct.push_back(it->first);
}
vector < string > ans ;
for(auto it: distinct)
ans.push_back( mp2[it] );
//cout << mp2[it] <<endl;
sort(ans.begin(),ans.end());
// bug;
for(auto it: ans)
cout <<it<<endl;
ans.clear();
mp.clear();
mp2.clear();
distinct.clear();
vec.clear();
// cout << mp2["Disk"];
// for(auto it2 = mp2.begin();it2!=mp2.end();++it2)
// cout << it2 -> first <<" "<<it2->second<<endl;
return 0;
}
| [
"israkul9@gmail.com"
] | israkul9@gmail.com |
d6a2599c02ced610c55f277cedabeaaaab9be826 | e1288568f553ce917ab3904ec319d1b5cda3dd40 | /Armor Wing/Classes/Native/Il2CppCompilerCalculateTypeValues1.cpp | 0473df1eb31d28d277cdad67c8608d2588a0f8bc | [] | no_license | Tani314/Armor-Wing | e1803848067cb7433aaaec6e4aa3074c551e7128 | 0638f81f1a83ec3eda99a551b0869e1e4d5d3c0c | refs/heads/master | 2020-12-26T20:59:42.970129 | 2020-11-13T10:33:13 | 2020-11-13T10:33:13 | 237,638,253 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,028,849 | 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 "il2cpp-class-internals.h"
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
// ARReferenceImage
struct ARReferenceImage_tB296F0D336F71A9B79F9D4C826391CBC8A0D2F92;
// ARReferenceImage[]
struct ARReferenceImageU5BU5D_tEE8225BA73F300EDCBF3BEF1C0060740AD0890E3;
// ARReferenceImagesSet
struct ARReferenceImagesSet_tE637611976378C4D1057CE06DD14F87EB52174E0;
// ARReferenceObjectAsset
struct ARReferenceObjectAsset_t1CCE48A98E8094085A1E7972AB5B3B9FAC93AA77;
// ARReferenceObjectAsset[]
struct ARReferenceObjectAssetU5BU5D_t37818510D74B90DE83CD7F678BB3D47FDEF6F339;
// ARReferenceObjectsSetAsset
struct ARReferenceObjectsSetAsset_t0CF5B17AAFFE42A9741BCD5431117FDD025D334E;
// Collections.Hybrid.Generic.LinkedListDictionary`2<System.String,ReflectionProbeGameObject>
struct LinkedListDictionary_2_tD9355EEF86691B9334A89D4152C60A07F578490B;
// Collections.Hybrid.Generic.LinkedListDictionary`2<System.String,UnityEngine.GameObject>
struct LinkedListDictionary_2_t69130A8AB1756EA2252E9CAD21E842F4799E644B;
// Collections.Hybrid.Generic.LinkedListDictionary`2<System.String,UnityEngine.XR.iOS.ARPlaneAnchorGameObject>
struct LinkedListDictionary_2_t6F6A17005A09E3BACA73F9AE8E13396AF3DF4F7D;
// ColorChangedEvent
struct ColorChangedEvent_tD7675EE515A344B6B9A4877082202AC7B307FD9F;
// ColorPicker
struct ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83;
// DigitalRuby.PyroParticles.FireBaseScript
struct FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E;
// DigitalRuby.PyroParticles.FireProjectileCollisionDelegate
struct FireProjectileCollisionDelegate_t1E069C484F215AB28294487D1CC250DCADA87033;
// DigitalRuby.PyroParticles.FireProjectileScript
struct FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8;
// DigitalRuby.PyroParticles.ICollisionHandler
struct ICollisionHandler_t244A1F60BBB28CA2150D9ED8655A26660795A6A1;
// DigitalRuby.PyroParticles.LoopingAudioSource
struct LoopingAudioSource_tAC4960456CBDF46A74E09DF5C9F530AFD28F4DF3;
// DigitalRuby.PyroParticles.MeteorSwarmCollisionDelegate
struct MeteorSwarmCollisionDelegate_tAE89940FA15088B9898C111F6B1BB08F95329AF3;
// DigitalRuby.PyroParticles.MeteorSwarmScript
struct MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1;
// HSVChangedEvent
struct HSVChangedEvent_t448E1E151C6D975F5EEA20A9B9024B61B1ACF482;
// ObjectScanSessionManager
struct ObjectScanSessionManager_t52876CFEBCB163AC5653E45E5CDBBED9CCB34015;
// ReflectionProbeGameObject
struct ReflectionProbeGameObject_tD75E3FD28D072B9F8A906119378358A6538AB58C;
// System.Action
struct Action_t591D2A86165F896B4B800BB5C25CE18672A55579;
// System.Action`1<System.Boolean>
struct Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD;
// System.Action`1<UnityEngine.Experimental.XR.FrameReceivedEventArgs>
struct Action_1_t95D7D93D51DF3F6A6C456CD847A0A4150A398BBC;
// System.Action`1<UnityEngine.Experimental.XR.GestureHoldEvent>
struct Action_1_t865948A0E8FE8DFE365C3E1A897D6E6609E96B63;
// System.Action`1<UnityEngine.Experimental.XR.GestureManipulationEvent>
struct Action_1_t1569BFA3BE25991F032EAB09E795FAFE2D757E8E;
// System.Action`1<UnityEngine.Experimental.XR.GestureNavigationEvent>
struct Action_1_tA100F00AA9D838B73521467A787A20FD623FA5FC;
// System.Action`1<UnityEngine.Experimental.XR.GestureRecognitionEvent>
struct Action_1_tF1F4802F6871A3A4245E71ED0196866BF97B44BF;
// System.Action`1<UnityEngine.Experimental.XR.GestureTappedEvent>
struct Action_1_t27686A0FAA4BAFD7D08EAEB44B914A74FC0328DC;
// System.Action`1<UnityEngine.Experimental.XR.PlaneAddedEventArgs>
struct Action_1_t3863E014281664DEECCEAFF0F363B622DAB862E6;
// System.Action`1<UnityEngine.Experimental.XR.PlaneRemovedEventArgs>
struct Action_1_t9720B7CBE6CC0851562EC5B89948AEF5C229D991;
// System.Action`1<UnityEngine.Experimental.XR.PlaneUpdatedEventArgs>
struct Action_1_tBEAD8CEE1CABAD25A45CE64C8A9D173BEDEC0AF6;
// System.Action`1<UnityEngine.Experimental.XR.PointCloudUpdatedEventArgs>
struct Action_1_t167ADDB82D45E89395BC9B22DD77C5AF5BED507E;
// System.Action`1<UnityEngine.Experimental.XR.ReferencePointUpdatedEventArgs>
struct Action_1_t62CF34AD78617EF5FE6E7FCE5803CBE14C103FBD;
// System.Action`1<UnityEngine.Experimental.XR.SessionTrackingStateChangedEventArgs>
struct Action_1_tFA24ECAFB569947BC1D041AECE3FD63058B301F9;
// System.Action`1<UnityEngineInternal.Input.NativeInputUpdateType>
struct Action_1_tA0A72999A108CE29CD4CB14537B8FE41501859C1;
// System.Action`2<System.Boolean,System.String>
struct Action_2_tC679CE201889334CCB7E9B60CBBA75C1611AE4E2;
// System.Action`2<System.Int32,System.String>
struct Action_2_t3DE7FA14577DE01568F76D409273F315827CAA36;
// System.Action`3<System.Boolean,System.Boolean,System.Int32>
struct Action_3_tEE1FB0623176AFA5109FAA9BA7E82293445CAE1E;
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4;
// System.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
// System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.EventSystems.PointerEventData>
struct Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750;
// System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.GUILayoutUtility/LayoutCache>
struct Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32>
struct Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB;
// System.Collections.Generic.Dictionary`2<System.String,System.Single>
struct Dictionary_2_t89F484A77FD6673A172CE80BD0A37031FBD1FD6A;
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.GUIStyle>
struct Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A;
// System.Collections.Generic.Dictionary`2<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>
struct Dictionary_2_tEA22C9A70455F48848150148C6438B124EBCA894;
// System.Collections.Generic.Dictionary`2<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>
struct Dictionary_2_t5EF8DDC4DE6F1827C30FEACAD4DE618CECDE8993;
// System.Collections.Generic.HashSet`1<System.String>
struct HashSet_1_t7ED30EEB5279B4F7B38D343D0AF490E2296ACF61;
// System.Collections.Generic.HashSet`1<System.UInt64>
struct HashSet_1_t1BE5AE2779D5D27A21A91688ABD03C305849A7E0;
// 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.List`1<System.Int32>
struct List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226;
// 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.PointerInputModule/ButtonState>
struct List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137;
// System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>
struct List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098;
// System.Collections.Generic.List`1<UnityEngine.GUILayoutEntry>
struct List_1_t046427F3923444CF746C550FD96A3D0E4189D273;
// System.Collections.Generic.List`1<UnityEngine.GameObject>
struct List_1_t3D4152882C54B77C712688E910390D5C8E030463;
// System.Collections.Generic.List`1<UnityEngine.ParticleSystem>
struct List_1_t5473FC22455A3A3E64CE9BCA290D843D81D315C5;
// System.Collections.Generic.List`1<UnityEngine.RectTransform>
struct List_1_tDDCC3FF04B4444A45BC27D94CC0369A8CF06DBF9;
// System.Collections.Generic.List`1<UnityEngine.Rigidbody2D>
struct List_1_tB50CA57CD5918BF3026A6E1A2873B6699FDC3A8D;
// System.Collections.Generic.List`1<UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard>
struct List_1_t34542C6C883A3FAA3E3C444443435BE548121E21;
// System.Collections.Generic.List`1<UnityEngine.SubsystemDescriptor>
struct List_1_t55C256C4FBF16AF9856AC2053BCE497E455A066B;
// 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.Image>
struct List_1_tB46CB6C7789F514A8BE08EB5A4F3D9D26AE5E4DA;
// System.Collections.Generic.List`1<UnityEngine.UI.RectMask2D>
struct List_1_tFE915F05C1A0D10E751CEC3F24F229A6C57E375C;
// System.Collections.Generic.List`1<UnityEngine.UI.StencilMaterial/MatEntry>
struct List_1_t7B851720E37D51FFDFDB33A438972B614A172598;
// System.Collections.Generic.List`1<UnityEngine.UI.Toggle>
struct List_1_t9A1ED3F2609B3A388592230F34505BA9CC298FA2;
// 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.List`1<UnityEngine.XR.iOS.ARReferenceObject>
struct List_1_tCFF3AE1676060F9099C2596A07769CE659B012AB;
// System.Collections.Generic.List`1<UnityEngine.XR.iOS.UnityARVideoFormat>
struct List_1_tCF4CFA50F2B730D7C5BBB9EEB7800C3B58380E71;
// System.Collections.IDictionary
struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7;
// System.Comparison`1<UnityEngine.EventSystems.RaycastResult>
struct Comparison_1_t80059259E2DC99461F7DF9B43BA93054613AE703;
// System.Comparison`1<UnityEngine.UI.Graphic>
struct Comparison_1_tEA68F7F51BC50151DFE33F13DC8AE50136C8125A;
// 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.Func`2<System.Exception,System.Boolean>
struct Func_2_tC816C5FDED4A7372C449E7660CAB9F94E2AC12F8;
// System.Func`2<UnityEngine.UI.ILayoutElement,System.Single>
struct Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A;
// System.Func`2<UnityEngine.UI.Toggle,System.Boolean>
struct Func_2_t65673CC739BDD2DED7CFC368C61EF6EA8E101CCC;
// System.Func`2<UnityEngineInternal.Input.NativeInputUpdateType,System.Boolean>
struct Func_2_t9A2EAEA48EB870B763F1AB3E671CE2745D638867;
// System.Func`3<System.Int32,System.IntPtr,System.Boolean>
struct Func_3_tBD99633D8A18C43CC528ECE3F77E2F69900048A7;
// System.IAsyncResult
struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598;
// System.Int16[]
struct Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28;
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
// System.IntPtr[]
struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD;
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
// System.Predicate`1<UnityEngine.Component>
struct Predicate_1_tBC1E7F57082F597A272DC13435129BE97AE5EB86;
// System.Predicate`1<UnityEngine.UI.Toggle>
struct Predicate_1_tA8E3AC24D9760231931712F08CE36FD456FEF163;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2;
// System.Single[]
struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5;
// System.String
struct String_t;
// System.String[]
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
// System.Text.RegularExpressions.Regex
struct Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF;
// System.Type
struct Type_t;
// System.UInt64[]
struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4;
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
// UnityARCameraManager
struct UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51;
// UnityEngine.Analytics.AnalyticsSessionInfo/SessionStateChanged
struct SessionStateChanged_t9084549A636BD45086D66CC6765DA8C3DD31066F;
// UnityEngine.Animation
struct Animation_tCFC171459D159DDEC6500B55543A76219D49BB9C;
// UnityEngine.AnimationCurve
struct AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C;
// UnityEngine.AnimationState
struct AnimationState_t48FF4D41FEF3492F8286100BE3758CE3A4656386;
// UnityEngine.AnimatorOverrideController/OnOverrideControllerDirtyCallback
struct OnOverrideControllerDirtyCallback_t73560E6E30067C09BC58A15F9D2726051B077E2E;
// UnityEngine.AudioClip/PCMReaderCallback
struct PCMReaderCallback_t9B87AB13DCD37957B045554BF28A57697E6B8EFB;
// UnityEngine.AudioClip/PCMSetPositionCallback
struct PCMSetPositionCallback_t092ED33043C0279B5E4D343EBCBD516CEF260801;
// UnityEngine.AudioClip[]
struct AudioClipU5BU5D_t03931BD44BC339329210676E452B8ECD3EC171C2;
// UnityEngine.AudioSettings/AudioConfigurationChangeHandler
struct AudioConfigurationChangeHandler_t8E0E05D0198D95B5412DC716F87D97020EF54926;
// UnityEngine.AudioSource
struct AudioSource_t5196F862B4E60F404613361C90D87FBDD041E93C;
// UnityEngine.Camera
struct Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34;
// UnityEngine.Camera[]
struct CameraU5BU5D_t2A1957E88FB79357C12B87941970D776D30E90F9;
// UnityEngine.Canvas
struct Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591;
// UnityEngine.Canvas/WillRenderCanvases
struct WillRenderCanvases_tBD5AD090B5938021DEAA679A5AEEA790F60A8BEE;
// UnityEngine.CanvasRenderer
struct CanvasRenderer_tB4D9C9FE77FD5C9C4546FC022D6E956960BC2B72;
// UnityEngine.Coroutine
struct Coroutine_tAE7DB2FC70A0AE6477F896F852057CB0754F06EC;
// UnityEngine.Cubemap
struct Cubemap_tBFAC336F35E8D7499397F07A41505BD98F4491AF;
// UnityEngine.Event
struct Event_t187FF6A6B357447B83EC2064823EE0AEC5263210;
// 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.BaseRaycaster
struct BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966;
// UnityEngine.EventSystems.EventSystem
struct EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77;
// UnityEngine.EventSystems.EventTrigger/TriggerEvent
struct TriggerEvent_tF73252408C49CDE2F1A05AA75FE09086C53A9793;
// 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.PointerEventData
struct PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63;
// UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData
struct MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988;
// UnityEngine.EventSystems.PointerInputModule/MouseState
struct MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7;
// UnityEngine.Events.InvokableCallList
struct InvokableCallList_t18AA4F473C7B295216B7D4B9723B4F3DFCCC9A3F;
// UnityEngine.Events.PersistentCallGroup
struct PersistentCallGroup_t6E5DF2EBDA42794B5FE0C6DAA97DF65F0BFF571F;
// UnityEngine.Events.UnityAction
struct UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4;
// UnityEngine.Events.UnityAction`1<UnityEngine.Component>
struct UnityAction_1_t5868E1437AB828E8331C57C3CDE8E7E91264F5BB;
// UnityEngine.Experimental.Audio.AudioSampleProvider
struct AudioSampleProvider_tD5B209D07C5F1D4714F92069F4071068B9BC6913;
// UnityEngine.Experimental.Audio.AudioSampleProvider/ConsumeSampleFramesNativeFunction
struct ConsumeSampleFramesNativeFunction_tC1E0B1BFCF2C3D7F87D66FCFA2022369327D931D;
// UnityEngine.Experimental.Audio.AudioSampleProvider/SampleFramesHandler
struct SampleFramesHandler_t5179C92AFBB393A85144E9134A862C161726F6AF;
// UnityEngine.Experimental.XR.XRCameraSubsystem
struct XRCameraSubsystem_t9271DB5D8FEDD3431246FCB6D9257A940246E701;
// UnityEngine.Experimental.XR.XRDepthSubsystem
struct XRDepthSubsystem_t1F42ECBC6085EFA6909640A9521920C55444D089;
// UnityEngine.Experimental.XR.XRGestureSubsystem
struct XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D;
// UnityEngine.Experimental.XR.XRPlaneSubsystem
struct XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B;
// UnityEngine.Experimental.XR.XRSessionSubsystem
struct XRSessionSubsystem_t75B8ED54B2BF4876D83B93780A7E13D6A9F32B8F;
// UnityEngine.Font
struct Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26;
// UnityEngine.GUIContent
struct GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0;
// UnityEngine.GUILayoutGroup
struct GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601;
// UnityEngine.GUILayoutUtility/LayoutCache
struct LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468;
// UnityEngine.GUISettings
struct GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4;
// UnityEngine.GUISkin
struct GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7;
// UnityEngine.GUISkin/SkinChangedDelegate
struct SkinChangedDelegate_tAB4CEEA8C8A0BDCFD51C9624AE173C46A40135D8;
// UnityEngine.GUIStyle
struct GUIStyle_t671F175A201A19166385EE3392292A5F50070572;
// UnityEngine.GUIStyleState
struct GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5;
// UnityEngine.GUIStyle[]
struct GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB;
// UnityEngine.GameObject
struct GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F;
// UnityEngine.GameObject[]
struct GameObjectU5BU5D_tBF9D474747511CF34A040A1697E34C74C19BB520;
// UnityEngine.ISubsystemDescriptor
struct ISubsystemDescriptor_t44607A9BE5154ED0C7924B81776A709724545E6C;
// UnityEngine.Light
struct Light_tFDE490EADBC7E080F74CA804929513AF07C31A6C;
// UnityEngine.Light[]
struct LightU5BU5D_t0127F29C5C02312DE2DDA721E3AF8CE925297D45;
// UnityEngine.LineRenderer
struct LineRenderer_tD225C480F28F28A4D737866474F21001B803B7C3;
// UnityEngine.Material
struct Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598;
// UnityEngine.MaterialPropertyBlock
struct MaterialPropertyBlock_t72A481768111C6F11DCDCD44F0C7F99F1CA79E13;
// UnityEngine.Material[]
struct MaterialU5BU5D_tD2350F98F2A1BB6C7A5FBFE1474DFC47331AB398;
// UnityEngine.Mesh
struct Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C;
// UnityEngine.MeshCollider
struct MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE;
// UnityEngine.MeshFilter
struct MeshFilter_t8D4BA8E8723DE5CFF53B0DA5EE2F6B3A5B0E0FE0;
// UnityEngine.Mesh[]
struct MeshU5BU5D_tDD9C723AA6F0225B35A93D871CDC2CEFF7F8CB89;
// UnityEngine.Networking.PlayerConnection.PlayerConnection
struct PlayerConnection_tFC3A80EAE06A41E9D3879144C86D87DE99EC56EA;
// UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0;
// UnityEngine.ParticleSystem
struct ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D;
// UnityEngine.ParticleSystem/Particle[]
struct ParticleU5BU5D_tE146043E7340CCAD7275E144D4CCD028AF929513;
// UnityEngine.ParticleSystem[]
struct ParticleSystemU5BU5D_t58EE604F685D8CBA8EFC9353456969F5A1B2FBB9;
// UnityEngine.RaycastHit2D[]
struct RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165;
// UnityEngine.RaycastHit[]
struct RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57;
// UnityEngine.RectOffset
struct RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A;
// UnityEngine.RectTransform
struct RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20;
// UnityEngine.ReflectionProbe
struct ReflectionProbe_t8CA59E05D8F20EDFE174BFF49CD3FB2DC62F207C;
// UnityEngine.RemoteSettings/UpdatedEventHandler
struct UpdatedEventHandler_tB0230BC83686D7126AB4D3800A66351028CA514F;
// UnityEngine.Renderer
struct Renderer_t0556D67DD582620D1F495627EDE30D03284151F4;
// UnityEngine.Rendering.CommandBuffer
struct CommandBuffer_t70BF7D9D84C2AFA83559B45FAD5BEDA73DA617DD;
// UnityEngine.SendMouseEvents/HitInfo[]
struct HitInfoU5BU5D_t1C4C1506E0E7D22806B4ED84887D7298C8EC44A1;
// UnityEngine.SkinnedMeshRenderer
struct SkinnedMeshRenderer_tFC8103EE7842F7F8A98BEF0C855D32A9711B7B65;
// UnityEngine.SocialPlatforms.IScore
struct IScore_t8EC2280EF29BB961820B7DF6D14E28EEE6CCF315;
// UnityEngine.SocialPlatforms.IScore[]
struct IScoreU5BU5D_t64BCFED7B59BE0D35420A0A92BEC5140C035952C;
// UnityEngine.SocialPlatforms.IUserProfile[]
struct IUserProfileU5BU5D_tBE2EEBD677C2C607E3F86B6ABF3F164B72E570B0;
// UnityEngine.SocialPlatforms.Impl.AchievementDescription[]
struct AchievementDescriptionU5BU5D_t2E09F4A316E4A9274CF8B7BF231DE9AEBE02F062;
// UnityEngine.SocialPlatforms.Impl.Leaderboard
struct Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE;
// UnityEngine.SocialPlatforms.Impl.LocalUser
struct LocalUser_tBBCEEB55B6F28DFA7F4677E9273622A34CABB135;
// UnityEngine.SocialPlatforms.Impl.UserProfile[]
struct UserProfileU5BU5D_t74EE7690744D8F99BA578ACE0CC65C45837F522F;
// UnityEngine.Sprite
struct Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198;
// UnityEngine.TextGenerator
struct TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8;
// UnityEngine.TextMesh
struct TextMesh_t327D0DAFEF431170D8C2882083D442AF4D4A0E4A;
// UnityEngine.Texture
struct Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4;
// UnityEngine.Texture2D
struct Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C;
// UnityEngine.TouchScreenKeyboard
struct TouchScreenKeyboard_t2A69F85698E9780470181532D3F2BC903623FD90;
// UnityEngine.Transform
struct Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA;
// UnityEngine.UI.AnimationTriggers
struct AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5;
// UnityEngine.UI.BoxSlider
struct BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A;
// UnityEngine.UI.BoxSlider/BoxSliderEvent
struct BoxSliderEvent_t2E59E1AD1FFFC4D521C2865063F16C634BF59706;
// UnityEngine.UI.Button
struct Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B;
// UnityEngine.UI.Button/ButtonClickedEvent
struct ButtonClickedEvent_t975D9C903BC4880557ADD7D3ACFB01CB2B3D6DDB;
// 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.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/IFactoryControls
struct IFactoryControls_tF346B725AD1BC6274693FDFCFD4665E01E2FC571;
// UnityEngine.UI.Dropdown
struct Dropdown_tF6331401084B1213CAB10587A6EC81461501930F;
// UnityEngine.UI.Dropdown/DropdownEvent
struct DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306;
// UnityEngine.UI.Dropdown/DropdownItem
struct DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46;
// UnityEngine.UI.Dropdown/OptionData
struct OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831;
// UnityEngine.UI.Dropdown/OptionDataList
struct OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D;
// UnityEngine.UI.FontData
struct FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494;
// UnityEngine.UI.Graphic
struct Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8;
// 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.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<UnityEngine.UI.LayoutRebuilder>
struct ObjectPool_1_tFA4F33849836CDB27432AE22249BB79D68619541;
// UnityEngine.UI.RawImage
struct RawImage_t68991514DB8F48442D614E7904A298C936B3C7C8;
// UnityEngine.UI.RectMask2D
struct RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B;
// UnityEngine.UI.RectangularVertexClipper
struct RectangularVertexClipper_t6C47856C4F775A5799A49A100196C2BB14C5DD91;
// 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/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;
// UnityEngine.XR.ARKit.ARKitSessionSubsystem/NativeApi/OnAsyncConversionCompleteDelegate
struct OnAsyncConversionCompleteDelegate_t841FB5BE19010FE3AFBEDEA37C52A468755B19FF;
// UnityEngine.XR.ARSubsystems.XRCameraSubsystem/IProvider
struct IProvider_t5D7A855308E0C5E8F9175CA7CDEE91F929A5185C;
// UnityEngine.XR.ARSubsystems.XRDepthSubsystem/IDepthApi
struct IDepthApi_t7CEE33C76911E53220D0242D5E38503D64736BE4;
// UnityEngine.XR.ARSubsystems.XRPlaneSubsystem/IProvider
struct IProvider_t40982CEC3244CC0C726CED2C27336E95321F7469;
// UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/IProvider
struct IProvider_tB9DFB2CA3241B1F6107D01753C0F00628994A3ED;
// UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem/IProvider
struct IProvider_tA80639246D0ED291E8332BE2FBC3FE3EA13A4459;
// UnityEngine.XR.ARSubsystems.XRSessionSubsystem/IProvider
struct IProvider_tCE3A36B52F24E47DF8D9945EAB79493A822E9428;
// UnityEngine.XR.iOS.AREnvironmentProbeAnchor
struct AREnvironmentProbeAnchor_t068D62ED76D2BE71CA4F4806034043077EE33E69;
// UnityEngine.XR.iOS.ARFaceAnchor
struct ARFaceAnchor_tFD943197F892D93FB7E2C8F7B8BDAABE62714AC6;
// UnityEngine.XR.iOS.ARFaceGeometry
struct ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2;
// UnityEngine.XR.iOS.ARImageAnchor
struct ARImageAnchor_tA5DACC4D1B31D4AD6E70B8BC112CBF98AFA68EF6;
// UnityEngine.XR.iOS.ARObjectAnchor
struct ARObjectAnchor_tCA17987C77A04DACBE8323DE90B79D7B7668A8DF;
// UnityEngine.XR.iOS.ARPlaneAnchor
struct ARPlaneAnchor_t0FFC0A1F23FF68703D127AFF1D9D11BB18EAC189;
// UnityEngine.XR.iOS.ARPointCloud
struct ARPointCloud_t57E36E6C732B90C48B77D64E9FAE17668784064C;
// UnityEngine.XR.iOS.ARResourceFilename[]
struct ARResourceFilenameU5BU5D_t3304F2D2130F9E45C120114FCB057C9749297FA1;
// UnityEngine.XR.iOS.ARResourceGroupInfo
struct ARResourceGroupInfo_tEF9D20BC3A4092E969FE01D1A65E013F8CA00038;
// UnityEngine.XR.iOS.ARResourceGroupResource[]
struct ARResourceGroupResourceU5BU5D_t59F53DA534A7E17BAC6FDA9356B69E4D3D306373;
// UnityEngine.XR.iOS.ARResourceInfo
struct ARResourceInfo_tCF902105706041249FF478B3AF159B23EA72549A;
// UnityEngine.XR.iOS.ARResourceProperties
struct ARResourceProperties_t34B02345591C52ECDF193727175869AC15000190;
// UnityEngine.XR.iOS.ARWorldMap
struct ARWorldMap_tA5B42053DEC105A7BDEB0AB2E6DB3200BC2C397A;
// UnityEngine.XR.iOS.ConnectToEditor
struct ConnectToEditor_t8AF91172E7A2EF41FB9994B997C7ADA97C0FF5B3;
// UnityEngine.XR.iOS.PickBoundingBox
struct PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88;
// UnityEngine.XR.iOS.UnityARAlignment[]
struct UnityARAlignmentU5BU5D_tECEA7D365E16B1F75E843497E83946003A19B57D;
// UnityEngine.XR.iOS.UnityARAnchorManager
struct UnityARAnchorManager_tFB8F7E0CB2E8D2A3ED3958659A018DB531A21CD2;
// UnityEngine.XR.iOS.UnityARDirectionalLightEstimate
struct UnityARDirectionalLightEstimate_tF5324C28AA41BAADD17EBBCF55EEC46DC8B43AB9;
// UnityEngine.XR.iOS.UnityARPlaneDetection[]
struct UnityARPlaneDetectionU5BU5D_t70E8B7EF0559BB47D633239F67CF2DDE16728371;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface
struct UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface/ARAnchorAdded
struct ARAnchorAdded_t6277A20DBBA2E63B85B55B429C008406053F7523;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface/ARAnchorRemoved
struct ARAnchorRemoved_t13C2AF3BC2C3615FCECA1B2705B7874CC4B0D584;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface/ARAnchorUpdated
struct ARAnchorUpdated_tE476B1348DE6CE5FA8935A67EA790CC3BB99D151;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface/AREnvironmentProbeAnchorAdded
struct AREnvironmentProbeAnchorAdded_t352A2C6AEBFEFAF9FFC8E717E49036E7A2DB4E00;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface/AREnvironmentProbeAnchorRemoved
struct AREnvironmentProbeAnchorRemoved_t3B32E5CFAC64DF8A23DB054842E6A67B21CCEB4F;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface/AREnvironmentProbeAnchorUpdated
struct AREnvironmentProbeAnchorUpdated_t2649997F4BDBFDD212BD08787EA6B37DA6C4D9FE;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface/ARFaceAnchorAdded
struct ARFaceAnchorAdded_t219D3D70464F8BB12D6A399E8064715E168A8EF8;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface/ARFaceAnchorRemoved
struct ARFaceAnchorRemoved_t0077E6ADE5395C6F773A98EB147FDD18B2D09E0C;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface/ARFaceAnchorUpdated
struct ARFaceAnchorUpdated_tDCA0EF503312CB7AE89357A3FD5529FF55CC6C35;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface/ARFrameUpdate
struct ARFrameUpdate_t8A1092923CD7B733CB1B71B1EA5BC85B017E7A67;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface/ARImageAnchorAdded
struct ARImageAnchorAdded_t71A8F5EF09FE7FFD5FFA8E35FE2409FE59893A44;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface/ARImageAnchorRemoved
struct ARImageAnchorRemoved_t55233D152AF70F8970D7F4598DADE918A99C82B2;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface/ARImageAnchorUpdated
struct ARImageAnchorUpdated_t552C60653C0710AD7312589A16E6E8B4F00CE036;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface/ARObjectAnchorAdded
struct ARObjectAnchorAdded_t44787F4D7B17D8D9D220C99ECB644F34E8DFF41C;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface/ARObjectAnchorRemoved
struct ARObjectAnchorRemoved_t7365DB46860AE9393ABBD80691D81F38FA5A41B6;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface/ARObjectAnchorUpdated
struct ARObjectAnchorUpdated_tECD9813AEC4C3F1B751595D3C48DA59F8105C88D;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface/ARSessionCallback
struct ARSessionCallback_t309401D5599524DA96703ADFE0AC1702928C7151;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface/ARSessionFailed
struct ARSessionFailed_tA00FB2F831AFF99EBDFAC43C61499421BDF9BE00;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface/ARSessionTrackingChanged
struct ARSessionTrackingChanged_t7D0F492F6B75A165F790A69F3F1ED307E00B1AB2;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface/ARUserAnchorAdded
struct ARUserAnchorAdded_tCBF6BB842498500A7E02669D8A22995FCD3F58A8;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface/ARUserAnchorRemoved
struct ARUserAnchorRemoved_tD5C26EFD62DE28608B965D94537FD66C5D914411;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface/ARUserAnchorUpdated
struct ARUserAnchorUpdated_tAB2AC251FF9E7CA5179BEF03D3E46C929A86DC1F;
// UnityEngine.XR.iOS.UnityARSessionRunOption[]
struct UnityARSessionRunOptionU5BU5D_t8681E43BA299D9832214F802375C78EF7E13DC96;
// UnityEngine.XR.iOS.Utils.SerializableVector4
struct SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028;
// UnityEngine.XR.iOS.Utils.serializableARKitInit
struct serializableARKitInit_t226FD9E7021E39F06F9F5717116C1688C2D293BF;
// UnityEngine.XR.iOS.Utils.serializableARSessionConfiguration
struct serializableARSessionConfiguration_tE32FDE4517F57B2FE8BC9386F3429D927A698E25;
// UnityEngine.XR.iOS.Utils.serializableFaceGeometry
struct serializableFaceGeometry_t3A98BFDA8DBFA940527E3F5D8578F4F0D7EDA7AE;
// UnityEngine.XR.iOS.Utils.serializablePlaneGeometry
struct serializablePlaneGeometry_t32B3123C8DFA669D8FAE918A37B3B5D9FEBDB3D9;
// UnityEngine.XR.iOS.Utils.serializablePointCloud
struct serializablePointCloud_tA208EAB380DBE420C8976C2D6F40D2A7D8FA0568;
// UnityEngine.XR.iOS.Utils.serializableSHC
struct serializableSHC_t11D048FF521D91D82EA8E41C159D007BA006F651;
// UnityEngine.XR.iOS.Utils.serializableUnityARLightData
struct serializableUnityARLightData_tB60386E7B87FA53A01A502CBAA8E6ADC79F6D779;
// UnityEngine.XR.iOS.Utils.serializableUnityARMatrix4x4
struct serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731;
// UnityEngine.XR.iOS.serializableARWorldMap
struct serializableARWorldMap_t7E10ABE00B8AE4798879ED785B257CF12FDFFFCE;
// UnityEngineInternal.GenericStack
struct GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC;
// UnityEngineInternal.Input.NativeUpdateCallback
struct NativeUpdateCallback_tCC4B5A2692C21C00FC2FC1E4EC5280E98423B8D5;
// VideoFormatButton/VideoFormatButtonPressed
struct VideoFormatButtonPressed_tE2EB379E3E66B4C8D84030EA0FE11BE4714820CC;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com;
struct GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke;
struct GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_com;
struct GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_pinvoke;
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com;
struct RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_com;
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_t2FBFFC67F8D6B1FA13284515F9BBD8C9333B5C86
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t8276593D2182AD0E8D12AF6BAFC4DCCD5C1DB6C1
{
public:
public:
};
// <Module>
struct U3CModuleU3E_tD4E2C466946EFCC911763D21CD7F606F5D963632
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t79D7DE725655CFC1B063EA359E8D75692CF5DC2F
{
public:
public:
};
// <Module>
struct U3CModuleU3E_tB308A2384DEB86F8845A4E61970976B8944B5DC4
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t188571242096CC1D2BEFEA0CA619B862EF745D19
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t6CDDDF959E7E18A6744E43B613F41CDAC780256A
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t11B36CEBA37CA1FF7C21746E808B860B676A8ECD
{
public:
public:
};
// <Module>
struct U3CModuleU3E_tA591571AD0F1B8BA034C523CD27F8800C0345102
{
public:
public:
};
// <Module>
struct U3CModuleU3E_tF8A948C14EE892A95D0E0992A0BE6B176FF2DA1D
{
public:
public:
};
// <Module>
struct U3CModuleU3E_tCD4309F8DDA0F37A98DBCDFE49F6C8F300C242B0
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t4F0A0E4F117BEB98FD7E89F0DE774BD5A1E6DBAC
{
public:
public:
};
// <Module>
struct U3CModuleU3E_tCE4B768174CDE0294B05DD8ED59A7763FF34E99B
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t93DCC9DD64AD0C36686B88FC177EB2212081BDB5
{
public:
public:
};
// <Module>
struct U3CModuleU3E_tAA355D8AE5C7E9492E77ED0BEF24E3CD28D275D9
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t76DD45B11E728799BA16B6E93B81827DD86E5AEE
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t6EFABDA0B2A020FB3DD6CA286799D867733667F1
{
public:
public:
};
// <Module>
struct U3CModuleU3E_tB6F5D3E9B5847F75DE623964BF4C6C552D94BB22
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t2E16431D825A5D233BFED659B3C516DAB0AC0286
{
public:
public:
};
// System.Object
// DigitalRuby.PyroParticles.FireBaseScript_<CleanupEverythingCoRoutine>d__12
struct U3CCleanupEverythingCoRoutineU3Ed__12_tC21D1DA252136C26D324FC129205543FEE99F69C : public RuntimeObject
{
public:
// System.Int32 DigitalRuby.PyroParticles.FireBaseScript_<CleanupEverythingCoRoutine>d__12::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object DigitalRuby.PyroParticles.FireBaseScript_<CleanupEverythingCoRoutine>d__12::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// DigitalRuby.PyroParticles.FireBaseScript DigitalRuby.PyroParticles.FireBaseScript_<CleanupEverythingCoRoutine>d__12::<>4__this
FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E * ___U3CU3E4__this_2;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CCleanupEverythingCoRoutineU3Ed__12_tC21D1DA252136C26D324FC129205543FEE99F69C, ___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(U3CCleanupEverythingCoRoutineU3Ed__12_tC21D1DA252136C26D324FC129205543FEE99F69C, ___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(U3CCleanupEverythingCoRoutineU3Ed__12_tC21D1DA252136C26D324FC129205543FEE99F69C, ___U3CU3E4__this_2)); }
inline FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value);
}
};
// DigitalRuby.PyroParticles.FireProjectileScript_<SendCollisionAfterDelay>d__12
struct U3CSendCollisionAfterDelayU3Ed__12_tDD6D0AAD757159D12816227160F8D30BB4B22910 : public RuntimeObject
{
public:
// System.Int32 DigitalRuby.PyroParticles.FireProjectileScript_<SendCollisionAfterDelay>d__12::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object DigitalRuby.PyroParticles.FireProjectileScript_<SendCollisionAfterDelay>d__12::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// DigitalRuby.PyroParticles.FireProjectileScript DigitalRuby.PyroParticles.FireProjectileScript_<SendCollisionAfterDelay>d__12::<>4__this
FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8 * ___U3CU3E4__this_2;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CSendCollisionAfterDelayU3Ed__12_tDD6D0AAD757159D12816227160F8D30BB4B22910, ___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(U3CSendCollisionAfterDelayU3Ed__12_tDD6D0AAD757159D12816227160F8D30BB4B22910, ___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(U3CSendCollisionAfterDelayU3Ed__12_tDD6D0AAD757159D12816227160F8D30BB4B22910, ___U3CU3E4__this_2)); }
inline FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8 * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value);
}
};
// DigitalRuby.PyroParticles.LoopingAudioSource
struct LoopingAudioSource_tAC4960456CBDF46A74E09DF5C9F530AFD28F4DF3 : public RuntimeObject
{
public:
// UnityEngine.AudioSource DigitalRuby.PyroParticles.LoopingAudioSource::<AudioSource>k__BackingField
AudioSource_t5196F862B4E60F404613361C90D87FBDD041E93C * ___U3CAudioSourceU3Ek__BackingField_0;
// System.Single DigitalRuby.PyroParticles.LoopingAudioSource::<TargetVolume>k__BackingField
float ___U3CTargetVolumeU3Ek__BackingField_1;
// System.Single DigitalRuby.PyroParticles.LoopingAudioSource::startMultiplier
float ___startMultiplier_2;
// System.Single DigitalRuby.PyroParticles.LoopingAudioSource::stopMultiplier
float ___stopMultiplier_3;
// System.Single DigitalRuby.PyroParticles.LoopingAudioSource::currentMultiplier
float ___currentMultiplier_4;
public:
inline static int32_t get_offset_of_U3CAudioSourceU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(LoopingAudioSource_tAC4960456CBDF46A74E09DF5C9F530AFD28F4DF3, ___U3CAudioSourceU3Ek__BackingField_0)); }
inline AudioSource_t5196F862B4E60F404613361C90D87FBDD041E93C * get_U3CAudioSourceU3Ek__BackingField_0() const { return ___U3CAudioSourceU3Ek__BackingField_0; }
inline AudioSource_t5196F862B4E60F404613361C90D87FBDD041E93C ** get_address_of_U3CAudioSourceU3Ek__BackingField_0() { return &___U3CAudioSourceU3Ek__BackingField_0; }
inline void set_U3CAudioSourceU3Ek__BackingField_0(AudioSource_t5196F862B4E60F404613361C90D87FBDD041E93C * value)
{
___U3CAudioSourceU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CAudioSourceU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CTargetVolumeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(LoopingAudioSource_tAC4960456CBDF46A74E09DF5C9F530AFD28F4DF3, ___U3CTargetVolumeU3Ek__BackingField_1)); }
inline float get_U3CTargetVolumeU3Ek__BackingField_1() const { return ___U3CTargetVolumeU3Ek__BackingField_1; }
inline float* get_address_of_U3CTargetVolumeU3Ek__BackingField_1() { return &___U3CTargetVolumeU3Ek__BackingField_1; }
inline void set_U3CTargetVolumeU3Ek__BackingField_1(float value)
{
___U3CTargetVolumeU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_startMultiplier_2() { return static_cast<int32_t>(offsetof(LoopingAudioSource_tAC4960456CBDF46A74E09DF5C9F530AFD28F4DF3, ___startMultiplier_2)); }
inline float get_startMultiplier_2() const { return ___startMultiplier_2; }
inline float* get_address_of_startMultiplier_2() { return &___startMultiplier_2; }
inline void set_startMultiplier_2(float value)
{
___startMultiplier_2 = value;
}
inline static int32_t get_offset_of_stopMultiplier_3() { return static_cast<int32_t>(offsetof(LoopingAudioSource_tAC4960456CBDF46A74E09DF5C9F530AFD28F4DF3, ___stopMultiplier_3)); }
inline float get_stopMultiplier_3() const { return ___stopMultiplier_3; }
inline float* get_address_of_stopMultiplier_3() { return &___stopMultiplier_3; }
inline void set_stopMultiplier_3(float value)
{
___stopMultiplier_3 = value;
}
inline static int32_t get_offset_of_currentMultiplier_4() { return static_cast<int32_t>(offsetof(LoopingAudioSource_tAC4960456CBDF46A74E09DF5C9F530AFD28F4DF3, ___currentMultiplier_4)); }
inline float get_currentMultiplier_4() const { return ___currentMultiplier_4; }
inline float* get_address_of_currentMultiplier_4() { return &___currentMultiplier_4; }
inline void set_currentMultiplier_4(float value)
{
___currentMultiplier_4 = value;
}
};
// DigitalRuby.PyroParticles.MeteorSwarmScript_<CleanupMeteor>d__22
struct U3CCleanupMeteorU3Ed__22_tC9564F4BF0D84B86F6BE86176095DF348A7327C5 : public RuntimeObject
{
public:
// System.Int32 DigitalRuby.PyroParticles.MeteorSwarmScript_<CleanupMeteor>d__22::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object DigitalRuby.PyroParticles.MeteorSwarmScript_<CleanupMeteor>d__22::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// System.Single DigitalRuby.PyroParticles.MeteorSwarmScript_<CleanupMeteor>d__22::delay
float ___delay_2;
// UnityEngine.GameObject DigitalRuby.PyroParticles.MeteorSwarmScript_<CleanupMeteor>d__22::obj
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___obj_3;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CCleanupMeteorU3Ed__22_tC9564F4BF0D84B86F6BE86176095DF348A7327C5, ___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(U3CCleanupMeteorU3Ed__22_tC9564F4BF0D84B86F6BE86176095DF348A7327C5, ___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(U3CCleanupMeteorU3Ed__22_tC9564F4BF0D84B86F6BE86176095DF348A7327C5, ___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_obj_3() { return static_cast<int32_t>(offsetof(U3CCleanupMeteorU3Ed__22_tC9564F4BF0D84B86F6BE86176095DF348A7327C5, ___obj_3)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_obj_3() const { return ___obj_3; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_obj_3() { return &___obj_3; }
inline void set_obj_3(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___obj_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___obj_3), (void*)value);
}
};
// DigitalRuby.PyroParticles.MeteorSwarmScript_<SpawnMeteor>d__18
struct U3CSpawnMeteorU3Ed__18_t0FA58D3671A83A98AA374D5A5A2046D815265F4D : public RuntimeObject
{
public:
// System.Int32 DigitalRuby.PyroParticles.MeteorSwarmScript_<SpawnMeteor>d__18::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object DigitalRuby.PyroParticles.MeteorSwarmScript_<SpawnMeteor>d__18::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// DigitalRuby.PyroParticles.MeteorSwarmScript DigitalRuby.PyroParticles.MeteorSwarmScript_<SpawnMeteor>d__18::<>4__this
MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1 * ___U3CU3E4__this_2;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CSpawnMeteorU3Ed__18_t0FA58D3671A83A98AA374D5A5A2046D815265F4D, ___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(U3CSpawnMeteorU3Ed__18_t0FA58D3671A83A98AA374D5A5A2046D815265F4D, ___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(U3CSpawnMeteorU3Ed__18_t0FA58D3671A83A98AA374D5A5A2046D815265F4D, ___U3CU3E4__this_2)); }
inline MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1 * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value);
}
};
// HSVUtil
struct HSVUtil_tDF89A3FE9B78CA015C163FC878D58A7A1A492835 : public RuntimeObject
{
public:
public:
};
// System.Attribute
struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 : public RuntimeObject
{
public:
public:
};
// 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.Analytics.AnalyticsSessionInfo
struct AnalyticsSessionInfo_tE075F764A74D2B095CFD57F3B179397F504B7D8C : public RuntimeObject
{
public:
public:
};
struct AnalyticsSessionInfo_tE075F764A74D2B095CFD57F3B179397F504B7D8C_StaticFields
{
public:
// UnityEngine.Analytics.AnalyticsSessionInfo_SessionStateChanged UnityEngine.Analytics.AnalyticsSessionInfo::sessionStateChanged
SessionStateChanged_t9084549A636BD45086D66CC6765DA8C3DD31066F * ___sessionStateChanged_0;
public:
inline static int32_t get_offset_of_sessionStateChanged_0() { return static_cast<int32_t>(offsetof(AnalyticsSessionInfo_tE075F764A74D2B095CFD57F3B179397F504B7D8C_StaticFields, ___sessionStateChanged_0)); }
inline SessionStateChanged_t9084549A636BD45086D66CC6765DA8C3DD31066F * get_sessionStateChanged_0() const { return ___sessionStateChanged_0; }
inline SessionStateChanged_t9084549A636BD45086D66CC6765DA8C3DD31066F ** get_address_of_sessionStateChanged_0() { return &___sessionStateChanged_0; }
inline void set_sessionStateChanged_0(SessionStateChanged_t9084549A636BD45086D66CC6765DA8C3DD31066F * value)
{
___sessionStateChanged_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sessionStateChanged_0), (void*)value);
}
};
// UnityEngine.Analytics.ContinuousEvent
struct ContinuousEvent_tBAB6336255F3FC327CBA03CE368CD4D8D027107A : public RuntimeObject
{
public:
public:
};
// UnityEngine.Animation_Enumerator
struct Enumerator_t6F97AECE1A160A668D8D8798607BE29B1D8CD92C : public RuntimeObject
{
public:
// UnityEngine.Animation UnityEngine.Animation_Enumerator::m_Outer
Animation_tCFC171459D159DDEC6500B55543A76219D49BB9C * ___m_Outer_0;
// System.Int32 UnityEngine.Animation_Enumerator::m_CurrentIndex
int32_t ___m_CurrentIndex_1;
public:
inline static int32_t get_offset_of_m_Outer_0() { return static_cast<int32_t>(offsetof(Enumerator_t6F97AECE1A160A668D8D8798607BE29B1D8CD92C, ___m_Outer_0)); }
inline Animation_tCFC171459D159DDEC6500B55543A76219D49BB9C * get_m_Outer_0() const { return ___m_Outer_0; }
inline Animation_tCFC171459D159DDEC6500B55543A76219D49BB9C ** get_address_of_m_Outer_0() { return &___m_Outer_0; }
inline void set_m_Outer_0(Animation_tCFC171459D159DDEC6500B55543A76219D49BB9C * value)
{
___m_Outer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Outer_0), (void*)value);
}
inline static int32_t get_offset_of_m_CurrentIndex_1() { return static_cast<int32_t>(offsetof(Enumerator_t6F97AECE1A160A668D8D8798607BE29B1D8CD92C, ___m_CurrentIndex_1)); }
inline int32_t get_m_CurrentIndex_1() const { return ___m_CurrentIndex_1; }
inline int32_t* get_address_of_m_CurrentIndex_1() { return &___m_CurrentIndex_1; }
inline void set_m_CurrentIndex_1(int32_t value)
{
___m_CurrentIndex_1 = value;
}
};
// UnityEngine.AudioSettings
struct AudioSettings_t77B5D69F704CF3B710B0B6970BB62A4BF25A5B31 : public RuntimeObject
{
public:
public:
};
struct AudioSettings_t77B5D69F704CF3B710B0B6970BB62A4BF25A5B31_StaticFields
{
public:
// UnityEngine.AudioSettings_AudioConfigurationChangeHandler UnityEngine.AudioSettings::OnAudioConfigurationChanged
AudioConfigurationChangeHandler_t8E0E05D0198D95B5412DC716F87D97020EF54926 * ___OnAudioConfigurationChanged_0;
public:
inline static int32_t get_offset_of_OnAudioConfigurationChanged_0() { return static_cast<int32_t>(offsetof(AudioSettings_t77B5D69F704CF3B710B0B6970BB62A4BF25A5B31_StaticFields, ___OnAudioConfigurationChanged_0)); }
inline AudioConfigurationChangeHandler_t8E0E05D0198D95B5412DC716F87D97020EF54926 * get_OnAudioConfigurationChanged_0() const { return ___OnAudioConfigurationChanged_0; }
inline AudioConfigurationChangeHandler_t8E0E05D0198D95B5412DC716F87D97020EF54926 ** get_address_of_OnAudioConfigurationChanged_0() { return &___OnAudioConfigurationChanged_0; }
inline void set_OnAudioConfigurationChanged_0(AudioConfigurationChangeHandler_t8E0E05D0198D95B5412DC716F87D97020EF54926 * value)
{
___OnAudioConfigurationChanged_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnAudioConfigurationChanged_0), (void*)value);
}
};
// UnityEngine.CameraRaycastHelper
struct CameraRaycastHelper_tD4019A7B955AB1B53870F68889B611A1ADAF1E05 : public RuntimeObject
{
public:
public:
};
// 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.Experimental.Audio.AudioSampleProvider
struct AudioSampleProvider_tD5B209D07C5F1D4714F92069F4071068B9BC6913 : public RuntimeObject
{
public:
// UnityEngine.Experimental.Audio.AudioSampleProvider_ConsumeSampleFramesNativeFunction UnityEngine.Experimental.Audio.AudioSampleProvider::m_ConsumeSampleFramesNativeFunction
ConsumeSampleFramesNativeFunction_tC1E0B1BFCF2C3D7F87D66FCFA2022369327D931D * ___m_ConsumeSampleFramesNativeFunction_0;
// System.UInt32 UnityEngine.Experimental.Audio.AudioSampleProvider::<id>k__BackingField
uint32_t ___U3CidU3Ek__BackingField_1;
// System.UInt16 UnityEngine.Experimental.Audio.AudioSampleProvider::<trackIndex>k__BackingField
uint16_t ___U3CtrackIndexU3Ek__BackingField_2;
// UnityEngine.Object UnityEngine.Experimental.Audio.AudioSampleProvider::<owner>k__BackingField
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___U3CownerU3Ek__BackingField_3;
// System.UInt16 UnityEngine.Experimental.Audio.AudioSampleProvider::<channelCount>k__BackingField
uint16_t ___U3CchannelCountU3Ek__BackingField_4;
// System.UInt32 UnityEngine.Experimental.Audio.AudioSampleProvider::<sampleRate>k__BackingField
uint32_t ___U3CsampleRateU3Ek__BackingField_5;
// UnityEngine.Experimental.Audio.AudioSampleProvider_SampleFramesHandler UnityEngine.Experimental.Audio.AudioSampleProvider::sampleFramesAvailable
SampleFramesHandler_t5179C92AFBB393A85144E9134A862C161726F6AF * ___sampleFramesAvailable_6;
// UnityEngine.Experimental.Audio.AudioSampleProvider_SampleFramesHandler UnityEngine.Experimental.Audio.AudioSampleProvider::sampleFramesOverflow
SampleFramesHandler_t5179C92AFBB393A85144E9134A862C161726F6AF * ___sampleFramesOverflow_7;
public:
inline static int32_t get_offset_of_m_ConsumeSampleFramesNativeFunction_0() { return static_cast<int32_t>(offsetof(AudioSampleProvider_tD5B209D07C5F1D4714F92069F4071068B9BC6913, ___m_ConsumeSampleFramesNativeFunction_0)); }
inline ConsumeSampleFramesNativeFunction_tC1E0B1BFCF2C3D7F87D66FCFA2022369327D931D * get_m_ConsumeSampleFramesNativeFunction_0() const { return ___m_ConsumeSampleFramesNativeFunction_0; }
inline ConsumeSampleFramesNativeFunction_tC1E0B1BFCF2C3D7F87D66FCFA2022369327D931D ** get_address_of_m_ConsumeSampleFramesNativeFunction_0() { return &___m_ConsumeSampleFramesNativeFunction_0; }
inline void set_m_ConsumeSampleFramesNativeFunction_0(ConsumeSampleFramesNativeFunction_tC1E0B1BFCF2C3D7F87D66FCFA2022369327D931D * value)
{
___m_ConsumeSampleFramesNativeFunction_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ConsumeSampleFramesNativeFunction_0), (void*)value);
}
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(AudioSampleProvider_tD5B209D07C5F1D4714F92069F4071068B9BC6913, ___U3CidU3Ek__BackingField_1)); }
inline uint32_t get_U3CidU3Ek__BackingField_1() const { return ___U3CidU3Ek__BackingField_1; }
inline uint32_t* get_address_of_U3CidU3Ek__BackingField_1() { return &___U3CidU3Ek__BackingField_1; }
inline void set_U3CidU3Ek__BackingField_1(uint32_t value)
{
___U3CidU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CtrackIndexU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(AudioSampleProvider_tD5B209D07C5F1D4714F92069F4071068B9BC6913, ___U3CtrackIndexU3Ek__BackingField_2)); }
inline uint16_t get_U3CtrackIndexU3Ek__BackingField_2() const { return ___U3CtrackIndexU3Ek__BackingField_2; }
inline uint16_t* get_address_of_U3CtrackIndexU3Ek__BackingField_2() { return &___U3CtrackIndexU3Ek__BackingField_2; }
inline void set_U3CtrackIndexU3Ek__BackingField_2(uint16_t value)
{
___U3CtrackIndexU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CownerU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(AudioSampleProvider_tD5B209D07C5F1D4714F92069F4071068B9BC6913, ___U3CownerU3Ek__BackingField_3)); }
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * get_U3CownerU3Ek__BackingField_3() const { return ___U3CownerU3Ek__BackingField_3; }
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 ** get_address_of_U3CownerU3Ek__BackingField_3() { return &___U3CownerU3Ek__BackingField_3; }
inline void set_U3CownerU3Ek__BackingField_3(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * value)
{
___U3CownerU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CownerU3Ek__BackingField_3), (void*)value);
}
inline static int32_t get_offset_of_U3CchannelCountU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(AudioSampleProvider_tD5B209D07C5F1D4714F92069F4071068B9BC6913, ___U3CchannelCountU3Ek__BackingField_4)); }
inline uint16_t get_U3CchannelCountU3Ek__BackingField_4() const { return ___U3CchannelCountU3Ek__BackingField_4; }
inline uint16_t* get_address_of_U3CchannelCountU3Ek__BackingField_4() { return &___U3CchannelCountU3Ek__BackingField_4; }
inline void set_U3CchannelCountU3Ek__BackingField_4(uint16_t value)
{
___U3CchannelCountU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CsampleRateU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(AudioSampleProvider_tD5B209D07C5F1D4714F92069F4071068B9BC6913, ___U3CsampleRateU3Ek__BackingField_5)); }
inline uint32_t get_U3CsampleRateU3Ek__BackingField_5() const { return ___U3CsampleRateU3Ek__BackingField_5; }
inline uint32_t* get_address_of_U3CsampleRateU3Ek__BackingField_5() { return &___U3CsampleRateU3Ek__BackingField_5; }
inline void set_U3CsampleRateU3Ek__BackingField_5(uint32_t value)
{
___U3CsampleRateU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_sampleFramesAvailable_6() { return static_cast<int32_t>(offsetof(AudioSampleProvider_tD5B209D07C5F1D4714F92069F4071068B9BC6913, ___sampleFramesAvailable_6)); }
inline SampleFramesHandler_t5179C92AFBB393A85144E9134A862C161726F6AF * get_sampleFramesAvailable_6() const { return ___sampleFramesAvailable_6; }
inline SampleFramesHandler_t5179C92AFBB393A85144E9134A862C161726F6AF ** get_address_of_sampleFramesAvailable_6() { return &___sampleFramesAvailable_6; }
inline void set_sampleFramesAvailable_6(SampleFramesHandler_t5179C92AFBB393A85144E9134A862C161726F6AF * value)
{
___sampleFramesAvailable_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sampleFramesAvailable_6), (void*)value);
}
inline static int32_t get_offset_of_sampleFramesOverflow_7() { return static_cast<int32_t>(offsetof(AudioSampleProvider_tD5B209D07C5F1D4714F92069F4071068B9BC6913, ___sampleFramesOverflow_7)); }
inline SampleFramesHandler_t5179C92AFBB393A85144E9134A862C161726F6AF * get_sampleFramesOverflow_7() const { return ___sampleFramesOverflow_7; }
inline SampleFramesHandler_t5179C92AFBB393A85144E9134A862C161726F6AF ** get_address_of_sampleFramesOverflow_7() { return &___sampleFramesOverflow_7; }
inline void set_sampleFramesOverflow_7(SampleFramesHandler_t5179C92AFBB393A85144E9134A862C161726F6AF * value)
{
___sampleFramesOverflow_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sampleFramesOverflow_7), (void*)value);
}
};
// UnityEngine.Experimental.XR.HashCodeHelper
struct HashCodeHelper_t240ABA7F47D7854880115EA07A9C50F359A7DCBA : public RuntimeObject
{
public:
public:
};
// UnityEngine.GUIClip
struct GUIClip_tD8FEFCDA2C4A085BA10BDDFF5B74095F114B2B61 : public RuntimeObject
{
public:
public:
};
// UnityEngine.GUIContent
struct GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 : public RuntimeObject
{
public:
// System.String UnityEngine.GUIContent::m_Text
String_t* ___m_Text_0;
// UnityEngine.Texture UnityEngine.GUIContent::m_Image
Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * ___m_Image_1;
// System.String UnityEngine.GUIContent::m_Tooltip
String_t* ___m_Tooltip_2;
public:
inline static int32_t get_offset_of_m_Text_0() { return static_cast<int32_t>(offsetof(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0, ___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(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0, ___m_Image_1)); }
inline Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * get_m_Image_1() const { return ___m_Image_1; }
inline Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 ** get_address_of_m_Image_1() { return &___m_Image_1; }
inline void set_m_Image_1(Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * value)
{
___m_Image_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Image_1), (void*)value);
}
inline static int32_t get_offset_of_m_Tooltip_2() { return static_cast<int32_t>(offsetof(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0, ___m_Tooltip_2)); }
inline String_t* get_m_Tooltip_2() const { return ___m_Tooltip_2; }
inline String_t** get_address_of_m_Tooltip_2() { return &___m_Tooltip_2; }
inline void set_m_Tooltip_2(String_t* value)
{
___m_Tooltip_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Tooltip_2), (void*)value);
}
};
struct GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_StaticFields
{
public:
// UnityEngine.GUIContent UnityEngine.GUIContent::s_Text
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * ___s_Text_3;
// UnityEngine.GUIContent UnityEngine.GUIContent::s_Image
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * ___s_Image_4;
// UnityEngine.GUIContent UnityEngine.GUIContent::s_TextImage
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * ___s_TextImage_5;
// UnityEngine.GUIContent UnityEngine.GUIContent::none
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * ___none_6;
public:
inline static int32_t get_offset_of_s_Text_3() { return static_cast<int32_t>(offsetof(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_StaticFields, ___s_Text_3)); }
inline GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * get_s_Text_3() const { return ___s_Text_3; }
inline GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 ** get_address_of_s_Text_3() { return &___s_Text_3; }
inline void set_s_Text_3(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * value)
{
___s_Text_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Text_3), (void*)value);
}
inline static int32_t get_offset_of_s_Image_4() { return static_cast<int32_t>(offsetof(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_StaticFields, ___s_Image_4)); }
inline GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * get_s_Image_4() const { return ___s_Image_4; }
inline GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 ** get_address_of_s_Image_4() { return &___s_Image_4; }
inline void set_s_Image_4(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * value)
{
___s_Image_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Image_4), (void*)value);
}
inline static int32_t get_offset_of_s_TextImage_5() { return static_cast<int32_t>(offsetof(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_StaticFields, ___s_TextImage_5)); }
inline GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * get_s_TextImage_5() const { return ___s_TextImage_5; }
inline GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 ** get_address_of_s_TextImage_5() { return &___s_TextImage_5; }
inline void set_s_TextImage_5(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * value)
{
___s_TextImage_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_TextImage_5), (void*)value);
}
inline static int32_t get_offset_of_none_6() { return static_cast<int32_t>(offsetof(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_StaticFields, ___none_6)); }
inline GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * get_none_6() const { return ___none_6; }
inline GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 ** get_address_of_none_6() { return &___none_6; }
inline void set_none_6(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * value)
{
___none_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___none_6), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.GUIContent
struct GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_marshaled_pinvoke
{
char* ___m_Text_0;
Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * ___m_Image_1;
char* ___m_Tooltip_2;
};
// Native definition for COM marshalling of UnityEngine.GUIContent
struct GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_marshaled_com
{
Il2CppChar* ___m_Text_0;
Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * ___m_Image_1;
Il2CppChar* ___m_Tooltip_2;
};
// UnityEngine.GUILayout
struct GUILayout_t5BDBA9AE696E27285227012F08642F97F2CCE2EC : public RuntimeObject
{
public:
public:
};
// UnityEngine.GUILayoutUtility_LayoutCache
struct LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 : public RuntimeObject
{
public:
// UnityEngine.GUILayoutGroup UnityEngine.GUILayoutUtility_LayoutCache::topLevel
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * ___topLevel_0;
// UnityEngineInternal.GenericStack UnityEngine.GUILayoutUtility_LayoutCache::layoutGroups
GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * ___layoutGroups_1;
// UnityEngine.GUILayoutGroup UnityEngine.GUILayoutUtility_LayoutCache::windows
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * ___windows_2;
public:
inline static int32_t get_offset_of_topLevel_0() { return static_cast<int32_t>(offsetof(LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468, ___topLevel_0)); }
inline GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * get_topLevel_0() const { return ___topLevel_0; }
inline GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 ** get_address_of_topLevel_0() { return &___topLevel_0; }
inline void set_topLevel_0(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * value)
{
___topLevel_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___topLevel_0), (void*)value);
}
inline static int32_t get_offset_of_layoutGroups_1() { return static_cast<int32_t>(offsetof(LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468, ___layoutGroups_1)); }
inline GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * get_layoutGroups_1() const { return ___layoutGroups_1; }
inline GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC ** get_address_of_layoutGroups_1() { return &___layoutGroups_1; }
inline void set_layoutGroups_1(GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * value)
{
___layoutGroups_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___layoutGroups_1), (void*)value);
}
inline static int32_t get_offset_of_windows_2() { return static_cast<int32_t>(offsetof(LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468, ___windows_2)); }
inline GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * get_windows_2() const { return ___windows_2; }
inline GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 ** get_address_of_windows_2() { return &___windows_2; }
inline void set_windows_2(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * value)
{
___windows_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___windows_2), (void*)value);
}
};
// UnityEngine.GUIUtility
struct GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA : public RuntimeObject
{
public:
public:
};
struct GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields
{
public:
// System.Int32 UnityEngine.GUIUtility::s_SkinMode
int32_t ___s_SkinMode_0;
// System.Int32 UnityEngine.GUIUtility::s_OriginalID
int32_t ___s_OriginalID_1;
// System.Action UnityEngine.GUIUtility::takeCapture
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___takeCapture_2;
// System.Action UnityEngine.GUIUtility::releaseCapture
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___releaseCapture_3;
// System.Func`3<System.Int32,System.IntPtr,System.Boolean> UnityEngine.GUIUtility::processEvent
Func_3_tBD99633D8A18C43CC528ECE3F77E2F69900048A7 * ___processEvent_4;
// System.Func`2<System.Exception,System.Boolean> UnityEngine.GUIUtility::endContainerGUIFromException
Func_2_tC816C5FDED4A7372C449E7660CAB9F94E2AC12F8 * ___endContainerGUIFromException_5;
// System.Action UnityEngine.GUIUtility::guiChanged
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___guiChanged_6;
// System.Boolean UnityEngine.GUIUtility::<guiIsExiting>k__BackingField
bool ___U3CguiIsExitingU3Ek__BackingField_7;
public:
inline static int32_t get_offset_of_s_SkinMode_0() { return static_cast<int32_t>(offsetof(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields, ___s_SkinMode_0)); }
inline int32_t get_s_SkinMode_0() const { return ___s_SkinMode_0; }
inline int32_t* get_address_of_s_SkinMode_0() { return &___s_SkinMode_0; }
inline void set_s_SkinMode_0(int32_t value)
{
___s_SkinMode_0 = value;
}
inline static int32_t get_offset_of_s_OriginalID_1() { return static_cast<int32_t>(offsetof(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields, ___s_OriginalID_1)); }
inline int32_t get_s_OriginalID_1() const { return ___s_OriginalID_1; }
inline int32_t* get_address_of_s_OriginalID_1() { return &___s_OriginalID_1; }
inline void set_s_OriginalID_1(int32_t value)
{
___s_OriginalID_1 = value;
}
inline static int32_t get_offset_of_takeCapture_2() { return static_cast<int32_t>(offsetof(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields, ___takeCapture_2)); }
inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * get_takeCapture_2() const { return ___takeCapture_2; }
inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 ** get_address_of_takeCapture_2() { return &___takeCapture_2; }
inline void set_takeCapture_2(Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * value)
{
___takeCapture_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___takeCapture_2), (void*)value);
}
inline static int32_t get_offset_of_releaseCapture_3() { return static_cast<int32_t>(offsetof(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields, ___releaseCapture_3)); }
inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * get_releaseCapture_3() const { return ___releaseCapture_3; }
inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 ** get_address_of_releaseCapture_3() { return &___releaseCapture_3; }
inline void set_releaseCapture_3(Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * value)
{
___releaseCapture_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___releaseCapture_3), (void*)value);
}
inline static int32_t get_offset_of_processEvent_4() { return static_cast<int32_t>(offsetof(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields, ___processEvent_4)); }
inline Func_3_tBD99633D8A18C43CC528ECE3F77E2F69900048A7 * get_processEvent_4() const { return ___processEvent_4; }
inline Func_3_tBD99633D8A18C43CC528ECE3F77E2F69900048A7 ** get_address_of_processEvent_4() { return &___processEvent_4; }
inline void set_processEvent_4(Func_3_tBD99633D8A18C43CC528ECE3F77E2F69900048A7 * value)
{
___processEvent_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___processEvent_4), (void*)value);
}
inline static int32_t get_offset_of_endContainerGUIFromException_5() { return static_cast<int32_t>(offsetof(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields, ___endContainerGUIFromException_5)); }
inline Func_2_tC816C5FDED4A7372C449E7660CAB9F94E2AC12F8 * get_endContainerGUIFromException_5() const { return ___endContainerGUIFromException_5; }
inline Func_2_tC816C5FDED4A7372C449E7660CAB9F94E2AC12F8 ** get_address_of_endContainerGUIFromException_5() { return &___endContainerGUIFromException_5; }
inline void set_endContainerGUIFromException_5(Func_2_tC816C5FDED4A7372C449E7660CAB9F94E2AC12F8 * value)
{
___endContainerGUIFromException_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___endContainerGUIFromException_5), (void*)value);
}
inline static int32_t get_offset_of_guiChanged_6() { return static_cast<int32_t>(offsetof(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields, ___guiChanged_6)); }
inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * get_guiChanged_6() const { return ___guiChanged_6; }
inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 ** get_address_of_guiChanged_6() { return &___guiChanged_6; }
inline void set_guiChanged_6(Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * value)
{
___guiChanged_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___guiChanged_6), (void*)value);
}
inline static int32_t get_offset_of_U3CguiIsExitingU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields, ___U3CguiIsExitingU3Ek__BackingField_7)); }
inline bool get_U3CguiIsExitingU3Ek__BackingField_7() const { return ___U3CguiIsExitingU3Ek__BackingField_7; }
inline bool* get_address_of_U3CguiIsExitingU3Ek__BackingField_7() { return &___U3CguiIsExitingU3Ek__BackingField_7; }
inline void set_U3CguiIsExitingU3Ek__BackingField_7(bool value)
{
___U3CguiIsExitingU3Ek__BackingField_7 = value;
}
};
// UnityEngine.Input
struct Input_tCCB96DE9636DD2C1993637958AA227434290E523 : public RuntimeObject
{
public:
public:
};
// UnityEngine.JsonUtility
struct JsonUtility_t91C9687A587DA7DCF335BCBCA8E3BEA2C716DC7F : public RuntimeObject
{
public:
public:
};
// UnityEngine.Physics2D
struct Physics2D_tB21970F986016656D66D2922594F336E1EE7D5C7 : public RuntimeObject
{
public:
public:
};
struct Physics2D_tB21970F986016656D66D2922594F336E1EE7D5C7_StaticFields
{
public:
// System.Collections.Generic.List`1<UnityEngine.Rigidbody2D> UnityEngine.Physics2D::m_LastDisabledRigidbody2D
List_1_tB50CA57CD5918BF3026A6E1A2873B6699FDC3A8D * ___m_LastDisabledRigidbody2D_0;
public:
inline static int32_t get_offset_of_m_LastDisabledRigidbody2D_0() { return static_cast<int32_t>(offsetof(Physics2D_tB21970F986016656D66D2922594F336E1EE7D5C7_StaticFields, ___m_LastDisabledRigidbody2D_0)); }
inline List_1_tB50CA57CD5918BF3026A6E1A2873B6699FDC3A8D * get_m_LastDisabledRigidbody2D_0() const { return ___m_LastDisabledRigidbody2D_0; }
inline List_1_tB50CA57CD5918BF3026A6E1A2873B6699FDC3A8D ** get_address_of_m_LastDisabledRigidbody2D_0() { return &___m_LastDisabledRigidbody2D_0; }
inline void set_m_LastDisabledRigidbody2D_0(List_1_tB50CA57CD5918BF3026A6E1A2873B6699FDC3A8D * value)
{
___m_LastDisabledRigidbody2D_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_LastDisabledRigidbody2D_0), (void*)value);
}
};
// UnityEngine.RectTransformUtility
struct RectTransformUtility_t9B90669A72B05A33DD88BEBB817BC9CDBB614BBA : public RuntimeObject
{
public:
public:
};
struct RectTransformUtility_t9B90669A72B05A33DD88BEBB817BC9CDBB614BBA_StaticFields
{
public:
// UnityEngine.Vector3[] UnityEngine.RectTransformUtility::s_Corners
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___s_Corners_0;
public:
inline static int32_t get_offset_of_s_Corners_0() { return static_cast<int32_t>(offsetof(RectTransformUtility_t9B90669A72B05A33DD88BEBB817BC9CDBB614BBA_StaticFields, ___s_Corners_0)); }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get_s_Corners_0() const { return ___s_Corners_0; }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of_s_Corners_0() { return &___s_Corners_0; }
inline void set_s_Corners_0(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value)
{
___s_Corners_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Corners_0), (void*)value);
}
};
// UnityEngine.RemoteConfigSettingsHelper
struct RemoteConfigSettingsHelper_t2F0887933AC2724EEA806E32E9147A493C0A33BE : public RuntimeObject
{
public:
public:
};
// UnityEngine.RemoteSettings
struct RemoteSettings_t3F7E07D15288B0DF84A4A32044592D8AFA6D36ED : public RuntimeObject
{
public:
public:
};
struct RemoteSettings_t3F7E07D15288B0DF84A4A32044592D8AFA6D36ED_StaticFields
{
public:
// UnityEngine.RemoteSettings_UpdatedEventHandler UnityEngine.RemoteSettings::Updated
UpdatedEventHandler_tB0230BC83686D7126AB4D3800A66351028CA514F * ___Updated_0;
// System.Action UnityEngine.RemoteSettings::BeforeFetchFromServer
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___BeforeFetchFromServer_1;
// System.Action`3<System.Boolean,System.Boolean,System.Int32> UnityEngine.RemoteSettings::Completed
Action_3_tEE1FB0623176AFA5109FAA9BA7E82293445CAE1E * ___Completed_2;
public:
inline static int32_t get_offset_of_Updated_0() { return static_cast<int32_t>(offsetof(RemoteSettings_t3F7E07D15288B0DF84A4A32044592D8AFA6D36ED_StaticFields, ___Updated_0)); }
inline UpdatedEventHandler_tB0230BC83686D7126AB4D3800A66351028CA514F * get_Updated_0() const { return ___Updated_0; }
inline UpdatedEventHandler_tB0230BC83686D7126AB4D3800A66351028CA514F ** get_address_of_Updated_0() { return &___Updated_0; }
inline void set_Updated_0(UpdatedEventHandler_tB0230BC83686D7126AB4D3800A66351028CA514F * value)
{
___Updated_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Updated_0), (void*)value);
}
inline static int32_t get_offset_of_BeforeFetchFromServer_1() { return static_cast<int32_t>(offsetof(RemoteSettings_t3F7E07D15288B0DF84A4A32044592D8AFA6D36ED_StaticFields, ___BeforeFetchFromServer_1)); }
inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * get_BeforeFetchFromServer_1() const { return ___BeforeFetchFromServer_1; }
inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 ** get_address_of_BeforeFetchFromServer_1() { return &___BeforeFetchFromServer_1; }
inline void set_BeforeFetchFromServer_1(Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * value)
{
___BeforeFetchFromServer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___BeforeFetchFromServer_1), (void*)value);
}
inline static int32_t get_offset_of_Completed_2() { return static_cast<int32_t>(offsetof(RemoteSettings_t3F7E07D15288B0DF84A4A32044592D8AFA6D36ED_StaticFields, ___Completed_2)); }
inline Action_3_tEE1FB0623176AFA5109FAA9BA7E82293445CAE1E * get_Completed_2() const { return ___Completed_2; }
inline Action_3_tEE1FB0623176AFA5109FAA9BA7E82293445CAE1E ** get_address_of_Completed_2() { return &___Completed_2; }
inline void set_Completed_2(Action_3_tEE1FB0623176AFA5109FAA9BA7E82293445CAE1E * value)
{
___Completed_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Completed_2), (void*)value);
}
};
// UnityEngine.ScrollViewState
struct ScrollViewState_t738AAD89973B4E764B6F977945263C24A881428E : public RuntimeObject
{
public:
public:
};
// UnityEngine.SendMouseEvents
struct SendMouseEvents_tC8FB7F3FCFF87BDF2E56E1E0D209B81943D8F666 : public RuntimeObject
{
public:
public:
};
struct SendMouseEvents_tC8FB7F3FCFF87BDF2E56E1E0D209B81943D8F666_StaticFields
{
public:
// System.Boolean UnityEngine.SendMouseEvents::s_MouseUsed
bool ___s_MouseUsed_0;
// UnityEngine.SendMouseEvents_HitInfo[] UnityEngine.SendMouseEvents::m_LastHit
HitInfoU5BU5D_t1C4C1506E0E7D22806B4ED84887D7298C8EC44A1* ___m_LastHit_1;
// UnityEngine.SendMouseEvents_HitInfo[] UnityEngine.SendMouseEvents::m_MouseDownHit
HitInfoU5BU5D_t1C4C1506E0E7D22806B4ED84887D7298C8EC44A1* ___m_MouseDownHit_2;
// UnityEngine.SendMouseEvents_HitInfo[] UnityEngine.SendMouseEvents::m_CurrentHit
HitInfoU5BU5D_t1C4C1506E0E7D22806B4ED84887D7298C8EC44A1* ___m_CurrentHit_3;
// UnityEngine.Camera[] UnityEngine.SendMouseEvents::m_Cameras
CameraU5BU5D_t2A1957E88FB79357C12B87941970D776D30E90F9* ___m_Cameras_4;
public:
inline static int32_t get_offset_of_s_MouseUsed_0() { return static_cast<int32_t>(offsetof(SendMouseEvents_tC8FB7F3FCFF87BDF2E56E1E0D209B81943D8F666_StaticFields, ___s_MouseUsed_0)); }
inline bool get_s_MouseUsed_0() const { return ___s_MouseUsed_0; }
inline bool* get_address_of_s_MouseUsed_0() { return &___s_MouseUsed_0; }
inline void set_s_MouseUsed_0(bool value)
{
___s_MouseUsed_0 = value;
}
inline static int32_t get_offset_of_m_LastHit_1() { return static_cast<int32_t>(offsetof(SendMouseEvents_tC8FB7F3FCFF87BDF2E56E1E0D209B81943D8F666_StaticFields, ___m_LastHit_1)); }
inline HitInfoU5BU5D_t1C4C1506E0E7D22806B4ED84887D7298C8EC44A1* get_m_LastHit_1() const { return ___m_LastHit_1; }
inline HitInfoU5BU5D_t1C4C1506E0E7D22806B4ED84887D7298C8EC44A1** get_address_of_m_LastHit_1() { return &___m_LastHit_1; }
inline void set_m_LastHit_1(HitInfoU5BU5D_t1C4C1506E0E7D22806B4ED84887D7298C8EC44A1* value)
{
___m_LastHit_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_LastHit_1), (void*)value);
}
inline static int32_t get_offset_of_m_MouseDownHit_2() { return static_cast<int32_t>(offsetof(SendMouseEvents_tC8FB7F3FCFF87BDF2E56E1E0D209B81943D8F666_StaticFields, ___m_MouseDownHit_2)); }
inline HitInfoU5BU5D_t1C4C1506E0E7D22806B4ED84887D7298C8EC44A1* get_m_MouseDownHit_2() const { return ___m_MouseDownHit_2; }
inline HitInfoU5BU5D_t1C4C1506E0E7D22806B4ED84887D7298C8EC44A1** get_address_of_m_MouseDownHit_2() { return &___m_MouseDownHit_2; }
inline void set_m_MouseDownHit_2(HitInfoU5BU5D_t1C4C1506E0E7D22806B4ED84887D7298C8EC44A1* value)
{
___m_MouseDownHit_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_MouseDownHit_2), (void*)value);
}
inline static int32_t get_offset_of_m_CurrentHit_3() { return static_cast<int32_t>(offsetof(SendMouseEvents_tC8FB7F3FCFF87BDF2E56E1E0D209B81943D8F666_StaticFields, ___m_CurrentHit_3)); }
inline HitInfoU5BU5D_t1C4C1506E0E7D22806B4ED84887D7298C8EC44A1* get_m_CurrentHit_3() const { return ___m_CurrentHit_3; }
inline HitInfoU5BU5D_t1C4C1506E0E7D22806B4ED84887D7298C8EC44A1** get_address_of_m_CurrentHit_3() { return &___m_CurrentHit_3; }
inline void set_m_CurrentHit_3(HitInfoU5BU5D_t1C4C1506E0E7D22806B4ED84887D7298C8EC44A1* value)
{
___m_CurrentHit_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CurrentHit_3), (void*)value);
}
inline static int32_t get_offset_of_m_Cameras_4() { return static_cast<int32_t>(offsetof(SendMouseEvents_tC8FB7F3FCFF87BDF2E56E1E0D209B81943D8F666_StaticFields, ___m_Cameras_4)); }
inline CameraU5BU5D_t2A1957E88FB79357C12B87941970D776D30E90F9* get_m_Cameras_4() const { return ___m_Cameras_4; }
inline CameraU5BU5D_t2A1957E88FB79357C12B87941970D776D30E90F9** get_address_of_m_Cameras_4() { return &___m_Cameras_4; }
inline void set_m_Cameras_4(CameraU5BU5D_t2A1957E88FB79357C12B87941970D776D30E90F9* value)
{
___m_Cameras_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Cameras_4), (void*)value);
}
};
// UnityEngine.SliderState
struct SliderState_t6081D6F2CF6D0F1A13B2A2D255671B4053EC52CB : public RuntimeObject
{
public:
public:
};
// UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform
struct GameCenterPlatform_t699FF764080BA03011F7DBEA26659A3E4FB2ED43 : public RuntimeObject
{
public:
public:
};
struct GameCenterPlatform_t699FF764080BA03011F7DBEA26659A3E4FB2ED43_StaticFields
{
public:
// System.Action`2<System.Boolean,System.String> UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::s_AuthenticateCallback
Action_2_tC679CE201889334CCB7E9B60CBBA75C1611AE4E2 * ___s_AuthenticateCallback_0;
// UnityEngine.SocialPlatforms.Impl.AchievementDescription[] UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::s_adCache
AchievementDescriptionU5BU5D_t2E09F4A316E4A9274CF8B7BF231DE9AEBE02F062* ___s_adCache_1;
// UnityEngine.SocialPlatforms.Impl.UserProfile[] UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::s_friends
UserProfileU5BU5D_t74EE7690744D8F99BA578ACE0CC65C45837F522F* ___s_friends_2;
// UnityEngine.SocialPlatforms.Impl.UserProfile[] UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::s_users
UserProfileU5BU5D_t74EE7690744D8F99BA578ACE0CC65C45837F522F* ___s_users_3;
// System.Action`1<System.Boolean> UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::s_ResetAchievements
Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * ___s_ResetAchievements_4;
// UnityEngine.SocialPlatforms.Impl.LocalUser UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::m_LocalUser
LocalUser_tBBCEEB55B6F28DFA7F4677E9273622A34CABB135 * ___m_LocalUser_5;
// System.Collections.Generic.List`1<UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard> UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::m_GcBoards
List_1_t34542C6C883A3FAA3E3C444443435BE548121E21 * ___m_GcBoards_6;
public:
inline static int32_t get_offset_of_s_AuthenticateCallback_0() { return static_cast<int32_t>(offsetof(GameCenterPlatform_t699FF764080BA03011F7DBEA26659A3E4FB2ED43_StaticFields, ___s_AuthenticateCallback_0)); }
inline Action_2_tC679CE201889334CCB7E9B60CBBA75C1611AE4E2 * get_s_AuthenticateCallback_0() const { return ___s_AuthenticateCallback_0; }
inline Action_2_tC679CE201889334CCB7E9B60CBBA75C1611AE4E2 ** get_address_of_s_AuthenticateCallback_0() { return &___s_AuthenticateCallback_0; }
inline void set_s_AuthenticateCallback_0(Action_2_tC679CE201889334CCB7E9B60CBBA75C1611AE4E2 * value)
{
___s_AuthenticateCallback_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_AuthenticateCallback_0), (void*)value);
}
inline static int32_t get_offset_of_s_adCache_1() { return static_cast<int32_t>(offsetof(GameCenterPlatform_t699FF764080BA03011F7DBEA26659A3E4FB2ED43_StaticFields, ___s_adCache_1)); }
inline AchievementDescriptionU5BU5D_t2E09F4A316E4A9274CF8B7BF231DE9AEBE02F062* get_s_adCache_1() const { return ___s_adCache_1; }
inline AchievementDescriptionU5BU5D_t2E09F4A316E4A9274CF8B7BF231DE9AEBE02F062** get_address_of_s_adCache_1() { return &___s_adCache_1; }
inline void set_s_adCache_1(AchievementDescriptionU5BU5D_t2E09F4A316E4A9274CF8B7BF231DE9AEBE02F062* value)
{
___s_adCache_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_adCache_1), (void*)value);
}
inline static int32_t get_offset_of_s_friends_2() { return static_cast<int32_t>(offsetof(GameCenterPlatform_t699FF764080BA03011F7DBEA26659A3E4FB2ED43_StaticFields, ___s_friends_2)); }
inline UserProfileU5BU5D_t74EE7690744D8F99BA578ACE0CC65C45837F522F* get_s_friends_2() const { return ___s_friends_2; }
inline UserProfileU5BU5D_t74EE7690744D8F99BA578ACE0CC65C45837F522F** get_address_of_s_friends_2() { return &___s_friends_2; }
inline void set_s_friends_2(UserProfileU5BU5D_t74EE7690744D8F99BA578ACE0CC65C45837F522F* value)
{
___s_friends_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_friends_2), (void*)value);
}
inline static int32_t get_offset_of_s_users_3() { return static_cast<int32_t>(offsetof(GameCenterPlatform_t699FF764080BA03011F7DBEA26659A3E4FB2ED43_StaticFields, ___s_users_3)); }
inline UserProfileU5BU5D_t74EE7690744D8F99BA578ACE0CC65C45837F522F* get_s_users_3() const { return ___s_users_3; }
inline UserProfileU5BU5D_t74EE7690744D8F99BA578ACE0CC65C45837F522F** get_address_of_s_users_3() { return &___s_users_3; }
inline void set_s_users_3(UserProfileU5BU5D_t74EE7690744D8F99BA578ACE0CC65C45837F522F* value)
{
___s_users_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_users_3), (void*)value);
}
inline static int32_t get_offset_of_s_ResetAchievements_4() { return static_cast<int32_t>(offsetof(GameCenterPlatform_t699FF764080BA03011F7DBEA26659A3E4FB2ED43_StaticFields, ___s_ResetAchievements_4)); }
inline Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * get_s_ResetAchievements_4() const { return ___s_ResetAchievements_4; }
inline Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD ** get_address_of_s_ResetAchievements_4() { return &___s_ResetAchievements_4; }
inline void set_s_ResetAchievements_4(Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * value)
{
___s_ResetAchievements_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_ResetAchievements_4), (void*)value);
}
inline static int32_t get_offset_of_m_LocalUser_5() { return static_cast<int32_t>(offsetof(GameCenterPlatform_t699FF764080BA03011F7DBEA26659A3E4FB2ED43_StaticFields, ___m_LocalUser_5)); }
inline LocalUser_tBBCEEB55B6F28DFA7F4677E9273622A34CABB135 * get_m_LocalUser_5() const { return ___m_LocalUser_5; }
inline LocalUser_tBBCEEB55B6F28DFA7F4677E9273622A34CABB135 ** get_address_of_m_LocalUser_5() { return &___m_LocalUser_5; }
inline void set_m_LocalUser_5(LocalUser_tBBCEEB55B6F28DFA7F4677E9273622A34CABB135 * value)
{
___m_LocalUser_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_LocalUser_5), (void*)value);
}
inline static int32_t get_offset_of_m_GcBoards_6() { return static_cast<int32_t>(offsetof(GameCenterPlatform_t699FF764080BA03011F7DBEA26659A3E4FB2ED43_StaticFields, ___m_GcBoards_6)); }
inline List_1_t34542C6C883A3FAA3E3C444443435BE548121E21 * get_m_GcBoards_6() const { return ___m_GcBoards_6; }
inline List_1_t34542C6C883A3FAA3E3C444443435BE548121E21 ** get_address_of_m_GcBoards_6() { return &___m_GcBoards_6; }
inline void set_m_GcBoards_6(List_1_t34542C6C883A3FAA3E3C444443435BE548121E21 * value)
{
___m_GcBoards_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_GcBoards_6), (void*)value);
}
};
// UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform_<UnityEngine_SocialPlatforms_ISocialPlatform_Authenticate>c__AnonStorey0
struct U3CUnityEngine_SocialPlatforms_ISocialPlatform_AuthenticateU3Ec__AnonStorey0_t5601A9A066EAEA224918FCB9B71F770D57C3B488 : public RuntimeObject
{
public:
// System.Action`1<System.Boolean> UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform_<UnityEngine_SocialPlatforms_ISocialPlatform_Authenticate>c__AnonStorey0::callback
Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * ___callback_0;
public:
inline static int32_t get_offset_of_callback_0() { return static_cast<int32_t>(offsetof(U3CUnityEngine_SocialPlatforms_ISocialPlatform_AuthenticateU3Ec__AnonStorey0_t5601A9A066EAEA224918FCB9B71F770D57C3B488, ___callback_0)); }
inline Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * get_callback_0() const { return ___callback_0; }
inline Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD ** get_address_of_callback_0() { return &___callback_0; }
inline void set_callback_0(Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * value)
{
___callback_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___callback_0), (void*)value);
}
};
// UnityEngine.SocialPlatforms.Impl.AchievementDescription
struct AchievementDescription_t3A0A2B1921C25802FE46B81BF301BFCAA2FEE6E7 : public RuntimeObject
{
public:
// System.String UnityEngine.SocialPlatforms.Impl.AchievementDescription::m_Title
String_t* ___m_Title_0;
// UnityEngine.Texture2D UnityEngine.SocialPlatforms.Impl.AchievementDescription::m_Image
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___m_Image_1;
// System.String UnityEngine.SocialPlatforms.Impl.AchievementDescription::m_AchievedDescription
String_t* ___m_AchievedDescription_2;
// System.String UnityEngine.SocialPlatforms.Impl.AchievementDescription::m_UnachievedDescription
String_t* ___m_UnachievedDescription_3;
// System.Boolean UnityEngine.SocialPlatforms.Impl.AchievementDescription::m_Hidden
bool ___m_Hidden_4;
// System.Int32 UnityEngine.SocialPlatforms.Impl.AchievementDescription::m_Points
int32_t ___m_Points_5;
// System.String UnityEngine.SocialPlatforms.Impl.AchievementDescription::<id>k__BackingField
String_t* ___U3CidU3Ek__BackingField_6;
public:
inline static int32_t get_offset_of_m_Title_0() { return static_cast<int32_t>(offsetof(AchievementDescription_t3A0A2B1921C25802FE46B81BF301BFCAA2FEE6E7, ___m_Title_0)); }
inline String_t* get_m_Title_0() const { return ___m_Title_0; }
inline String_t** get_address_of_m_Title_0() { return &___m_Title_0; }
inline void set_m_Title_0(String_t* value)
{
___m_Title_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Title_0), (void*)value);
}
inline static int32_t get_offset_of_m_Image_1() { return static_cast<int32_t>(offsetof(AchievementDescription_t3A0A2B1921C25802FE46B81BF301BFCAA2FEE6E7, ___m_Image_1)); }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * get_m_Image_1() const { return ___m_Image_1; }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C ** get_address_of_m_Image_1() { return &___m_Image_1; }
inline void set_m_Image_1(Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * value)
{
___m_Image_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Image_1), (void*)value);
}
inline static int32_t get_offset_of_m_AchievedDescription_2() { return static_cast<int32_t>(offsetof(AchievementDescription_t3A0A2B1921C25802FE46B81BF301BFCAA2FEE6E7, ___m_AchievedDescription_2)); }
inline String_t* get_m_AchievedDescription_2() const { return ___m_AchievedDescription_2; }
inline String_t** get_address_of_m_AchievedDescription_2() { return &___m_AchievedDescription_2; }
inline void set_m_AchievedDescription_2(String_t* value)
{
___m_AchievedDescription_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_AchievedDescription_2), (void*)value);
}
inline static int32_t get_offset_of_m_UnachievedDescription_3() { return static_cast<int32_t>(offsetof(AchievementDescription_t3A0A2B1921C25802FE46B81BF301BFCAA2FEE6E7, ___m_UnachievedDescription_3)); }
inline String_t* get_m_UnachievedDescription_3() const { return ___m_UnachievedDescription_3; }
inline String_t** get_address_of_m_UnachievedDescription_3() { return &___m_UnachievedDescription_3; }
inline void set_m_UnachievedDescription_3(String_t* value)
{
___m_UnachievedDescription_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_UnachievedDescription_3), (void*)value);
}
inline static int32_t get_offset_of_m_Hidden_4() { return static_cast<int32_t>(offsetof(AchievementDescription_t3A0A2B1921C25802FE46B81BF301BFCAA2FEE6E7, ___m_Hidden_4)); }
inline bool get_m_Hidden_4() const { return ___m_Hidden_4; }
inline bool* get_address_of_m_Hidden_4() { return &___m_Hidden_4; }
inline void set_m_Hidden_4(bool value)
{
___m_Hidden_4 = value;
}
inline static int32_t get_offset_of_m_Points_5() { return static_cast<int32_t>(offsetof(AchievementDescription_t3A0A2B1921C25802FE46B81BF301BFCAA2FEE6E7, ___m_Points_5)); }
inline int32_t get_m_Points_5() const { return ___m_Points_5; }
inline int32_t* get_address_of_m_Points_5() { return &___m_Points_5; }
inline void set_m_Points_5(int32_t value)
{
___m_Points_5 = value;
}
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(AchievementDescription_t3A0A2B1921C25802FE46B81BF301BFCAA2FEE6E7, ___U3CidU3Ek__BackingField_6)); }
inline String_t* get_U3CidU3Ek__BackingField_6() const { return ___U3CidU3Ek__BackingField_6; }
inline String_t** get_address_of_U3CidU3Ek__BackingField_6() { return &___U3CidU3Ek__BackingField_6; }
inline void set_U3CidU3Ek__BackingField_6(String_t* value)
{
___U3CidU3Ek__BackingField_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CidU3Ek__BackingField_6), (void*)value);
}
};
// UnityEngine.Subsystem
struct Subsystem_t6B987736D8E48098F860AC55D76905DE1F48CE8C : public RuntimeObject
{
public:
public:
};
// UnityEngine.SubsystemDescriptor
struct SubsystemDescriptor_t889FE96B75F157379A8337541A119F08DD9C75D4 : public RuntimeObject
{
public:
// System.String UnityEngine.SubsystemDescriptor::<id>k__BackingField
String_t* ___U3CidU3Ek__BackingField_0;
// System.Type UnityEngine.SubsystemDescriptor::<subsystemImplementationType>k__BackingField
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(SubsystemDescriptor_t889FE96B75F157379A8337541A119F08DD9C75D4, ___U3CidU3Ek__BackingField_0)); }
inline String_t* get_U3CidU3Ek__BackingField_0() const { return ___U3CidU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CidU3Ek__BackingField_0() { return &___U3CidU3Ek__BackingField_0; }
inline void set_U3CidU3Ek__BackingField_0(String_t* value)
{
___U3CidU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CidU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemImplementationTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(SubsystemDescriptor_t889FE96B75F157379A8337541A119F08DD9C75D4, ___U3CsubsystemImplementationTypeU3Ek__BackingField_1)); }
inline Type_t * get_U3CsubsystemImplementationTypeU3Ek__BackingField_1() const { return ___U3CsubsystemImplementationTypeU3Ek__BackingField_1; }
inline Type_t ** get_address_of_U3CsubsystemImplementationTypeU3Ek__BackingField_1() { return &___U3CsubsystemImplementationTypeU3Ek__BackingField_1; }
inline void set_U3CsubsystemImplementationTypeU3Ek__BackingField_1(Type_t * value)
{
___U3CsubsystemImplementationTypeU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemImplementationTypeU3Ek__BackingField_1), (void*)value);
}
};
// UnityEngine.SubsystemRegistration
struct SubsystemRegistration_t0A22FECC46483ABBFFC039449407F73FF11F5A1A : public RuntimeObject
{
public:
public:
};
struct SubsystemRegistration_t0A22FECC46483ABBFFC039449407F73FF11F5A1A_StaticFields
{
public:
// System.Collections.Generic.List`1<UnityEngine.SubsystemDescriptor> UnityEngine.SubsystemRegistration::k_SubsystemDescriptors
List_1_t55C256C4FBF16AF9856AC2053BCE497E455A066B * ___k_SubsystemDescriptors_0;
public:
inline static int32_t get_offset_of_k_SubsystemDescriptors_0() { return static_cast<int32_t>(offsetof(SubsystemRegistration_t0A22FECC46483ABBFFC039449407F73FF11F5A1A_StaticFields, ___k_SubsystemDescriptors_0)); }
inline List_1_t55C256C4FBF16AF9856AC2053BCE497E455A066B * get_k_SubsystemDescriptors_0() const { return ___k_SubsystemDescriptors_0; }
inline List_1_t55C256C4FBF16AF9856AC2053BCE497E455A066B ** get_address_of_k_SubsystemDescriptors_0() { return &___k_SubsystemDescriptors_0; }
inline void set_k_SubsystemDescriptors_0(List_1_t55C256C4FBF16AF9856AC2053BCE497E455A066B * value)
{
___k_SubsystemDescriptors_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___k_SubsystemDescriptors_0), (void*)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;
// UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.ICanvasElement> UnityEngine.UI.CanvasUpdateRegistry::m_LayoutRebuildQueue
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * ___m_LayoutRebuildQueue_3;
// UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.ICanvasElement> UnityEngine.UI.CanvasUpdateRegistry::m_GraphicRebuildQueue
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * ___m_GraphicRebuildQueue_4;
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_LayoutRebuildQueue_3() { return static_cast<int32_t>(offsetof(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9, ___m_LayoutRebuildQueue_3)); }
inline IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * get_m_LayoutRebuildQueue_3() const { return ___m_LayoutRebuildQueue_3; }
inline IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 ** get_address_of_m_LayoutRebuildQueue_3() { return &___m_LayoutRebuildQueue_3; }
inline void set_m_LayoutRebuildQueue_3(IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * value)
{
___m_LayoutRebuildQueue_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_LayoutRebuildQueue_3), (void*)value);
}
inline static int32_t get_offset_of_m_GraphicRebuildQueue_4() { return static_cast<int32_t>(offsetof(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9, ___m_GraphicRebuildQueue_4)); }
inline IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * get_m_GraphicRebuildQueue_4() const { return ___m_GraphicRebuildQueue_4; }
inline IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 ** get_address_of_m_GraphicRebuildQueue_4() { return &___m_GraphicRebuildQueue_4; }
inline void set_m_GraphicRebuildQueue_4(IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * value)
{
___m_GraphicRebuildQueue_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_GraphicRebuildQueue_4), (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_5;
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_5() { return static_cast<int32_t>(offsetof(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_StaticFields, ___s_SortLayoutFunction_5)); }
inline Comparison_1_tE7E69DEDE3A7782BEEADFF223EE57D6F7F626AEC * get_s_SortLayoutFunction_5() const { return ___s_SortLayoutFunction_5; }
inline Comparison_1_tE7E69DEDE3A7782BEEADFF223EE57D6F7F626AEC ** get_address_of_s_SortLayoutFunction_5() { return &___s_SortLayoutFunction_5; }
inline void set_s_SortLayoutFunction_5(Comparison_1_tE7E69DEDE3A7782BEEADFF223EE57D6F7F626AEC * value)
{
___s_SortLayoutFunction_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_SortLayoutFunction_5), (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.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.FontUpdateTracker
struct FontUpdateTracker_t2584C33FA26620846ABD0529AC058833E791D612 : public RuntimeObject
{
public:
public:
};
struct FontUpdateTracker_t2584C33FA26620846ABD0529AC058833E791D612_StaticFields
{
public:
// System.Collections.Generic.Dictionary`2<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>> UnityEngine.UI.FontUpdateTracker::m_Tracked
Dictionary_2_t5EF8DDC4DE6F1827C30FEACAD4DE618CECDE8993 * ___m_Tracked_0;
public:
inline static int32_t get_offset_of_m_Tracked_0() { return static_cast<int32_t>(offsetof(FontUpdateTracker_t2584C33FA26620846ABD0529AC058833E791D612_StaticFields, ___m_Tracked_0)); }
inline Dictionary_2_t5EF8DDC4DE6F1827C30FEACAD4DE618CECDE8993 * get_m_Tracked_0() const { return ___m_Tracked_0; }
inline Dictionary_2_t5EF8DDC4DE6F1827C30FEACAD4DE618CECDE8993 ** get_address_of_m_Tracked_0() { return &___m_Tracked_0; }
inline void set_m_Tracked_0(Dictionary_2_t5EF8DDC4DE6F1827C30FEACAD4DE618CECDE8993 * value)
{
___m_Tracked_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Tracked_0), (void*)value);
}
};
// UnityEngine.UI.GraphicRaycaster_<>c
struct U3CU3Ec_t9EA6FFB8A51BECB82C29C8D6817842AE373849E5 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t9EA6FFB8A51BECB82C29C8D6817842AE373849E5_StaticFields
{
public:
// UnityEngine.UI.GraphicRaycaster_<>c UnityEngine.UI.GraphicRaycaster_<>c::<>9
U3CU3Ec_t9EA6FFB8A51BECB82C29C8D6817842AE373849E5 * ___U3CU3E9_0;
// System.Comparison`1<UnityEngine.UI.Graphic> UnityEngine.UI.GraphicRaycaster_<>c::<>9__24_0
Comparison_1_tEA68F7F51BC50151DFE33F13DC8AE50136C8125A * ___U3CU3E9__24_0_1;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t9EA6FFB8A51BECB82C29C8D6817842AE373849E5_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t9EA6FFB8A51BECB82C29C8D6817842AE373849E5 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t9EA6FFB8A51BECB82C29C8D6817842AE373849E5 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t9EA6FFB8A51BECB82C29C8D6817842AE373849E5 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__24_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t9EA6FFB8A51BECB82C29C8D6817842AE373849E5_StaticFields, ___U3CU3E9__24_0_1)); }
inline Comparison_1_tEA68F7F51BC50151DFE33F13DC8AE50136C8125A * get_U3CU3E9__24_0_1() const { return ___U3CU3E9__24_0_1; }
inline Comparison_1_tEA68F7F51BC50151DFE33F13DC8AE50136C8125A ** get_address_of_U3CU3E9__24_0_1() { return &___U3CU3E9__24_0_1; }
inline void set_U3CU3E9__24_0_1(Comparison_1_tEA68F7F51BC50151DFE33F13DC8AE50136C8125A * value)
{
___U3CU3E9__24_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__24_0_1), (void*)value);
}
};
// UnityEngine.UI.GraphicRegistry
struct GraphicRegistry_t19E314996D0558CDC3EE57FBA9278A6746C0E02A : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>> UnityEngine.UI.GraphicRegistry::m_Graphics
Dictionary_2_tEA22C9A70455F48848150148C6438B124EBCA894 * ___m_Graphics_1;
public:
inline static int32_t get_offset_of_m_Graphics_1() { return static_cast<int32_t>(offsetof(GraphicRegistry_t19E314996D0558CDC3EE57FBA9278A6746C0E02A, ___m_Graphics_1)); }
inline Dictionary_2_tEA22C9A70455F48848150148C6438B124EBCA894 * get_m_Graphics_1() const { return ___m_Graphics_1; }
inline Dictionary_2_tEA22C9A70455F48848150148C6438B124EBCA894 ** get_address_of_m_Graphics_1() { return &___m_Graphics_1; }
inline void set_m_Graphics_1(Dictionary_2_tEA22C9A70455F48848150148C6438B124EBCA894 * value)
{
___m_Graphics_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Graphics_1), (void*)value);
}
};
struct GraphicRegistry_t19E314996D0558CDC3EE57FBA9278A6746C0E02A_StaticFields
{
public:
// UnityEngine.UI.GraphicRegistry UnityEngine.UI.GraphicRegistry::s_Instance
GraphicRegistry_t19E314996D0558CDC3EE57FBA9278A6746C0E02A * ___s_Instance_0;
// System.Collections.Generic.List`1<UnityEngine.UI.Graphic> UnityEngine.UI.GraphicRegistry::s_EmptyList
List_1_t705F73CF6A6B35959C68A5EDDA0E8C8B3137797F * ___s_EmptyList_2;
public:
inline static int32_t get_offset_of_s_Instance_0() { return static_cast<int32_t>(offsetof(GraphicRegistry_t19E314996D0558CDC3EE57FBA9278A6746C0E02A_StaticFields, ___s_Instance_0)); }
inline GraphicRegistry_t19E314996D0558CDC3EE57FBA9278A6746C0E02A * get_s_Instance_0() const { return ___s_Instance_0; }
inline GraphicRegistry_t19E314996D0558CDC3EE57FBA9278A6746C0E02A ** get_address_of_s_Instance_0() { return &___s_Instance_0; }
inline void set_s_Instance_0(GraphicRegistry_t19E314996D0558CDC3EE57FBA9278A6746C0E02A * value)
{
___s_Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Instance_0), (void*)value);
}
inline static int32_t get_offset_of_s_EmptyList_2() { return static_cast<int32_t>(offsetof(GraphicRegistry_t19E314996D0558CDC3EE57FBA9278A6746C0E02A_StaticFields, ___s_EmptyList_2)); }
inline List_1_t705F73CF6A6B35959C68A5EDDA0E8C8B3137797F * get_s_EmptyList_2() const { return ___s_EmptyList_2; }
inline List_1_t705F73CF6A6B35959C68A5EDDA0E8C8B3137797F ** get_address_of_s_EmptyList_2() { return &___s_EmptyList_2; }
inline void set_s_EmptyList_2(List_1_t705F73CF6A6B35959C68A5EDDA0E8C8B3137797F * value)
{
___s_EmptyList_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_EmptyList_2), (void*)value);
}
};
// UnityEngine.UI.InputField_<CaretBlink>d__159
struct U3CCaretBlinkU3Ed__159_t36133DA91EEA742617E101110D7206F0EDCEF467 : public RuntimeObject
{
public:
// System.Int32 UnityEngine.UI.InputField_<CaretBlink>d__159::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object UnityEngine.UI.InputField_<CaretBlink>d__159::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// UnityEngine.UI.InputField UnityEngine.UI.InputField_<CaretBlink>d__159::<>4__this
InputField_t533609195B110760BCFF00B746C87D81969CB005 * ___U3CU3E4__this_2;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CCaretBlinkU3Ed__159_t36133DA91EEA742617E101110D7206F0EDCEF467, ___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(U3CCaretBlinkU3Ed__159_t36133DA91EEA742617E101110D7206F0EDCEF467, ___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(U3CCaretBlinkU3Ed__159_t36133DA91EEA742617E101110D7206F0EDCEF467, ___U3CU3E4__this_2)); }
inline InputField_t533609195B110760BCFF00B746C87D81969CB005 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline InputField_t533609195B110760BCFF00B746C87D81969CB005 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(InputField_t533609195B110760BCFF00B746C87D81969CB005 * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value);
}
};
// UnityEngine.UI.InputField_<MouseDragOutsideRect>d__179
struct U3CMouseDragOutsideRectU3Ed__179_tA57998CEE46A16212E0ECC60BADCD29931B06712 : public RuntimeObject
{
public:
// System.Int32 UnityEngine.UI.InputField_<MouseDragOutsideRect>d__179::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object UnityEngine.UI.InputField_<MouseDragOutsideRect>d__179::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// UnityEngine.EventSystems.PointerEventData UnityEngine.UI.InputField_<MouseDragOutsideRect>d__179::eventData
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___eventData_2;
// UnityEngine.UI.InputField UnityEngine.UI.InputField_<MouseDragOutsideRect>d__179::<>4__this
InputField_t533609195B110760BCFF00B746C87D81969CB005 * ___U3CU3E4__this_3;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CMouseDragOutsideRectU3Ed__179_tA57998CEE46A16212E0ECC60BADCD29931B06712, ___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(U3CMouseDragOutsideRectU3Ed__179_tA57998CEE46A16212E0ECC60BADCD29931B06712, ___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_eventData_2() { return static_cast<int32_t>(offsetof(U3CMouseDragOutsideRectU3Ed__179_tA57998CEE46A16212E0ECC60BADCD29931B06712, ___eventData_2)); }
inline PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * get_eventData_2() const { return ___eventData_2; }
inline PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 ** get_address_of_eventData_2() { return &___eventData_2; }
inline void set_eventData_2(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * value)
{
___eventData_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___eventData_2), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E4__this_3() { return static_cast<int32_t>(offsetof(U3CMouseDragOutsideRectU3Ed__179_tA57998CEE46A16212E0ECC60BADCD29931B06712, ___U3CU3E4__this_3)); }
inline InputField_t533609195B110760BCFF00B746C87D81969CB005 * get_U3CU3E4__this_3() const { return ___U3CU3E4__this_3; }
inline InputField_t533609195B110760BCFF00B746C87D81969CB005 ** get_address_of_U3CU3E4__this_3() { return &___U3CU3E4__this_3; }
inline void set_U3CU3E4__this_3(InputField_t533609195B110760BCFF00B746C87D81969CB005 * value)
{
___U3CU3E4__this_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_3), (void*)value);
}
};
// UnityEngine.UI.LayoutGroup_<DelayedSetDirty>d__56
struct U3CDelayedSetDirtyU3Ed__56_tD8253C23DF3FBC7349A3E8FEAE713AA0AA18232B : public RuntimeObject
{
public:
// System.Int32 UnityEngine.UI.LayoutGroup_<DelayedSetDirty>d__56::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object UnityEngine.UI.LayoutGroup_<DelayedSetDirty>d__56::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// UnityEngine.RectTransform UnityEngine.UI.LayoutGroup_<DelayedSetDirty>d__56::rectTransform
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___rectTransform_2;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CDelayedSetDirtyU3Ed__56_tD8253C23DF3FBC7349A3E8FEAE713AA0AA18232B, ___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(U3CDelayedSetDirtyU3Ed__56_tD8253C23DF3FBC7349A3E8FEAE713AA0AA18232B, ___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_rectTransform_2() { return static_cast<int32_t>(offsetof(U3CDelayedSetDirtyU3Ed__56_tD8253C23DF3FBC7349A3E8FEAE713AA0AA18232B, ___rectTransform_2)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_rectTransform_2() const { return ___rectTransform_2; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_rectTransform_2() { return &___rectTransform_2; }
inline void set_rectTransform_2(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___rectTransform_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___rectTransform_2), (void*)value);
}
};
// UnityEngine.UI.LayoutRebuilder
struct LayoutRebuilder_t8D3501B43B1DE666140E2931FFA732B5B09EA5BD : public RuntimeObject
{
public:
// UnityEngine.RectTransform UnityEngine.UI.LayoutRebuilder::m_ToRebuild
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_ToRebuild_0;
// System.Int32 UnityEngine.UI.LayoutRebuilder::m_CachedHashFromTransform
int32_t ___m_CachedHashFromTransform_1;
public:
inline static int32_t get_offset_of_m_ToRebuild_0() { return static_cast<int32_t>(offsetof(LayoutRebuilder_t8D3501B43B1DE666140E2931FFA732B5B09EA5BD, ___m_ToRebuild_0)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_ToRebuild_0() const { return ___m_ToRebuild_0; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_ToRebuild_0() { return &___m_ToRebuild_0; }
inline void set_m_ToRebuild_0(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_ToRebuild_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ToRebuild_0), (void*)value);
}
inline static int32_t get_offset_of_m_CachedHashFromTransform_1() { return static_cast<int32_t>(offsetof(LayoutRebuilder_t8D3501B43B1DE666140E2931FFA732B5B09EA5BD, ___m_CachedHashFromTransform_1)); }
inline int32_t get_m_CachedHashFromTransform_1() const { return ___m_CachedHashFromTransform_1; }
inline int32_t* get_address_of_m_CachedHashFromTransform_1() { return &___m_CachedHashFromTransform_1; }
inline void set_m_CachedHashFromTransform_1(int32_t value)
{
___m_CachedHashFromTransform_1 = value;
}
};
struct LayoutRebuilder_t8D3501B43B1DE666140E2931FFA732B5B09EA5BD_StaticFields
{
public:
// UnityEngine.UI.ObjectPool`1<UnityEngine.UI.LayoutRebuilder> UnityEngine.UI.LayoutRebuilder::s_Rebuilders
ObjectPool_1_tFA4F33849836CDB27432AE22249BB79D68619541 * ___s_Rebuilders_2;
public:
inline static int32_t get_offset_of_s_Rebuilders_2() { return static_cast<int32_t>(offsetof(LayoutRebuilder_t8D3501B43B1DE666140E2931FFA732B5B09EA5BD_StaticFields, ___s_Rebuilders_2)); }
inline ObjectPool_1_tFA4F33849836CDB27432AE22249BB79D68619541 * get_s_Rebuilders_2() const { return ___s_Rebuilders_2; }
inline ObjectPool_1_tFA4F33849836CDB27432AE22249BB79D68619541 ** get_address_of_s_Rebuilders_2() { return &___s_Rebuilders_2; }
inline void set_s_Rebuilders_2(ObjectPool_1_tFA4F33849836CDB27432AE22249BB79D68619541 * value)
{
___s_Rebuilders_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Rebuilders_2), (void*)value);
}
};
// UnityEngine.UI.LayoutRebuilder_<>c
struct U3CU3Ec_tD38D06365CEFC6925DAE86387A916ABBFE8D9467 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_tD38D06365CEFC6925DAE86387A916ABBFE8D9467_StaticFields
{
public:
// UnityEngine.UI.LayoutRebuilder_<>c UnityEngine.UI.LayoutRebuilder_<>c::<>9
U3CU3Ec_tD38D06365CEFC6925DAE86387A916ABBFE8D9467 * ___U3CU3E9_0;
// System.Predicate`1<UnityEngine.Component> UnityEngine.UI.LayoutRebuilder_<>c::<>9__10_0
Predicate_1_tBC1E7F57082F597A272DC13435129BE97AE5EB86 * ___U3CU3E9__10_0_1;
// UnityEngine.Events.UnityAction`1<UnityEngine.Component> UnityEngine.UI.LayoutRebuilder_<>c::<>9__12_0
UnityAction_1_t5868E1437AB828E8331C57C3CDE8E7E91264F5BB * ___U3CU3E9__12_0_2;
// UnityEngine.Events.UnityAction`1<UnityEngine.Component> UnityEngine.UI.LayoutRebuilder_<>c::<>9__12_1
UnityAction_1_t5868E1437AB828E8331C57C3CDE8E7E91264F5BB * ___U3CU3E9__12_1_3;
// UnityEngine.Events.UnityAction`1<UnityEngine.Component> UnityEngine.UI.LayoutRebuilder_<>c::<>9__12_2
UnityAction_1_t5868E1437AB828E8331C57C3CDE8E7E91264F5BB * ___U3CU3E9__12_2_4;
// UnityEngine.Events.UnityAction`1<UnityEngine.Component> UnityEngine.UI.LayoutRebuilder_<>c::<>9__12_3
UnityAction_1_t5868E1437AB828E8331C57C3CDE8E7E91264F5BB * ___U3CU3E9__12_3_5;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_tD38D06365CEFC6925DAE86387A916ABBFE8D9467_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_tD38D06365CEFC6925DAE86387A916ABBFE8D9467 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_tD38D06365CEFC6925DAE86387A916ABBFE8D9467 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_tD38D06365CEFC6925DAE86387A916ABBFE8D9467 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__10_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_tD38D06365CEFC6925DAE86387A916ABBFE8D9467_StaticFields, ___U3CU3E9__10_0_1)); }
inline Predicate_1_tBC1E7F57082F597A272DC13435129BE97AE5EB86 * get_U3CU3E9__10_0_1() const { return ___U3CU3E9__10_0_1; }
inline Predicate_1_tBC1E7F57082F597A272DC13435129BE97AE5EB86 ** get_address_of_U3CU3E9__10_0_1() { return &___U3CU3E9__10_0_1; }
inline void set_U3CU3E9__10_0_1(Predicate_1_tBC1E7F57082F597A272DC13435129BE97AE5EB86 * value)
{
___U3CU3E9__10_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__10_0_1), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__12_0_2() { return static_cast<int32_t>(offsetof(U3CU3Ec_tD38D06365CEFC6925DAE86387A916ABBFE8D9467_StaticFields, ___U3CU3E9__12_0_2)); }
inline UnityAction_1_t5868E1437AB828E8331C57C3CDE8E7E91264F5BB * get_U3CU3E9__12_0_2() const { return ___U3CU3E9__12_0_2; }
inline UnityAction_1_t5868E1437AB828E8331C57C3CDE8E7E91264F5BB ** get_address_of_U3CU3E9__12_0_2() { return &___U3CU3E9__12_0_2; }
inline void set_U3CU3E9__12_0_2(UnityAction_1_t5868E1437AB828E8331C57C3CDE8E7E91264F5BB * value)
{
___U3CU3E9__12_0_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__12_0_2), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__12_1_3() { return static_cast<int32_t>(offsetof(U3CU3Ec_tD38D06365CEFC6925DAE86387A916ABBFE8D9467_StaticFields, ___U3CU3E9__12_1_3)); }
inline UnityAction_1_t5868E1437AB828E8331C57C3CDE8E7E91264F5BB * get_U3CU3E9__12_1_3() const { return ___U3CU3E9__12_1_3; }
inline UnityAction_1_t5868E1437AB828E8331C57C3CDE8E7E91264F5BB ** get_address_of_U3CU3E9__12_1_3() { return &___U3CU3E9__12_1_3; }
inline void set_U3CU3E9__12_1_3(UnityAction_1_t5868E1437AB828E8331C57C3CDE8E7E91264F5BB * value)
{
___U3CU3E9__12_1_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__12_1_3), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__12_2_4() { return static_cast<int32_t>(offsetof(U3CU3Ec_tD38D06365CEFC6925DAE86387A916ABBFE8D9467_StaticFields, ___U3CU3E9__12_2_4)); }
inline UnityAction_1_t5868E1437AB828E8331C57C3CDE8E7E91264F5BB * get_U3CU3E9__12_2_4() const { return ___U3CU3E9__12_2_4; }
inline UnityAction_1_t5868E1437AB828E8331C57C3CDE8E7E91264F5BB ** get_address_of_U3CU3E9__12_2_4() { return &___U3CU3E9__12_2_4; }
inline void set_U3CU3E9__12_2_4(UnityAction_1_t5868E1437AB828E8331C57C3CDE8E7E91264F5BB * value)
{
___U3CU3E9__12_2_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__12_2_4), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__12_3_5() { return static_cast<int32_t>(offsetof(U3CU3Ec_tD38D06365CEFC6925DAE86387A916ABBFE8D9467_StaticFields, ___U3CU3E9__12_3_5)); }
inline UnityAction_1_t5868E1437AB828E8331C57C3CDE8E7E91264F5BB * get_U3CU3E9__12_3_5() const { return ___U3CU3E9__12_3_5; }
inline UnityAction_1_t5868E1437AB828E8331C57C3CDE8E7E91264F5BB ** get_address_of_U3CU3E9__12_3_5() { return &___U3CU3E9__12_3_5; }
inline void set_U3CU3E9__12_3_5(UnityAction_1_t5868E1437AB828E8331C57C3CDE8E7E91264F5BB * value)
{
___U3CU3E9__12_3_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__12_3_5), (void*)value);
}
};
// UnityEngine.UI.LayoutUtility
struct LayoutUtility_t3B5074E34900DA384884FC50809EA395CB69E7D5 : public RuntimeObject
{
public:
public:
};
// UnityEngine.UI.LayoutUtility_<>c
struct U3CU3Ec_tDC8A34C65EFB98EEB31B97954FEEF954AD102DDD : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_tDC8A34C65EFB98EEB31B97954FEEF954AD102DDD_StaticFields
{
public:
// UnityEngine.UI.LayoutUtility_<>c UnityEngine.UI.LayoutUtility_<>c::<>9
U3CU3Ec_tDC8A34C65EFB98EEB31B97954FEEF954AD102DDD * ___U3CU3E9_0;
// System.Func`2<UnityEngine.UI.ILayoutElement,System.Single> UnityEngine.UI.LayoutUtility_<>c::<>9__3_0
Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A * ___U3CU3E9__3_0_1;
// System.Func`2<UnityEngine.UI.ILayoutElement,System.Single> UnityEngine.UI.LayoutUtility_<>c::<>9__4_0
Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A * ___U3CU3E9__4_0_2;
// System.Func`2<UnityEngine.UI.ILayoutElement,System.Single> UnityEngine.UI.LayoutUtility_<>c::<>9__4_1
Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A * ___U3CU3E9__4_1_3;
// System.Func`2<UnityEngine.UI.ILayoutElement,System.Single> UnityEngine.UI.LayoutUtility_<>c::<>9__5_0
Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A * ___U3CU3E9__5_0_4;
// System.Func`2<UnityEngine.UI.ILayoutElement,System.Single> UnityEngine.UI.LayoutUtility_<>c::<>9__6_0
Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A * ___U3CU3E9__6_0_5;
// System.Func`2<UnityEngine.UI.ILayoutElement,System.Single> UnityEngine.UI.LayoutUtility_<>c::<>9__7_0
Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A * ___U3CU3E9__7_0_6;
// System.Func`2<UnityEngine.UI.ILayoutElement,System.Single> UnityEngine.UI.LayoutUtility_<>c::<>9__7_1
Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A * ___U3CU3E9__7_1_7;
// System.Func`2<UnityEngine.UI.ILayoutElement,System.Single> UnityEngine.UI.LayoutUtility_<>c::<>9__8_0
Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A * ___U3CU3E9__8_0_8;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_tDC8A34C65EFB98EEB31B97954FEEF954AD102DDD_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_tDC8A34C65EFB98EEB31B97954FEEF954AD102DDD * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_tDC8A34C65EFB98EEB31B97954FEEF954AD102DDD ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_tDC8A34C65EFB98EEB31B97954FEEF954AD102DDD * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__3_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_tDC8A34C65EFB98EEB31B97954FEEF954AD102DDD_StaticFields, ___U3CU3E9__3_0_1)); }
inline Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A * get_U3CU3E9__3_0_1() const { return ___U3CU3E9__3_0_1; }
inline Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A ** get_address_of_U3CU3E9__3_0_1() { return &___U3CU3E9__3_0_1; }
inline void set_U3CU3E9__3_0_1(Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A * value)
{
___U3CU3E9__3_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__3_0_1), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__4_0_2() { return static_cast<int32_t>(offsetof(U3CU3Ec_tDC8A34C65EFB98EEB31B97954FEEF954AD102DDD_StaticFields, ___U3CU3E9__4_0_2)); }
inline Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A * get_U3CU3E9__4_0_2() const { return ___U3CU3E9__4_0_2; }
inline Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A ** get_address_of_U3CU3E9__4_0_2() { return &___U3CU3E9__4_0_2; }
inline void set_U3CU3E9__4_0_2(Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A * value)
{
___U3CU3E9__4_0_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__4_0_2), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__4_1_3() { return static_cast<int32_t>(offsetof(U3CU3Ec_tDC8A34C65EFB98EEB31B97954FEEF954AD102DDD_StaticFields, ___U3CU3E9__4_1_3)); }
inline Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A * get_U3CU3E9__4_1_3() const { return ___U3CU3E9__4_1_3; }
inline Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A ** get_address_of_U3CU3E9__4_1_3() { return &___U3CU3E9__4_1_3; }
inline void set_U3CU3E9__4_1_3(Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A * value)
{
___U3CU3E9__4_1_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__4_1_3), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__5_0_4() { return static_cast<int32_t>(offsetof(U3CU3Ec_tDC8A34C65EFB98EEB31B97954FEEF954AD102DDD_StaticFields, ___U3CU3E9__5_0_4)); }
inline Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A * get_U3CU3E9__5_0_4() const { return ___U3CU3E9__5_0_4; }
inline Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A ** get_address_of_U3CU3E9__5_0_4() { return &___U3CU3E9__5_0_4; }
inline void set_U3CU3E9__5_0_4(Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A * value)
{
___U3CU3E9__5_0_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__5_0_4), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__6_0_5() { return static_cast<int32_t>(offsetof(U3CU3Ec_tDC8A34C65EFB98EEB31B97954FEEF954AD102DDD_StaticFields, ___U3CU3E9__6_0_5)); }
inline Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A * get_U3CU3E9__6_0_5() const { return ___U3CU3E9__6_0_5; }
inline Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A ** get_address_of_U3CU3E9__6_0_5() { return &___U3CU3E9__6_0_5; }
inline void set_U3CU3E9__6_0_5(Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A * value)
{
___U3CU3E9__6_0_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__6_0_5), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__7_0_6() { return static_cast<int32_t>(offsetof(U3CU3Ec_tDC8A34C65EFB98EEB31B97954FEEF954AD102DDD_StaticFields, ___U3CU3E9__7_0_6)); }
inline Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A * get_U3CU3E9__7_0_6() const { return ___U3CU3E9__7_0_6; }
inline Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A ** get_address_of_U3CU3E9__7_0_6() { return &___U3CU3E9__7_0_6; }
inline void set_U3CU3E9__7_0_6(Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A * value)
{
___U3CU3E9__7_0_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__7_0_6), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__7_1_7() { return static_cast<int32_t>(offsetof(U3CU3Ec_tDC8A34C65EFB98EEB31B97954FEEF954AD102DDD_StaticFields, ___U3CU3E9__7_1_7)); }
inline Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A * get_U3CU3E9__7_1_7() const { return ___U3CU3E9__7_1_7; }
inline Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A ** get_address_of_U3CU3E9__7_1_7() { return &___U3CU3E9__7_1_7; }
inline void set_U3CU3E9__7_1_7(Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A * value)
{
___U3CU3E9__7_1_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__7_1_7), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__8_0_8() { return static_cast<int32_t>(offsetof(U3CU3Ec_tDC8A34C65EFB98EEB31B97954FEEF954AD102DDD_StaticFields, ___U3CU3E9__8_0_8)); }
inline Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A * get_U3CU3E9__8_0_8() const { return ___U3CU3E9__8_0_8; }
inline Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A ** get_address_of_U3CU3E9__8_0_8() { return &___U3CU3E9__8_0_8; }
inline void set_U3CU3E9__8_0_8(Func_2_tAFA8DEB76B6DCE8556AB001817DD48C6B0FE7B5A * value)
{
___U3CU3E9__8_0_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__8_0_8), (void*)value);
}
};
// UnityEngine.UI.MaskUtilities
struct MaskUtilities_t28395C0AF1B83B3A798D76DC69B012BB303D9683 : public RuntimeObject
{
public:
public:
};
// UnityEngine.UI.Misc
struct Misc_t87057804A6479127307E42B6C83A4F3244521315 : public RuntimeObject
{
public:
public:
};
// UnityEngine.UI.MultipleDisplayUtilities
struct MultipleDisplayUtilities_t0C0C3B406CC78C2E7A290C62E132CC1BDC3BD31A : public RuntimeObject
{
public:
public:
};
// UnityEngine.UI.RectangularVertexClipper
struct RectangularVertexClipper_t6C47856C4F775A5799A49A100196C2BB14C5DD91 : public RuntimeObject
{
public:
// UnityEngine.Vector3[] UnityEngine.UI.RectangularVertexClipper::m_WorldCorners
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___m_WorldCorners_0;
// UnityEngine.Vector3[] UnityEngine.UI.RectangularVertexClipper::m_CanvasCorners
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___m_CanvasCorners_1;
public:
inline static int32_t get_offset_of_m_WorldCorners_0() { return static_cast<int32_t>(offsetof(RectangularVertexClipper_t6C47856C4F775A5799A49A100196C2BB14C5DD91, ___m_WorldCorners_0)); }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get_m_WorldCorners_0() const { return ___m_WorldCorners_0; }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of_m_WorldCorners_0() { return &___m_WorldCorners_0; }
inline void set_m_WorldCorners_0(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value)
{
___m_WorldCorners_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_WorldCorners_0), (void*)value);
}
inline static int32_t get_offset_of_m_CanvasCorners_1() { return static_cast<int32_t>(offsetof(RectangularVertexClipper_t6C47856C4F775A5799A49A100196C2BB14C5DD91, ___m_CanvasCorners_1)); }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get_m_CanvasCorners_1() const { return ___m_CanvasCorners_1; }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of_m_CanvasCorners_1() { return &___m_CanvasCorners_1; }
inline void set_m_CanvasCorners_1(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value)
{
___m_CanvasCorners_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CanvasCorners_1), (void*)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_Raycast2DCallback UnityEngine.UI.ReflectionMethodsCache::raycast2D
Raycast2DCallback_tE99ABF9ABC3A380677949E8C05A3E477889B82BE * ___raycast2D_2;
// UnityEngine.UI.ReflectionMethodsCache_GetRayIntersectionAllCallback UnityEngine.UI.ReflectionMethodsCache::getRayIntersectionAll
GetRayIntersectionAllCallback_t68C2581CCF05E868297EBD3F3361274954845095 * ___getRayIntersectionAll_3;
// UnityEngine.UI.ReflectionMethodsCache_GetRayIntersectionAllNonAllocCallback UnityEngine.UI.ReflectionMethodsCache::getRayIntersectionAllNonAlloc
GetRayIntersectionAllNonAllocCallback_tAD7508D45DB6679B6394983579AD18D967CC2AD4 * ___getRayIntersectionAllNonAlloc_4;
// UnityEngine.UI.ReflectionMethodsCache_GetRaycastNonAllocCallback UnityEngine.UI.ReflectionMethodsCache::getRaycastNonAlloc
GetRaycastNonAllocCallback_tC13D9767CFF00EAB26E9FCC4BDD505F0721A2B4D * ___getRaycastNonAlloc_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_raycast2D_2() { return static_cast<int32_t>(offsetof(ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A, ___raycast2D_2)); }
inline Raycast2DCallback_tE99ABF9ABC3A380677949E8C05A3E477889B82BE * get_raycast2D_2() const { return ___raycast2D_2; }
inline Raycast2DCallback_tE99ABF9ABC3A380677949E8C05A3E477889B82BE ** get_address_of_raycast2D_2() { return &___raycast2D_2; }
inline void set_raycast2D_2(Raycast2DCallback_tE99ABF9ABC3A380677949E8C05A3E477889B82BE * value)
{
___raycast2D_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___raycast2D_2), (void*)value);
}
inline static int32_t get_offset_of_getRayIntersectionAll_3() { return static_cast<int32_t>(offsetof(ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A, ___getRayIntersectionAll_3)); }
inline GetRayIntersectionAllCallback_t68C2581CCF05E868297EBD3F3361274954845095 * get_getRayIntersectionAll_3() const { return ___getRayIntersectionAll_3; }
inline GetRayIntersectionAllCallback_t68C2581CCF05E868297EBD3F3361274954845095 ** get_address_of_getRayIntersectionAll_3() { return &___getRayIntersectionAll_3; }
inline void set_getRayIntersectionAll_3(GetRayIntersectionAllCallback_t68C2581CCF05E868297EBD3F3361274954845095 * value)
{
___getRayIntersectionAll_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getRayIntersectionAll_3), (void*)value);
}
inline static int32_t get_offset_of_getRayIntersectionAllNonAlloc_4() { return static_cast<int32_t>(offsetof(ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A, ___getRayIntersectionAllNonAlloc_4)); }
inline GetRayIntersectionAllNonAllocCallback_tAD7508D45DB6679B6394983579AD18D967CC2AD4 * get_getRayIntersectionAllNonAlloc_4() const { return ___getRayIntersectionAllNonAlloc_4; }
inline GetRayIntersectionAllNonAllocCallback_tAD7508D45DB6679B6394983579AD18D967CC2AD4 ** get_address_of_getRayIntersectionAllNonAlloc_4() { return &___getRayIntersectionAllNonAlloc_4; }
inline void set_getRayIntersectionAllNonAlloc_4(GetRayIntersectionAllNonAllocCallback_tAD7508D45DB6679B6394983579AD18D967CC2AD4 * value)
{
___getRayIntersectionAllNonAlloc_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getRayIntersectionAllNonAlloc_4), (void*)value);
}
inline static int32_t get_offset_of_getRaycastNonAlloc_5() { return static_cast<int32_t>(offsetof(ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A, ___getRaycastNonAlloc_5)); }
inline GetRaycastNonAllocCallback_tC13D9767CFF00EAB26E9FCC4BDD505F0721A2B4D * get_getRaycastNonAlloc_5() const { return ___getRaycastNonAlloc_5; }
inline GetRaycastNonAllocCallback_tC13D9767CFF00EAB26E9FCC4BDD505F0721A2B4D ** get_address_of_getRaycastNonAlloc_5() { return &___getRaycastNonAlloc_5; }
inline void set_getRaycastNonAlloc_5(GetRaycastNonAllocCallback_tC13D9767CFF00EAB26E9FCC4BDD505F0721A2B4D * value)
{
___getRaycastNonAlloc_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getRaycastNonAlloc_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.UI.Scrollbar_<ClickRepeat>d__57
struct U3CClickRepeatU3Ed__57_t8AEFCC130793890A19566D24B454C47B2705B074 : public RuntimeObject
{
public:
// System.Int32 UnityEngine.UI.Scrollbar_<ClickRepeat>d__57::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object UnityEngine.UI.Scrollbar_<ClickRepeat>d__57::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// UnityEngine.UI.Scrollbar UnityEngine.UI.Scrollbar_<ClickRepeat>d__57::<>4__this
Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 * ___U3CU3E4__this_2;
// UnityEngine.EventSystems.PointerEventData UnityEngine.UI.Scrollbar_<ClickRepeat>d__57::eventData
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___eventData_3;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CClickRepeatU3Ed__57_t8AEFCC130793890A19566D24B454C47B2705B074, ___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(U3CClickRepeatU3Ed__57_t8AEFCC130793890A19566D24B454C47B2705B074, ___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(U3CClickRepeatU3Ed__57_t8AEFCC130793890A19566D24B454C47B2705B074, ___U3CU3E4__this_2)); }
inline Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value);
}
inline static int32_t get_offset_of_eventData_3() { return static_cast<int32_t>(offsetof(U3CClickRepeatU3Ed__57_t8AEFCC130793890A19566D24B454C47B2705B074, ___eventData_3)); }
inline PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * get_eventData_3() const { return ___eventData_3; }
inline PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 ** get_address_of_eventData_3() { return &___eventData_3; }
inline void set_eventData_3(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * value)
{
___eventData_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___eventData_3), (void*)value);
}
};
// UnityEngine.UI.SetPropertyUtility
struct SetPropertyUtility_t20B3FC057E91FD49F7F71279C2DFAAD263E32DEC : public RuntimeObject
{
public:
public:
};
// UnityEngine.UI.StencilMaterial
struct StencilMaterial_t1DC5D1CDE53AF67E74925AC2F4083FD29810D974 : public RuntimeObject
{
public:
public:
};
struct StencilMaterial_t1DC5D1CDE53AF67E74925AC2F4083FD29810D974_StaticFields
{
public:
// System.Collections.Generic.List`1<UnityEngine.UI.StencilMaterial_MatEntry> UnityEngine.UI.StencilMaterial::m_List
List_1_t7B851720E37D51FFDFDB33A438972B614A172598 * ___m_List_0;
public:
inline static int32_t get_offset_of_m_List_0() { return static_cast<int32_t>(offsetof(StencilMaterial_t1DC5D1CDE53AF67E74925AC2F4083FD29810D974_StaticFields, ___m_List_0)); }
inline List_1_t7B851720E37D51FFDFDB33A438972B614A172598 * get_m_List_0() const { return ___m_List_0; }
inline List_1_t7B851720E37D51FFDFDB33A438972B614A172598 ** get_address_of_m_List_0() { return &___m_List_0; }
inline void set_m_List_0(List_1_t7B851720E37D51FFDFDB33A438972B614A172598 * value)
{
___m_List_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_List_0), (void*)value);
}
};
// UnityEngine.UI.ToggleGroup_<>c
struct U3CU3Ec_t97EB3105DF6005EBB830B751CB253A590768A27E : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t97EB3105DF6005EBB830B751CB253A590768A27E_StaticFields
{
public:
// UnityEngine.UI.ToggleGroup_<>c UnityEngine.UI.ToggleGroup_<>c::<>9
U3CU3Ec_t97EB3105DF6005EBB830B751CB253A590768A27E * ___U3CU3E9_0;
// System.Predicate`1<UnityEngine.UI.Toggle> UnityEngine.UI.ToggleGroup_<>c::<>9__12_0
Predicate_1_tA8E3AC24D9760231931712F08CE36FD456FEF163 * ___U3CU3E9__12_0_1;
// System.Func`2<UnityEngine.UI.Toggle,System.Boolean> UnityEngine.UI.ToggleGroup_<>c::<>9__13_0
Func_2_t65673CC739BDD2DED7CFC368C61EF6EA8E101CCC * ___U3CU3E9__13_0_2;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t97EB3105DF6005EBB830B751CB253A590768A27E_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t97EB3105DF6005EBB830B751CB253A590768A27E * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t97EB3105DF6005EBB830B751CB253A590768A27E ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t97EB3105DF6005EBB830B751CB253A590768A27E * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__12_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t97EB3105DF6005EBB830B751CB253A590768A27E_StaticFields, ___U3CU3E9__12_0_1)); }
inline Predicate_1_tA8E3AC24D9760231931712F08CE36FD456FEF163 * get_U3CU3E9__12_0_1() const { return ___U3CU3E9__12_0_1; }
inline Predicate_1_tA8E3AC24D9760231931712F08CE36FD456FEF163 ** get_address_of_U3CU3E9__12_0_1() { return &___U3CU3E9__12_0_1; }
inline void set_U3CU3E9__12_0_1(Predicate_1_tA8E3AC24D9760231931712F08CE36FD456FEF163 * value)
{
___U3CU3E9__12_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__12_0_1), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__13_0_2() { return static_cast<int32_t>(offsetof(U3CU3Ec_t97EB3105DF6005EBB830B751CB253A590768A27E_StaticFields, ___U3CU3E9__13_0_2)); }
inline Func_2_t65673CC739BDD2DED7CFC368C61EF6EA8E101CCC * get_U3CU3E9__13_0_2() const { return ___U3CU3E9__13_0_2; }
inline Func_2_t65673CC739BDD2DED7CFC368C61EF6EA8E101CCC ** get_address_of_U3CU3E9__13_0_2() { return &___U3CU3E9__13_0_2; }
inline void set_U3CU3E9__13_0_2(Func_2_t65673CC739BDD2DED7CFC368C61EF6EA8E101CCC * value)
{
___U3CU3E9__13_0_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__13_0_2), (void*)value);
}
};
// UnityEngine.UISystemProfilerApi
struct UISystemProfilerApi_tD33E558B2D0176096E5DB375956ACA9F03678F1B : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.ARKit.ARKitCameraSubsystem_NativeApi
struct NativeApi_tAC74EBF9B7EAB0504916300254C661F63CF9173A : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.ARKit.ARKitRaycastSubsystem_NativeApi
struct NativeApi_tB7917295BEDEB8E60FC3C8181CFDEB126B4DDB2A : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.ARKit.ARKitSessionSubsystem_NativeApi
struct NativeApi_t164DECAC3F6004936824870871CC817A16AC9050 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.ARKit.ARWorldMapRequestStatusExtensions
struct ARWorldMapRequestStatusExtensions_t8FC86F2BC224C9CCC808FF3B4610B22BE5F8051F : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.ARKit.Api
struct Api_t4000D9F2E2A2012E34CA6CA8B3EA3E0BF565182C : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRCameraSubsystem_IProvider
struct IProvider_t5D7A855308E0C5E8F9175CA7CDEE91F929A5185C : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRDepthSubsystem_IDepthApi
struct IDepthApi_t7CEE33C76911E53220D0242D5E38503D64736BE4 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRPlaneSubsystem_IProvider
struct IProvider_t40982CEC3244CC0C726CED2C27336E95321F7469 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRRaycastSubsystem_IProvider
struct IProvider_tB9DFB2CA3241B1F6107D01753C0F00628994A3ED : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem_IProvider
struct IProvider_tA80639246D0ED291E8332BE2FBC3FE3EA13A4459 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRSessionSubsystem_IProvider
struct IProvider_tCE3A36B52F24E47DF8D9945EAB79493A822E9428 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.iOS.ARBlendShapeLocation
struct ARBlendShapeLocation_tFC9707588C9A2F1B32DB26D9975BC757B030CD1F : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.iOS.ARPlaneAnchorGameObject
struct ARPlaneAnchorGameObject_tE860297A08C63D6BF75F3FB9ABA85475A01DEE91 : public RuntimeObject
{
public:
// UnityEngine.GameObject UnityEngine.XR.iOS.ARPlaneAnchorGameObject::gameObject
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___gameObject_0;
// UnityEngine.XR.iOS.ARPlaneAnchor UnityEngine.XR.iOS.ARPlaneAnchorGameObject::planeAnchor
ARPlaneAnchor_t0FFC0A1F23FF68703D127AFF1D9D11BB18EAC189 * ___planeAnchor_1;
public:
inline static int32_t get_offset_of_gameObject_0() { return static_cast<int32_t>(offsetof(ARPlaneAnchorGameObject_tE860297A08C63D6BF75F3FB9ABA85475A01DEE91, ___gameObject_0)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_gameObject_0() const { return ___gameObject_0; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_gameObject_0() { return &___gameObject_0; }
inline void set_gameObject_0(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___gameObject_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___gameObject_0), (void*)value);
}
inline static int32_t get_offset_of_planeAnchor_1() { return static_cast<int32_t>(offsetof(ARPlaneAnchorGameObject_tE860297A08C63D6BF75F3FB9ABA85475A01DEE91, ___planeAnchor_1)); }
inline ARPlaneAnchor_t0FFC0A1F23FF68703D127AFF1D9D11BB18EAC189 * get_planeAnchor_1() const { return ___planeAnchor_1; }
inline ARPlaneAnchor_t0FFC0A1F23FF68703D127AFF1D9D11BB18EAC189 ** get_address_of_planeAnchor_1() { return &___planeAnchor_1; }
inline void set_planeAnchor_1(ARPlaneAnchor_t0FFC0A1F23FF68703D127AFF1D9D11BB18EAC189 * value)
{
___planeAnchor_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___planeAnchor_1), (void*)value);
}
};
// UnityEngine.XR.iOS.ARReferenceObjectResourceContents
struct ARReferenceObjectResourceContents_tCDCC2FCEAE90A42DFBFB0F1D46EB325E4662F9F8 : public RuntimeObject
{
public:
// UnityEngine.XR.iOS.ARResourceFilename[] UnityEngine.XR.iOS.ARReferenceObjectResourceContents::objects
ARResourceFilenameU5BU5D_t3304F2D2130F9E45C120114FCB057C9749297FA1* ___objects_0;
// UnityEngine.XR.iOS.ARResourceInfo UnityEngine.XR.iOS.ARReferenceObjectResourceContents::info
ARResourceInfo_tCF902105706041249FF478B3AF159B23EA72549A * ___info_1;
// System.String UnityEngine.XR.iOS.ARReferenceObjectResourceContents::referenceObjectName
String_t* ___referenceObjectName_2;
public:
inline static int32_t get_offset_of_objects_0() { return static_cast<int32_t>(offsetof(ARReferenceObjectResourceContents_tCDCC2FCEAE90A42DFBFB0F1D46EB325E4662F9F8, ___objects_0)); }
inline ARResourceFilenameU5BU5D_t3304F2D2130F9E45C120114FCB057C9749297FA1* get_objects_0() const { return ___objects_0; }
inline ARResourceFilenameU5BU5D_t3304F2D2130F9E45C120114FCB057C9749297FA1** get_address_of_objects_0() { return &___objects_0; }
inline void set_objects_0(ARResourceFilenameU5BU5D_t3304F2D2130F9E45C120114FCB057C9749297FA1* value)
{
___objects_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___objects_0), (void*)value);
}
inline static int32_t get_offset_of_info_1() { return static_cast<int32_t>(offsetof(ARReferenceObjectResourceContents_tCDCC2FCEAE90A42DFBFB0F1D46EB325E4662F9F8, ___info_1)); }
inline ARResourceInfo_tCF902105706041249FF478B3AF159B23EA72549A * get_info_1() const { return ___info_1; }
inline ARResourceInfo_tCF902105706041249FF478B3AF159B23EA72549A ** get_address_of_info_1() { return &___info_1; }
inline void set_info_1(ARResourceInfo_tCF902105706041249FF478B3AF159B23EA72549A * value)
{
___info_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___info_1), (void*)value);
}
inline static int32_t get_offset_of_referenceObjectName_2() { return static_cast<int32_t>(offsetof(ARReferenceObjectResourceContents_tCDCC2FCEAE90A42DFBFB0F1D46EB325E4662F9F8, ___referenceObjectName_2)); }
inline String_t* get_referenceObjectName_2() const { return ___referenceObjectName_2; }
inline String_t** get_address_of_referenceObjectName_2() { return &___referenceObjectName_2; }
inline void set_referenceObjectName_2(String_t* value)
{
___referenceObjectName_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___referenceObjectName_2), (void*)value);
}
};
// UnityEngine.XR.iOS.ARResourceContents
struct ARResourceContents_tFA9E34C3F7BEC8563EE6B2ED89472E81E4C11440 : public RuntimeObject
{
public:
// UnityEngine.XR.iOS.ARResourceFilename[] UnityEngine.XR.iOS.ARResourceContents::images
ARResourceFilenameU5BU5D_t3304F2D2130F9E45C120114FCB057C9749297FA1* ___images_0;
// UnityEngine.XR.iOS.ARResourceInfo UnityEngine.XR.iOS.ARResourceContents::info
ARResourceInfo_tCF902105706041249FF478B3AF159B23EA72549A * ___info_1;
// UnityEngine.XR.iOS.ARResourceProperties UnityEngine.XR.iOS.ARResourceContents::properties
ARResourceProperties_t34B02345591C52ECDF193727175869AC15000190 * ___properties_2;
public:
inline static int32_t get_offset_of_images_0() { return static_cast<int32_t>(offsetof(ARResourceContents_tFA9E34C3F7BEC8563EE6B2ED89472E81E4C11440, ___images_0)); }
inline ARResourceFilenameU5BU5D_t3304F2D2130F9E45C120114FCB057C9749297FA1* get_images_0() const { return ___images_0; }
inline ARResourceFilenameU5BU5D_t3304F2D2130F9E45C120114FCB057C9749297FA1** get_address_of_images_0() { return &___images_0; }
inline void set_images_0(ARResourceFilenameU5BU5D_t3304F2D2130F9E45C120114FCB057C9749297FA1* value)
{
___images_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___images_0), (void*)value);
}
inline static int32_t get_offset_of_info_1() { return static_cast<int32_t>(offsetof(ARResourceContents_tFA9E34C3F7BEC8563EE6B2ED89472E81E4C11440, ___info_1)); }
inline ARResourceInfo_tCF902105706041249FF478B3AF159B23EA72549A * get_info_1() const { return ___info_1; }
inline ARResourceInfo_tCF902105706041249FF478B3AF159B23EA72549A ** get_address_of_info_1() { return &___info_1; }
inline void set_info_1(ARResourceInfo_tCF902105706041249FF478B3AF159B23EA72549A * value)
{
___info_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___info_1), (void*)value);
}
inline static int32_t get_offset_of_properties_2() { return static_cast<int32_t>(offsetof(ARResourceContents_tFA9E34C3F7BEC8563EE6B2ED89472E81E4C11440, ___properties_2)); }
inline ARResourceProperties_t34B02345591C52ECDF193727175869AC15000190 * get_properties_2() const { return ___properties_2; }
inline ARResourceProperties_t34B02345591C52ECDF193727175869AC15000190 ** get_address_of_properties_2() { return &___properties_2; }
inline void set_properties_2(ARResourceProperties_t34B02345591C52ECDF193727175869AC15000190 * value)
{
___properties_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___properties_2), (void*)value);
}
};
// UnityEngine.XR.iOS.ARResourceFilename
struct ARResourceFilename_tC94043F3012ADB6F7EBC8C0C62322CCB628C3167 : public RuntimeObject
{
public:
// System.String UnityEngine.XR.iOS.ARResourceFilename::idiom
String_t* ___idiom_0;
// System.String UnityEngine.XR.iOS.ARResourceFilename::filename
String_t* ___filename_1;
public:
inline static int32_t get_offset_of_idiom_0() { return static_cast<int32_t>(offsetof(ARResourceFilename_tC94043F3012ADB6F7EBC8C0C62322CCB628C3167, ___idiom_0)); }
inline String_t* get_idiom_0() const { return ___idiom_0; }
inline String_t** get_address_of_idiom_0() { return &___idiom_0; }
inline void set_idiom_0(String_t* value)
{
___idiom_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___idiom_0), (void*)value);
}
inline static int32_t get_offset_of_filename_1() { return static_cast<int32_t>(offsetof(ARResourceFilename_tC94043F3012ADB6F7EBC8C0C62322CCB628C3167, ___filename_1)); }
inline String_t* get_filename_1() const { return ___filename_1; }
inline String_t** get_address_of_filename_1() { return &___filename_1; }
inline void set_filename_1(String_t* value)
{
___filename_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___filename_1), (void*)value);
}
};
// UnityEngine.XR.iOS.ARResourceGroupContents
struct ARResourceGroupContents_t73146F8D0ED3370BD2423316DA11217FCC3F9F1B : public RuntimeObject
{
public:
// UnityEngine.XR.iOS.ARResourceGroupInfo UnityEngine.XR.iOS.ARResourceGroupContents::info
ARResourceGroupInfo_tEF9D20BC3A4092E969FE01D1A65E013F8CA00038 * ___info_0;
// UnityEngine.XR.iOS.ARResourceGroupResource[] UnityEngine.XR.iOS.ARResourceGroupContents::resources
ARResourceGroupResourceU5BU5D_t59F53DA534A7E17BAC6FDA9356B69E4D3D306373* ___resources_1;
public:
inline static int32_t get_offset_of_info_0() { return static_cast<int32_t>(offsetof(ARResourceGroupContents_t73146F8D0ED3370BD2423316DA11217FCC3F9F1B, ___info_0)); }
inline ARResourceGroupInfo_tEF9D20BC3A4092E969FE01D1A65E013F8CA00038 * get_info_0() const { return ___info_0; }
inline ARResourceGroupInfo_tEF9D20BC3A4092E969FE01D1A65E013F8CA00038 ** get_address_of_info_0() { return &___info_0; }
inline void set_info_0(ARResourceGroupInfo_tEF9D20BC3A4092E969FE01D1A65E013F8CA00038 * value)
{
___info_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___info_0), (void*)value);
}
inline static int32_t get_offset_of_resources_1() { return static_cast<int32_t>(offsetof(ARResourceGroupContents_t73146F8D0ED3370BD2423316DA11217FCC3F9F1B, ___resources_1)); }
inline ARResourceGroupResourceU5BU5D_t59F53DA534A7E17BAC6FDA9356B69E4D3D306373* get_resources_1() const { return ___resources_1; }
inline ARResourceGroupResourceU5BU5D_t59F53DA534A7E17BAC6FDA9356B69E4D3D306373** get_address_of_resources_1() { return &___resources_1; }
inline void set_resources_1(ARResourceGroupResourceU5BU5D_t59F53DA534A7E17BAC6FDA9356B69E4D3D306373* value)
{
___resources_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___resources_1), (void*)value);
}
};
// UnityEngine.XR.iOS.ARResourceGroupInfo
struct ARResourceGroupInfo_tEF9D20BC3A4092E969FE01D1A65E013F8CA00038 : public RuntimeObject
{
public:
// System.Int32 UnityEngine.XR.iOS.ARResourceGroupInfo::version
int32_t ___version_0;
// System.String UnityEngine.XR.iOS.ARResourceGroupInfo::author
String_t* ___author_1;
public:
inline static int32_t get_offset_of_version_0() { return static_cast<int32_t>(offsetof(ARResourceGroupInfo_tEF9D20BC3A4092E969FE01D1A65E013F8CA00038, ___version_0)); }
inline int32_t get_version_0() const { return ___version_0; }
inline int32_t* get_address_of_version_0() { return &___version_0; }
inline void set_version_0(int32_t value)
{
___version_0 = value;
}
inline static int32_t get_offset_of_author_1() { return static_cast<int32_t>(offsetof(ARResourceGroupInfo_tEF9D20BC3A4092E969FE01D1A65E013F8CA00038, ___author_1)); }
inline String_t* get_author_1() const { return ___author_1; }
inline String_t** get_address_of_author_1() { return &___author_1; }
inline void set_author_1(String_t* value)
{
___author_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___author_1), (void*)value);
}
};
// UnityEngine.XR.iOS.ARResourceGroupResource
struct ARResourceGroupResource_t09C96E9644EE5B85A92D15A6FA065211C957CD3E : public RuntimeObject
{
public:
// System.String UnityEngine.XR.iOS.ARResourceGroupResource::filename
String_t* ___filename_0;
public:
inline static int32_t get_offset_of_filename_0() { return static_cast<int32_t>(offsetof(ARResourceGroupResource_t09C96E9644EE5B85A92D15A6FA065211C957CD3E, ___filename_0)); }
inline String_t* get_filename_0() const { return ___filename_0; }
inline String_t** get_address_of_filename_0() { return &___filename_0; }
inline void set_filename_0(String_t* value)
{
___filename_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___filename_0), (void*)value);
}
};
// UnityEngine.XR.iOS.ARResourceInfo
struct ARResourceInfo_tCF902105706041249FF478B3AF159B23EA72549A : public RuntimeObject
{
public:
// System.Int32 UnityEngine.XR.iOS.ARResourceInfo::version
int32_t ___version_0;
// System.String UnityEngine.XR.iOS.ARResourceInfo::author
String_t* ___author_1;
public:
inline static int32_t get_offset_of_version_0() { return static_cast<int32_t>(offsetof(ARResourceInfo_tCF902105706041249FF478B3AF159B23EA72549A, ___version_0)); }
inline int32_t get_version_0() const { return ___version_0; }
inline int32_t* get_address_of_version_0() { return &___version_0; }
inline void set_version_0(int32_t value)
{
___version_0 = value;
}
inline static int32_t get_offset_of_author_1() { return static_cast<int32_t>(offsetof(ARResourceInfo_tCF902105706041249FF478B3AF159B23EA72549A, ___author_1)); }
inline String_t* get_author_1() const { return ___author_1; }
inline String_t** get_address_of_author_1() { return &___author_1; }
inline void set_author_1(String_t* value)
{
___author_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___author_1), (void*)value);
}
};
// UnityEngine.XR.iOS.ARResourceProperties
struct ARResourceProperties_t34B02345591C52ECDF193727175869AC15000190 : public RuntimeObject
{
public:
// System.Single UnityEngine.XR.iOS.ARResourceProperties::width
float ___width_0;
public:
inline static int32_t get_offset_of_width_0() { return static_cast<int32_t>(offsetof(ARResourceProperties_t34B02345591C52ECDF193727175869AC15000190, ___width_0)); }
inline float get_width_0() const { return ___width_0; }
inline float* get_address_of_width_0() { return &___width_0; }
inline void set_width_0(float value)
{
___width_0 = value;
}
};
// UnityEngine.XR.iOS.CompressionHelper
struct CompressionHelper_t2EB33E7F1413E11C0E84A16F96850743F614D7E7 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.iOS.ConnectionMessageIds
struct ConnectionMessageIds_tB952AE377287A0C0EDD96831DADAF2F99223B5FC : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.iOS.SubMessageIds
struct SubMessageIds_t45AEDFFAD0E571ADFE6E8F31B2F23EA204C86288 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARAnchorManager
struct UnityARAnchorManager_tFB8F7E0CB2E8D2A3ED3958659A018DB531A21CD2 : public RuntimeObject
{
public:
// Collections.Hybrid.Generic.LinkedListDictionary`2<System.String,UnityEngine.XR.iOS.ARPlaneAnchorGameObject> UnityEngine.XR.iOS.UnityARAnchorManager::planeAnchorMap
LinkedListDictionary_2_t6F6A17005A09E3BACA73F9AE8E13396AF3DF4F7D * ___planeAnchorMap_0;
public:
inline static int32_t get_offset_of_planeAnchorMap_0() { return static_cast<int32_t>(offsetof(UnityARAnchorManager_tFB8F7E0CB2E8D2A3ED3958659A018DB531A21CD2, ___planeAnchorMap_0)); }
inline LinkedListDictionary_2_t6F6A17005A09E3BACA73F9AE8E13396AF3DF4F7D * get_planeAnchorMap_0() const { return ___planeAnchorMap_0; }
inline LinkedListDictionary_2_t6F6A17005A09E3BACA73F9AE8E13396AF3DF4F7D ** get_address_of_planeAnchorMap_0() { return &___planeAnchorMap_0; }
inline void set_planeAnchorMap_0(LinkedListDictionary_2_t6F6A17005A09E3BACA73F9AE8E13396AF3DF4F7D * value)
{
___planeAnchorMap_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___planeAnchorMap_0), (void*)value);
}
};
// UnityEngine.XR.iOS.UnityAREnvironmentProbeCubemapDataMethods
struct UnityAREnvironmentProbeCubemapDataMethods_tAE9F72B54B0A19E8D7D4CCFD4D3E6F0563DCE722 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARMatrixOps
struct UnityARMatrixOps_t30833E5304F980F26311A1E5A31BC15B6F8D467E : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARUtility
struct UnityARUtility_tC499C2F6B6E8087861555C0B78963033747408D1 : public RuntimeObject
{
public:
// UnityEngine.MeshCollider UnityEngine.XR.iOS.UnityARUtility::meshCollider
MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * ___meshCollider_0;
// UnityEngine.MeshFilter UnityEngine.XR.iOS.UnityARUtility::meshFilter
MeshFilter_t8D4BA8E8723DE5CFF53B0DA5EE2F6B3A5B0E0FE0 * ___meshFilter_1;
public:
inline static int32_t get_offset_of_meshCollider_0() { return static_cast<int32_t>(offsetof(UnityARUtility_tC499C2F6B6E8087861555C0B78963033747408D1, ___meshCollider_0)); }
inline MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * get_meshCollider_0() const { return ___meshCollider_0; }
inline MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE ** get_address_of_meshCollider_0() { return &___meshCollider_0; }
inline void set_meshCollider_0(MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * value)
{
___meshCollider_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___meshCollider_0), (void*)value);
}
inline static int32_t get_offset_of_meshFilter_1() { return static_cast<int32_t>(offsetof(UnityARUtility_tC499C2F6B6E8087861555C0B78963033747408D1, ___meshFilter_1)); }
inline MeshFilter_t8D4BA8E8723DE5CFF53B0DA5EE2F6B3A5B0E0FE0 * get_meshFilter_1() const { return ___meshFilter_1; }
inline MeshFilter_t8D4BA8E8723DE5CFF53B0DA5EE2F6B3A5B0E0FE0 ** get_address_of_meshFilter_1() { return &___meshFilter_1; }
inline void set_meshFilter_1(MeshFilter_t8D4BA8E8723DE5CFF53B0DA5EE2F6B3A5B0E0FE0 * value)
{
___meshFilter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___meshFilter_1), (void*)value);
}
};
struct UnityARUtility_tC499C2F6B6E8087861555C0B78963033747408D1_StaticFields
{
public:
// UnityEngine.GameObject UnityEngine.XR.iOS.UnityARUtility::planePrefab
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___planePrefab_2;
public:
inline static int32_t get_offset_of_planePrefab_2() { return static_cast<int32_t>(offsetof(UnityARUtility_tC499C2F6B6E8087861555C0B78963033747408D1_StaticFields, ___planePrefab_2)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_planePrefab_2() const { return ___planePrefab_2; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_planePrefab_2() { return &___planePrefab_2; }
inline void set_planePrefab_2(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___planePrefab_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___planePrefab_2), (void*)value);
}
};
// UnityEngine.XR.iOS.Utils.ObjectSerializationExtension
struct ObjectSerializationExtension_t45EADA2C583F4A30BF81B7071A5BB75359B44DCD : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.iOS.Utils.SerializableVector4
struct SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 : public RuntimeObject
{
public:
// System.Single UnityEngine.XR.iOS.Utils.SerializableVector4::x
float ___x_0;
// System.Single UnityEngine.XR.iOS.Utils.SerializableVector4::y
float ___y_1;
// System.Single UnityEngine.XR.iOS.Utils.SerializableVector4::z
float ___z_2;
// System.Single UnityEngine.XR.iOS.Utils.SerializableVector4::w
float ___w_3;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028, ___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(SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028, ___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;
}
inline static int32_t get_offset_of_z_2() { return static_cast<int32_t>(offsetof(SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028, ___z_2)); }
inline float get_z_2() const { return ___z_2; }
inline float* get_address_of_z_2() { return &___z_2; }
inline void set_z_2(float value)
{
___z_2 = value;
}
inline static int32_t get_offset_of_w_3() { return static_cast<int32_t>(offsetof(SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028, ___w_3)); }
inline float get_w_3() const { return ___w_3; }
inline float* get_address_of_w_3() { return &___w_3; }
inline void set_w_3(float value)
{
___w_3 = value;
}
};
// UnityEngine.XR.iOS.Utils.serializableFaceGeometry
struct serializableFaceGeometry_t3A98BFDA8DBFA940527E3F5D8578F4F0D7EDA7AE : public RuntimeObject
{
public:
// System.Byte[] UnityEngine.XR.iOS.Utils.serializableFaceGeometry::vertices
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___vertices_0;
// System.Byte[] UnityEngine.XR.iOS.Utils.serializableFaceGeometry::texCoords
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___texCoords_1;
// System.Byte[] UnityEngine.XR.iOS.Utils.serializableFaceGeometry::triIndices
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___triIndices_2;
public:
inline static int32_t get_offset_of_vertices_0() { return static_cast<int32_t>(offsetof(serializableFaceGeometry_t3A98BFDA8DBFA940527E3F5D8578F4F0D7EDA7AE, ___vertices_0)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_vertices_0() const { return ___vertices_0; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_vertices_0() { return &___vertices_0; }
inline void set_vertices_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___vertices_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___vertices_0), (void*)value);
}
inline static int32_t get_offset_of_texCoords_1() { return static_cast<int32_t>(offsetof(serializableFaceGeometry_t3A98BFDA8DBFA940527E3F5D8578F4F0D7EDA7AE, ___texCoords_1)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_texCoords_1() const { return ___texCoords_1; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_texCoords_1() { return &___texCoords_1; }
inline void set_texCoords_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___texCoords_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___texCoords_1), (void*)value);
}
inline static int32_t get_offset_of_triIndices_2() { return static_cast<int32_t>(offsetof(serializableFaceGeometry_t3A98BFDA8DBFA940527E3F5D8578F4F0D7EDA7AE, ___triIndices_2)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_triIndices_2() const { return ___triIndices_2; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_triIndices_2() { return &___triIndices_2; }
inline void set_triIndices_2(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___triIndices_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___triIndices_2), (void*)value);
}
};
// UnityEngine.XR.iOS.Utils.serializablePlaneGeometry
struct serializablePlaneGeometry_t32B3123C8DFA669D8FAE918A37B3B5D9FEBDB3D9 : public RuntimeObject
{
public:
// System.Byte[] UnityEngine.XR.iOS.Utils.serializablePlaneGeometry::vertices
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___vertices_0;
// System.Byte[] UnityEngine.XR.iOS.Utils.serializablePlaneGeometry::texCoords
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___texCoords_1;
// System.Byte[] UnityEngine.XR.iOS.Utils.serializablePlaneGeometry::triIndices
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___triIndices_2;
// System.Byte[] UnityEngine.XR.iOS.Utils.serializablePlaneGeometry::boundaryVertices
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___boundaryVertices_3;
public:
inline static int32_t get_offset_of_vertices_0() { return static_cast<int32_t>(offsetof(serializablePlaneGeometry_t32B3123C8DFA669D8FAE918A37B3B5D9FEBDB3D9, ___vertices_0)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_vertices_0() const { return ___vertices_0; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_vertices_0() { return &___vertices_0; }
inline void set_vertices_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___vertices_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___vertices_0), (void*)value);
}
inline static int32_t get_offset_of_texCoords_1() { return static_cast<int32_t>(offsetof(serializablePlaneGeometry_t32B3123C8DFA669D8FAE918A37B3B5D9FEBDB3D9, ___texCoords_1)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_texCoords_1() const { return ___texCoords_1; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_texCoords_1() { return &___texCoords_1; }
inline void set_texCoords_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___texCoords_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___texCoords_1), (void*)value);
}
inline static int32_t get_offset_of_triIndices_2() { return static_cast<int32_t>(offsetof(serializablePlaneGeometry_t32B3123C8DFA669D8FAE918A37B3B5D9FEBDB3D9, ___triIndices_2)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_triIndices_2() const { return ___triIndices_2; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_triIndices_2() { return &___triIndices_2; }
inline void set_triIndices_2(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___triIndices_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___triIndices_2), (void*)value);
}
inline static int32_t get_offset_of_boundaryVertices_3() { return static_cast<int32_t>(offsetof(serializablePlaneGeometry_t32B3123C8DFA669D8FAE918A37B3B5D9FEBDB3D9, ___boundaryVertices_3)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_boundaryVertices_3() const { return ___boundaryVertices_3; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_boundaryVertices_3() { return &___boundaryVertices_3; }
inline void set_boundaryVertices_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___boundaryVertices_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___boundaryVertices_3), (void*)value);
}
};
// UnityEngine.XR.iOS.Utils.serializablePointCloud
struct serializablePointCloud_tA208EAB380DBE420C8976C2D6F40D2A7D8FA0568 : public RuntimeObject
{
public:
// System.Byte[] UnityEngine.XR.iOS.Utils.serializablePointCloud::pointCloudData
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___pointCloudData_0;
// System.Byte[] UnityEngine.XR.iOS.Utils.serializablePointCloud::pointCloudIds
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___pointCloudIds_1;
public:
inline static int32_t get_offset_of_pointCloudData_0() { return static_cast<int32_t>(offsetof(serializablePointCloud_tA208EAB380DBE420C8976C2D6F40D2A7D8FA0568, ___pointCloudData_0)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_pointCloudData_0() const { return ___pointCloudData_0; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_pointCloudData_0() { return &___pointCloudData_0; }
inline void set_pointCloudData_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___pointCloudData_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___pointCloudData_0), (void*)value);
}
inline static int32_t get_offset_of_pointCloudIds_1() { return static_cast<int32_t>(offsetof(serializablePointCloud_tA208EAB380DBE420C8976C2D6F40D2A7D8FA0568, ___pointCloudIds_1)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_pointCloudIds_1() const { return ___pointCloudIds_1; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_pointCloudIds_1() { return &___pointCloudIds_1; }
inline void set_pointCloudIds_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___pointCloudIds_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___pointCloudIds_1), (void*)value);
}
};
// UnityEngine.XR.iOS.Utils.serializableSHC
struct serializableSHC_t11D048FF521D91D82EA8E41C159D007BA006F651 : public RuntimeObject
{
public:
// System.Byte[] UnityEngine.XR.iOS.Utils.serializableSHC::shcData
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___shcData_0;
public:
inline static int32_t get_offset_of_shcData_0() { return static_cast<int32_t>(offsetof(serializableSHC_t11D048FF521D91D82EA8E41C159D007BA006F651, ___shcData_0)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_shcData_0() const { return ___shcData_0; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_shcData_0() { return &___shcData_0; }
inline void set_shcData_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___shcData_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___shcData_0), (void*)value);
}
};
// UnityEngine.XR.iOS.Utils.serializableUnityARFaceAnchor
struct serializableUnityARFaceAnchor_t722FE8FA6BC7C8DFE3D9041F8570FAA3DC2FFE0C : public RuntimeObject
{
public:
// UnityEngine.XR.iOS.Utils.serializableUnityARMatrix4x4 UnityEngine.XR.iOS.Utils.serializableUnityARFaceAnchor::worldTransform
serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731 * ___worldTransform_0;
// UnityEngine.XR.iOS.Utils.serializableFaceGeometry UnityEngine.XR.iOS.Utils.serializableUnityARFaceAnchor::faceGeometry
serializableFaceGeometry_t3A98BFDA8DBFA940527E3F5D8578F4F0D7EDA7AE * ___faceGeometry_1;
// System.Collections.Generic.Dictionary`2<System.String,System.Single> UnityEngine.XR.iOS.Utils.serializableUnityARFaceAnchor::arBlendShapes
Dictionary_2_t89F484A77FD6673A172CE80BD0A37031FBD1FD6A * ___arBlendShapes_2;
// System.Byte[] UnityEngine.XR.iOS.Utils.serializableUnityARFaceAnchor::identifierStr
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___identifierStr_3;
// System.Boolean UnityEngine.XR.iOS.Utils.serializableUnityARFaceAnchor::isTracked
bool ___isTracked_4;
public:
inline static int32_t get_offset_of_worldTransform_0() { return static_cast<int32_t>(offsetof(serializableUnityARFaceAnchor_t722FE8FA6BC7C8DFE3D9041F8570FAA3DC2FFE0C, ___worldTransform_0)); }
inline serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731 * get_worldTransform_0() const { return ___worldTransform_0; }
inline serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731 ** get_address_of_worldTransform_0() { return &___worldTransform_0; }
inline void set_worldTransform_0(serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731 * value)
{
___worldTransform_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___worldTransform_0), (void*)value);
}
inline static int32_t get_offset_of_faceGeometry_1() { return static_cast<int32_t>(offsetof(serializableUnityARFaceAnchor_t722FE8FA6BC7C8DFE3D9041F8570FAA3DC2FFE0C, ___faceGeometry_1)); }
inline serializableFaceGeometry_t3A98BFDA8DBFA940527E3F5D8578F4F0D7EDA7AE * get_faceGeometry_1() const { return ___faceGeometry_1; }
inline serializableFaceGeometry_t3A98BFDA8DBFA940527E3F5D8578F4F0D7EDA7AE ** get_address_of_faceGeometry_1() { return &___faceGeometry_1; }
inline void set_faceGeometry_1(serializableFaceGeometry_t3A98BFDA8DBFA940527E3F5D8578F4F0D7EDA7AE * value)
{
___faceGeometry_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___faceGeometry_1), (void*)value);
}
inline static int32_t get_offset_of_arBlendShapes_2() { return static_cast<int32_t>(offsetof(serializableUnityARFaceAnchor_t722FE8FA6BC7C8DFE3D9041F8570FAA3DC2FFE0C, ___arBlendShapes_2)); }
inline Dictionary_2_t89F484A77FD6673A172CE80BD0A37031FBD1FD6A * get_arBlendShapes_2() const { return ___arBlendShapes_2; }
inline Dictionary_2_t89F484A77FD6673A172CE80BD0A37031FBD1FD6A ** get_address_of_arBlendShapes_2() { return &___arBlendShapes_2; }
inline void set_arBlendShapes_2(Dictionary_2_t89F484A77FD6673A172CE80BD0A37031FBD1FD6A * value)
{
___arBlendShapes_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___arBlendShapes_2), (void*)value);
}
inline static int32_t get_offset_of_identifierStr_3() { return static_cast<int32_t>(offsetof(serializableUnityARFaceAnchor_t722FE8FA6BC7C8DFE3D9041F8570FAA3DC2FFE0C, ___identifierStr_3)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_identifierStr_3() const { return ___identifierStr_3; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_identifierStr_3() { return &___identifierStr_3; }
inline void set_identifierStr_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___identifierStr_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___identifierStr_3), (void*)value);
}
inline static int32_t get_offset_of_isTracked_4() { return static_cast<int32_t>(offsetof(serializableUnityARFaceAnchor_t722FE8FA6BC7C8DFE3D9041F8570FAA3DC2FFE0C, ___isTracked_4)); }
inline bool get_isTracked_4() const { return ___isTracked_4; }
inline bool* get_address_of_isTracked_4() { return &___isTracked_4; }
inline void set_isTracked_4(bool value)
{
___isTracked_4 = value;
}
};
// UnityEngine.XR.iOS.Utils.serializableUnityARMatrix4x4
struct serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731 : public RuntimeObject
{
public:
// UnityEngine.XR.iOS.Utils.SerializableVector4 UnityEngine.XR.iOS.Utils.serializableUnityARMatrix4x4::column0
SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 * ___column0_0;
// UnityEngine.XR.iOS.Utils.SerializableVector4 UnityEngine.XR.iOS.Utils.serializableUnityARMatrix4x4::column1
SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 * ___column1_1;
// UnityEngine.XR.iOS.Utils.SerializableVector4 UnityEngine.XR.iOS.Utils.serializableUnityARMatrix4x4::column2
SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 * ___column2_2;
// UnityEngine.XR.iOS.Utils.SerializableVector4 UnityEngine.XR.iOS.Utils.serializableUnityARMatrix4x4::column3
SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 * ___column3_3;
public:
inline static int32_t get_offset_of_column0_0() { return static_cast<int32_t>(offsetof(serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731, ___column0_0)); }
inline SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 * get_column0_0() const { return ___column0_0; }
inline SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 ** get_address_of_column0_0() { return &___column0_0; }
inline void set_column0_0(SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 * value)
{
___column0_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___column0_0), (void*)value);
}
inline static int32_t get_offset_of_column1_1() { return static_cast<int32_t>(offsetof(serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731, ___column1_1)); }
inline SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 * get_column1_1() const { return ___column1_1; }
inline SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 ** get_address_of_column1_1() { return &___column1_1; }
inline void set_column1_1(SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 * value)
{
___column1_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___column1_1), (void*)value);
}
inline static int32_t get_offset_of_column2_2() { return static_cast<int32_t>(offsetof(serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731, ___column2_2)); }
inline SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 * get_column2_2() const { return ___column2_2; }
inline SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 ** get_address_of_column2_2() { return &___column2_2; }
inline void set_column2_2(SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 * value)
{
___column2_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___column2_2), (void*)value);
}
inline static int32_t get_offset_of_column3_3() { return static_cast<int32_t>(offsetof(serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731, ___column3_3)); }
inline SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 * get_column3_3() const { return ___column3_3; }
inline SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 ** get_address_of_column3_3() { return &___column3_3; }
inline void set_column3_3(SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 * value)
{
___column3_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___column3_3), (void*)value);
}
};
// UnityEngine.XR.iOS.serializableARReferenceObject
struct serializableARReferenceObject_tD817DDAC81CA76AB183C1DAD4FCDD6C45AF34832 : public RuntimeObject
{
public:
// System.Byte[] UnityEngine.XR.iOS.serializableARReferenceObject::arReferenceObjectData
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___arReferenceObjectData_0;
public:
inline static int32_t get_offset_of_arReferenceObjectData_0() { return static_cast<int32_t>(offsetof(serializableARReferenceObject_tD817DDAC81CA76AB183C1DAD4FCDD6C45AF34832, ___arReferenceObjectData_0)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_arReferenceObjectData_0() const { return ___arReferenceObjectData_0; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_arReferenceObjectData_0() { return &___arReferenceObjectData_0; }
inline void set_arReferenceObjectData_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___arReferenceObjectData_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___arReferenceObjectData_0), (void*)value);
}
};
// UnityEngine.XR.iOS.serializableARWorldMap
struct serializableARWorldMap_t7E10ABE00B8AE4798879ED785B257CF12FDFFFCE : public RuntimeObject
{
public:
// System.Byte[] UnityEngine.XR.iOS.serializableARWorldMap::arWorldMapData
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___arWorldMapData_0;
public:
inline static int32_t get_offset_of_arWorldMapData_0() { return static_cast<int32_t>(offsetof(serializableARWorldMap_t7E10ABE00B8AE4798879ED785B257CF12FDFFFCE, ___arWorldMapData_0)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_arWorldMapData_0() const { return ___arWorldMapData_0; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_arWorldMapData_0() { return &___arWorldMapData_0; }
inline void set_arWorldMapData_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___arWorldMapData_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___arWorldMapData_0), (void*)value);
}
};
// UnityEngineInternal.Input.NativeInputSystem
struct NativeInputSystem_t522F6391494159917EE6963E9E61C9EFA9C5795C : public RuntimeObject
{
public:
public:
};
struct NativeInputSystem_t522F6391494159917EE6963E9E61C9EFA9C5795C_StaticFields
{
public:
// UnityEngineInternal.Input.NativeUpdateCallback UnityEngineInternal.Input.NativeInputSystem::onUpdate
NativeUpdateCallback_tCC4B5A2692C21C00FC2FC1E4EC5280E98423B8D5 * ___onUpdate_0;
// System.Action`1<UnityEngineInternal.Input.NativeInputUpdateType> UnityEngineInternal.Input.NativeInputSystem::onBeforeUpdate
Action_1_tA0A72999A108CE29CD4CB14537B8FE41501859C1 * ___onBeforeUpdate_1;
// System.Func`2<UnityEngineInternal.Input.NativeInputUpdateType,System.Boolean> UnityEngineInternal.Input.NativeInputSystem::onShouldRunUpdate
Func_2_t9A2EAEA48EB870B763F1AB3E671CE2745D638867 * ___onShouldRunUpdate_2;
// System.Action`2<System.Int32,System.String> UnityEngineInternal.Input.NativeInputSystem::s_OnDeviceDiscoveredCallback
Action_2_t3DE7FA14577DE01568F76D409273F315827CAA36 * ___s_OnDeviceDiscoveredCallback_3;
public:
inline static int32_t get_offset_of_onUpdate_0() { return static_cast<int32_t>(offsetof(NativeInputSystem_t522F6391494159917EE6963E9E61C9EFA9C5795C_StaticFields, ___onUpdate_0)); }
inline NativeUpdateCallback_tCC4B5A2692C21C00FC2FC1E4EC5280E98423B8D5 * get_onUpdate_0() const { return ___onUpdate_0; }
inline NativeUpdateCallback_tCC4B5A2692C21C00FC2FC1E4EC5280E98423B8D5 ** get_address_of_onUpdate_0() { return &___onUpdate_0; }
inline void set_onUpdate_0(NativeUpdateCallback_tCC4B5A2692C21C00FC2FC1E4EC5280E98423B8D5 * value)
{
___onUpdate_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onUpdate_0), (void*)value);
}
inline static int32_t get_offset_of_onBeforeUpdate_1() { return static_cast<int32_t>(offsetof(NativeInputSystem_t522F6391494159917EE6963E9E61C9EFA9C5795C_StaticFields, ___onBeforeUpdate_1)); }
inline Action_1_tA0A72999A108CE29CD4CB14537B8FE41501859C1 * get_onBeforeUpdate_1() const { return ___onBeforeUpdate_1; }
inline Action_1_tA0A72999A108CE29CD4CB14537B8FE41501859C1 ** get_address_of_onBeforeUpdate_1() { return &___onBeforeUpdate_1; }
inline void set_onBeforeUpdate_1(Action_1_tA0A72999A108CE29CD4CB14537B8FE41501859C1 * value)
{
___onBeforeUpdate_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onBeforeUpdate_1), (void*)value);
}
inline static int32_t get_offset_of_onShouldRunUpdate_2() { return static_cast<int32_t>(offsetof(NativeInputSystem_t522F6391494159917EE6963E9E61C9EFA9C5795C_StaticFields, ___onShouldRunUpdate_2)); }
inline Func_2_t9A2EAEA48EB870B763F1AB3E671CE2745D638867 * get_onShouldRunUpdate_2() const { return ___onShouldRunUpdate_2; }
inline Func_2_t9A2EAEA48EB870B763F1AB3E671CE2745D638867 ** get_address_of_onShouldRunUpdate_2() { return &___onShouldRunUpdate_2; }
inline void set_onShouldRunUpdate_2(Func_2_t9A2EAEA48EB870B763F1AB3E671CE2745D638867 * value)
{
___onShouldRunUpdate_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onShouldRunUpdate_2), (void*)value);
}
inline static int32_t get_offset_of_s_OnDeviceDiscoveredCallback_3() { return static_cast<int32_t>(offsetof(NativeInputSystem_t522F6391494159917EE6963E9E61C9EFA9C5795C_StaticFields, ___s_OnDeviceDiscoveredCallback_3)); }
inline Action_2_t3DE7FA14577DE01568F76D409273F315827CAA36 * get_s_OnDeviceDiscoveredCallback_3() const { return ___s_OnDeviceDiscoveredCallback_3; }
inline Action_2_t3DE7FA14577DE01568F76D409273F315827CAA36 ** get_address_of_s_OnDeviceDiscoveredCallback_3() { return &___s_OnDeviceDiscoveredCallback_3; }
inline void set_s_OnDeviceDiscoveredCallback_3(Action_2_t3DE7FA14577DE01568F76D409273F315827CAA36 * value)
{
___s_OnDeviceDiscoveredCallback_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_OnDeviceDiscoveredCallback_3), (void*)value);
}
};
// UnityEngineInternal.WebRequestUtils
struct WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296 : public RuntimeObject
{
public:
public:
};
struct WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_StaticFields
{
public:
// System.Text.RegularExpressions.Regex UnityEngineInternal.WebRequestUtils::domainRegex
Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF * ___domainRegex_0;
public:
inline static int32_t get_offset_of_domainRegex_0() { return static_cast<int32_t>(offsetof(WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_StaticFields, ___domainRegex_0)); }
inline Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF * get_domainRegex_0() const { return ___domainRegex_0; }
inline Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF ** get_address_of_domainRegex_0() { return &___domainRegex_0; }
inline void set_domainRegex_0(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF * value)
{
___domainRegex_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___domainRegex_0), (void*)value);
}
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12
struct __StaticArrayInitTypeSizeU3D12_t7F98A3A922EF4B6DA62C3CF2D4E5897EED2C26B8
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D12_t7F98A3A922EF4B6DA62C3CF2D4E5897EED2C26B8__padding[12];
};
public:
};
// DigitalRuby.PyroParticles.RangeOfFloats
struct RangeOfFloats_t76ACB04A2C313C41EE04ED57A2F0E2A9F30EA4F9
{
public:
// System.Single DigitalRuby.PyroParticles.RangeOfFloats::Minimum
float ___Minimum_0;
// System.Single DigitalRuby.PyroParticles.RangeOfFloats::Maximum
float ___Maximum_1;
public:
inline static int32_t get_offset_of_Minimum_0() { return static_cast<int32_t>(offsetof(RangeOfFloats_t76ACB04A2C313C41EE04ED57A2F0E2A9F30EA4F9, ___Minimum_0)); }
inline float get_Minimum_0() const { return ___Minimum_0; }
inline float* get_address_of_Minimum_0() { return &___Minimum_0; }
inline void set_Minimum_0(float value)
{
___Minimum_0 = value;
}
inline static int32_t get_offset_of_Maximum_1() { return static_cast<int32_t>(offsetof(RangeOfFloats_t76ACB04A2C313C41EE04ED57A2F0E2A9F30EA4F9, ___Maximum_1)); }
inline float get_Maximum_1() const { return ___Maximum_1; }
inline float* get_address_of_Maximum_1() { return &___Maximum_1; }
inline void set_Maximum_1(float value)
{
___Maximum_1 = value;
}
};
// DigitalRuby.PyroParticles.RangeOfIntegers
struct RangeOfIntegers_t7BF24CBD78B99ECC713A5FAD8C4CF8345BD8C041
{
public:
// System.Int32 DigitalRuby.PyroParticles.RangeOfIntegers::Minimum
int32_t ___Minimum_0;
// System.Int32 DigitalRuby.PyroParticles.RangeOfIntegers::Maximum
int32_t ___Maximum_1;
public:
inline static int32_t get_offset_of_Minimum_0() { return static_cast<int32_t>(offsetof(RangeOfIntegers_t7BF24CBD78B99ECC713A5FAD8C4CF8345BD8C041, ___Minimum_0)); }
inline int32_t get_Minimum_0() const { return ___Minimum_0; }
inline int32_t* get_address_of_Minimum_0() { return &___Minimum_0; }
inline void set_Minimum_0(int32_t value)
{
___Minimum_0 = value;
}
inline static int32_t get_offset_of_Maximum_1() { return static_cast<int32_t>(offsetof(RangeOfIntegers_t7BF24CBD78B99ECC713A5FAD8C4CF8345BD8C041, ___Maximum_1)); }
inline int32_t get_Maximum_1() const { return ___Maximum_1; }
inline int32_t* get_address_of_Maximum_1() { return &___Maximum_1; }
inline void set_Maximum_1(int32_t value)
{
___Maximum_1 = value;
}
};
// HsvColor
struct HsvColor_t86712029C0DDC51AF171EA028A250A63AF647224
{
public:
// System.Double HsvColor::H
double ___H_0;
// System.Double HsvColor::S
double ___S_1;
// System.Double HsvColor::V
double ___V_2;
public:
inline static int32_t get_offset_of_H_0() { return static_cast<int32_t>(offsetof(HsvColor_t86712029C0DDC51AF171EA028A250A63AF647224, ___H_0)); }
inline double get_H_0() const { return ___H_0; }
inline double* get_address_of_H_0() { return &___H_0; }
inline void set_H_0(double value)
{
___H_0 = value;
}
inline static int32_t get_offset_of_S_1() { return static_cast<int32_t>(offsetof(HsvColor_t86712029C0DDC51AF171EA028A250A63AF647224, ___S_1)); }
inline double get_S_1() const { return ___S_1; }
inline double* get_address_of_S_1() { return &___S_1; }
inline void set_S_1(double value)
{
___S_1 = value;
}
inline static int32_t get_offset_of_V_2() { return static_cast<int32_t>(offsetof(HsvColor_t86712029C0DDC51AF171EA028A250A63AF647224, ___V_2)); }
inline double get_V_2() const { return ___V_2; }
inline double* get_address_of_V_2() { return &___V_2; }
inline void set_V_2(double value)
{
___V_2 = value;
}
};
// 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.Char
struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9
{
public:
// System.Char System.Char::m_value
Il2CppChar ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9, ___m_value_0)); }
inline Il2CppChar get_m_value_0() const { return ___m_value_0; }
inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(Il2CppChar value)
{
___m_value_0 = value;
}
};
struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields
{
public:
// System.Byte[] System.Char::categoryForLatin1
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___categoryForLatin1_3;
public:
inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields, ___categoryForLatin1_3)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; }
inline void set_categoryForLatin1_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___categoryForLatin1_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value);
}
};
// System.DateTime
struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132
{
public:
// System.UInt64 System.DateTime::dateData
uint64_t ___dateData_44;
public:
inline static int32_t get_offset_of_dateData_44() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, ___dateData_44)); }
inline uint64_t get_dateData_44() const { return ___dateData_44; }
inline uint64_t* get_address_of_dateData_44() { return &___dateData_44; }
inline void set_dateData_44(uint64_t value)
{
___dateData_44 = value;
}
};
struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields
{
public:
// System.Int32[] System.DateTime::DaysToMonth365
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth365_29;
// System.Int32[] System.DateTime::DaysToMonth366
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth366_30;
// System.DateTime System.DateTime::MinValue
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MinValue_31;
// System.DateTime System.DateTime::MaxValue
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MaxValue_32;
public:
inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth365_29)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; }
inline void set_DaysToMonth365_29(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___DaysToMonth365_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth365_29), (void*)value);
}
inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth366_30)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; }
inline void set_DaysToMonth366_30(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___DaysToMonth366_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth366_30), (void*)value);
}
inline static int32_t get_offset_of_MinValue_31() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MinValue_31)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MinValue_31() const { return ___MinValue_31; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MinValue_31() { return &___MinValue_31; }
inline void set_MinValue_31(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___MinValue_31 = value;
}
inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MaxValue_32)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MaxValue_32() const { return ___MaxValue_32; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MaxValue_32() { return &___MaxValue_32; }
inline void set_MaxValue_32(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___MaxValue_32 = 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.Guid
struct Guid_t
{
public:
// System.Int32 System.Guid::_a
int32_t ____a_1;
// System.Int16 System.Guid::_b
int16_t ____b_2;
// System.Int16 System.Guid::_c
int16_t ____c_3;
// System.Byte System.Guid::_d
uint8_t ____d_4;
// System.Byte System.Guid::_e
uint8_t ____e_5;
// System.Byte System.Guid::_f
uint8_t ____f_6;
// System.Byte System.Guid::_g
uint8_t ____g_7;
// System.Byte System.Guid::_h
uint8_t ____h_8;
// System.Byte System.Guid::_i
uint8_t ____i_9;
// System.Byte System.Guid::_j
uint8_t ____j_10;
// System.Byte System.Guid::_k
uint8_t ____k_11;
public:
inline static int32_t get_offset_of__a_1() { return static_cast<int32_t>(offsetof(Guid_t, ____a_1)); }
inline int32_t get__a_1() const { return ____a_1; }
inline int32_t* get_address_of__a_1() { return &____a_1; }
inline void set__a_1(int32_t value)
{
____a_1 = value;
}
inline static int32_t get_offset_of__b_2() { return static_cast<int32_t>(offsetof(Guid_t, ____b_2)); }
inline int16_t get__b_2() const { return ____b_2; }
inline int16_t* get_address_of__b_2() { return &____b_2; }
inline void set__b_2(int16_t value)
{
____b_2 = value;
}
inline static int32_t get_offset_of__c_3() { return static_cast<int32_t>(offsetof(Guid_t, ____c_3)); }
inline int16_t get__c_3() const { return ____c_3; }
inline int16_t* get_address_of__c_3() { return &____c_3; }
inline void set__c_3(int16_t value)
{
____c_3 = value;
}
inline static int32_t get_offset_of__d_4() { return static_cast<int32_t>(offsetof(Guid_t, ____d_4)); }
inline uint8_t get__d_4() const { return ____d_4; }
inline uint8_t* get_address_of__d_4() { return &____d_4; }
inline void set__d_4(uint8_t value)
{
____d_4 = value;
}
inline static int32_t get_offset_of__e_5() { return static_cast<int32_t>(offsetof(Guid_t, ____e_5)); }
inline uint8_t get__e_5() const { return ____e_5; }
inline uint8_t* get_address_of__e_5() { return &____e_5; }
inline void set__e_5(uint8_t value)
{
____e_5 = value;
}
inline static int32_t get_offset_of__f_6() { return static_cast<int32_t>(offsetof(Guid_t, ____f_6)); }
inline uint8_t get__f_6() const { return ____f_6; }
inline uint8_t* get_address_of__f_6() { return &____f_6; }
inline void set__f_6(uint8_t value)
{
____f_6 = value;
}
inline static int32_t get_offset_of__g_7() { return static_cast<int32_t>(offsetof(Guid_t, ____g_7)); }
inline uint8_t get__g_7() const { return ____g_7; }
inline uint8_t* get_address_of__g_7() { return &____g_7; }
inline void set__g_7(uint8_t value)
{
____g_7 = value;
}
inline static int32_t get_offset_of__h_8() { return static_cast<int32_t>(offsetof(Guid_t, ____h_8)); }
inline uint8_t get__h_8() const { return ____h_8; }
inline uint8_t* get_address_of__h_8() { return &____h_8; }
inline void set__h_8(uint8_t value)
{
____h_8 = value;
}
inline static int32_t get_offset_of__i_9() { return static_cast<int32_t>(offsetof(Guid_t, ____i_9)); }
inline uint8_t get__i_9() const { return ____i_9; }
inline uint8_t* get_address_of__i_9() { return &____i_9; }
inline void set__i_9(uint8_t value)
{
____i_9 = value;
}
inline static int32_t get_offset_of__j_10() { return static_cast<int32_t>(offsetof(Guid_t, ____j_10)); }
inline uint8_t get__j_10() const { return ____j_10; }
inline uint8_t* get_address_of__j_10() { return &____j_10; }
inline void set__j_10(uint8_t value)
{
____j_10 = value;
}
inline static int32_t get_offset_of__k_11() { return static_cast<int32_t>(offsetof(Guid_t, ____k_11)); }
inline uint8_t get__k_11() const { return ____k_11; }
inline uint8_t* get_address_of__k_11() { return &____k_11; }
inline void set__k_11(uint8_t value)
{
____k_11 = value;
}
};
struct Guid_t_StaticFields
{
public:
// System.Guid System.Guid::Empty
Guid_t ___Empty_0;
// System.Object System.Guid::_rngAccess
RuntimeObject * ____rngAccess_12;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ____rng_13;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); }
inline Guid_t get_Empty_0() const { return ___Empty_0; }
inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(Guid_t value)
{
___Empty_0 = value;
}
inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); }
inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; }
inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; }
inline void set__rngAccess_12(RuntimeObject * value)
{
____rngAccess_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rngAccess_12), (void*)value);
}
inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); }
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * get__rng_13() const { return ____rng_13; }
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 ** get_address_of__rng_13() { return &____rng_13; }
inline void set__rng_13(RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * value)
{
____rng_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rng_13), (void*)value);
}
};
// 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.Int64
struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436
{
public:
// System.Int64 System.Int64::m_value
int64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, ___m_value_0)); }
inline int64_t get_m_value_0() const { return ___m_value_0; }
inline int64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int64_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.Runtime.InteropServices.GCHandle
struct GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3
{
public:
// System.Int32 System.Runtime.InteropServices.GCHandle::handle
int32_t ___handle_0;
public:
inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3, ___handle_0)); }
inline int32_t get_handle_0() const { return ___handle_0; }
inline int32_t* get_address_of_handle_0() { return &___handle_0; }
inline void set_handle_0(int32_t value)
{
___handle_0 = 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.UInt32
struct UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B
{
public:
// System.UInt32 System.UInt32::m_value
uint32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B, ___m_value_0)); }
inline uint32_t get_m_value_0() const { return ___m_value_0; }
inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint32_t value)
{
___m_value_0 = value;
}
};
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017
{
public:
union
{
struct
{
};
uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1];
};
public:
};
// UnityEngine.Animations.NotKeyableAttribute
struct NotKeyableAttribute_tC0F8DAA85C33BBE045EFE59BB65D9A060D4282BE : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
public:
};
// UnityEngine.AnimatorClipInfo
struct AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180
{
public:
// System.Int32 UnityEngine.AnimatorClipInfo::m_ClipInstanceID
int32_t ___m_ClipInstanceID_0;
// System.Single UnityEngine.AnimatorClipInfo::m_Weight
float ___m_Weight_1;
public:
inline static int32_t get_offset_of_m_ClipInstanceID_0() { return static_cast<int32_t>(offsetof(AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180, ___m_ClipInstanceID_0)); }
inline int32_t get_m_ClipInstanceID_0() const { return ___m_ClipInstanceID_0; }
inline int32_t* get_address_of_m_ClipInstanceID_0() { return &___m_ClipInstanceID_0; }
inline void set_m_ClipInstanceID_0(int32_t value)
{
___m_ClipInstanceID_0 = value;
}
inline static int32_t get_offset_of_m_Weight_1() { return static_cast<int32_t>(offsetof(AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180, ___m_Weight_1)); }
inline float get_m_Weight_1() const { return ___m_Weight_1; }
inline float* get_address_of_m_Weight_1() { return &___m_Weight_1; }
inline void set_m_Weight_1(float value)
{
___m_Weight_1 = value;
}
};
// UnityEngine.AnimatorStateInfo
struct AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2
{
public:
// System.Int32 UnityEngine.AnimatorStateInfo::m_Name
int32_t ___m_Name_0;
// System.Int32 UnityEngine.AnimatorStateInfo::m_Path
int32_t ___m_Path_1;
// System.Int32 UnityEngine.AnimatorStateInfo::m_FullPath
int32_t ___m_FullPath_2;
// System.Single UnityEngine.AnimatorStateInfo::m_NormalizedTime
float ___m_NormalizedTime_3;
// System.Single UnityEngine.AnimatorStateInfo::m_Length
float ___m_Length_4;
// System.Single UnityEngine.AnimatorStateInfo::m_Speed
float ___m_Speed_5;
// System.Single UnityEngine.AnimatorStateInfo::m_SpeedMultiplier
float ___m_SpeedMultiplier_6;
// System.Int32 UnityEngine.AnimatorStateInfo::m_Tag
int32_t ___m_Tag_7;
// System.Int32 UnityEngine.AnimatorStateInfo::m_Loop
int32_t ___m_Loop_8;
public:
inline static int32_t get_offset_of_m_Name_0() { return static_cast<int32_t>(offsetof(AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2, ___m_Name_0)); }
inline int32_t get_m_Name_0() const { return ___m_Name_0; }
inline int32_t* get_address_of_m_Name_0() { return &___m_Name_0; }
inline void set_m_Name_0(int32_t value)
{
___m_Name_0 = value;
}
inline static int32_t get_offset_of_m_Path_1() { return static_cast<int32_t>(offsetof(AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2, ___m_Path_1)); }
inline int32_t get_m_Path_1() const { return ___m_Path_1; }
inline int32_t* get_address_of_m_Path_1() { return &___m_Path_1; }
inline void set_m_Path_1(int32_t value)
{
___m_Path_1 = value;
}
inline static int32_t get_offset_of_m_FullPath_2() { return static_cast<int32_t>(offsetof(AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2, ___m_FullPath_2)); }
inline int32_t get_m_FullPath_2() const { return ___m_FullPath_2; }
inline int32_t* get_address_of_m_FullPath_2() { return &___m_FullPath_2; }
inline void set_m_FullPath_2(int32_t value)
{
___m_FullPath_2 = value;
}
inline static int32_t get_offset_of_m_NormalizedTime_3() { return static_cast<int32_t>(offsetof(AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2, ___m_NormalizedTime_3)); }
inline float get_m_NormalizedTime_3() const { return ___m_NormalizedTime_3; }
inline float* get_address_of_m_NormalizedTime_3() { return &___m_NormalizedTime_3; }
inline void set_m_NormalizedTime_3(float value)
{
___m_NormalizedTime_3 = value;
}
inline static int32_t get_offset_of_m_Length_4() { return static_cast<int32_t>(offsetof(AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2, ___m_Length_4)); }
inline float get_m_Length_4() const { return ___m_Length_4; }
inline float* get_address_of_m_Length_4() { return &___m_Length_4; }
inline void set_m_Length_4(float value)
{
___m_Length_4 = value;
}
inline static int32_t get_offset_of_m_Speed_5() { return static_cast<int32_t>(offsetof(AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2, ___m_Speed_5)); }
inline float get_m_Speed_5() const { return ___m_Speed_5; }
inline float* get_address_of_m_Speed_5() { return &___m_Speed_5; }
inline void set_m_Speed_5(float value)
{
___m_Speed_5 = value;
}
inline static int32_t get_offset_of_m_SpeedMultiplier_6() { return static_cast<int32_t>(offsetof(AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2, ___m_SpeedMultiplier_6)); }
inline float get_m_SpeedMultiplier_6() const { return ___m_SpeedMultiplier_6; }
inline float* get_address_of_m_SpeedMultiplier_6() { return &___m_SpeedMultiplier_6; }
inline void set_m_SpeedMultiplier_6(float value)
{
___m_SpeedMultiplier_6 = value;
}
inline static int32_t get_offset_of_m_Tag_7() { return static_cast<int32_t>(offsetof(AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2, ___m_Tag_7)); }
inline int32_t get_m_Tag_7() const { return ___m_Tag_7; }
inline int32_t* get_address_of_m_Tag_7() { return &___m_Tag_7; }
inline void set_m_Tag_7(int32_t value)
{
___m_Tag_7 = value;
}
inline static int32_t get_offset_of_m_Loop_8() { return static_cast<int32_t>(offsetof(AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2, ___m_Loop_8)); }
inline int32_t get_m_Loop_8() const { return ___m_Loop_8; }
inline int32_t* get_address_of_m_Loop_8() { return &___m_Loop_8; }
inline void set_m_Loop_8(int32_t value)
{
___m_Loop_8 = value;
}
};
// UnityEngine.AnimatorTransitionInfo
struct AnimatorTransitionInfo_t66D37578B8898C817BD5A5781B420BF92F60AA6B
{
public:
// System.Int32 UnityEngine.AnimatorTransitionInfo::m_FullPath
int32_t ___m_FullPath_0;
// System.Int32 UnityEngine.AnimatorTransitionInfo::m_UserName
int32_t ___m_UserName_1;
// System.Int32 UnityEngine.AnimatorTransitionInfo::m_Name
int32_t ___m_Name_2;
// System.Boolean UnityEngine.AnimatorTransitionInfo::m_HasFixedDuration
bool ___m_HasFixedDuration_3;
// System.Single UnityEngine.AnimatorTransitionInfo::m_Duration
float ___m_Duration_4;
// System.Single UnityEngine.AnimatorTransitionInfo::m_NormalizedTime
float ___m_NormalizedTime_5;
// System.Boolean UnityEngine.AnimatorTransitionInfo::m_AnyState
bool ___m_AnyState_6;
// System.Int32 UnityEngine.AnimatorTransitionInfo::m_TransitionType
int32_t ___m_TransitionType_7;
public:
inline static int32_t get_offset_of_m_FullPath_0() { return static_cast<int32_t>(offsetof(AnimatorTransitionInfo_t66D37578B8898C817BD5A5781B420BF92F60AA6B, ___m_FullPath_0)); }
inline int32_t get_m_FullPath_0() const { return ___m_FullPath_0; }
inline int32_t* get_address_of_m_FullPath_0() { return &___m_FullPath_0; }
inline void set_m_FullPath_0(int32_t value)
{
___m_FullPath_0 = value;
}
inline static int32_t get_offset_of_m_UserName_1() { return static_cast<int32_t>(offsetof(AnimatorTransitionInfo_t66D37578B8898C817BD5A5781B420BF92F60AA6B, ___m_UserName_1)); }
inline int32_t get_m_UserName_1() const { return ___m_UserName_1; }
inline int32_t* get_address_of_m_UserName_1() { return &___m_UserName_1; }
inline void set_m_UserName_1(int32_t value)
{
___m_UserName_1 = value;
}
inline static int32_t get_offset_of_m_Name_2() { return static_cast<int32_t>(offsetof(AnimatorTransitionInfo_t66D37578B8898C817BD5A5781B420BF92F60AA6B, ___m_Name_2)); }
inline int32_t get_m_Name_2() const { return ___m_Name_2; }
inline int32_t* get_address_of_m_Name_2() { return &___m_Name_2; }
inline void set_m_Name_2(int32_t value)
{
___m_Name_2 = value;
}
inline static int32_t get_offset_of_m_HasFixedDuration_3() { return static_cast<int32_t>(offsetof(AnimatorTransitionInfo_t66D37578B8898C817BD5A5781B420BF92F60AA6B, ___m_HasFixedDuration_3)); }
inline bool get_m_HasFixedDuration_3() const { return ___m_HasFixedDuration_3; }
inline bool* get_address_of_m_HasFixedDuration_3() { return &___m_HasFixedDuration_3; }
inline void set_m_HasFixedDuration_3(bool value)
{
___m_HasFixedDuration_3 = value;
}
inline static int32_t get_offset_of_m_Duration_4() { return static_cast<int32_t>(offsetof(AnimatorTransitionInfo_t66D37578B8898C817BD5A5781B420BF92F60AA6B, ___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_NormalizedTime_5() { return static_cast<int32_t>(offsetof(AnimatorTransitionInfo_t66D37578B8898C817BD5A5781B420BF92F60AA6B, ___m_NormalizedTime_5)); }
inline float get_m_NormalizedTime_5() const { return ___m_NormalizedTime_5; }
inline float* get_address_of_m_NormalizedTime_5() { return &___m_NormalizedTime_5; }
inline void set_m_NormalizedTime_5(float value)
{
___m_NormalizedTime_5 = value;
}
inline static int32_t get_offset_of_m_AnyState_6() { return static_cast<int32_t>(offsetof(AnimatorTransitionInfo_t66D37578B8898C817BD5A5781B420BF92F60AA6B, ___m_AnyState_6)); }
inline bool get_m_AnyState_6() const { return ___m_AnyState_6; }
inline bool* get_address_of_m_AnyState_6() { return &___m_AnyState_6; }
inline void set_m_AnyState_6(bool value)
{
___m_AnyState_6 = value;
}
inline static int32_t get_offset_of_m_TransitionType_7() { return static_cast<int32_t>(offsetof(AnimatorTransitionInfo_t66D37578B8898C817BD5A5781B420BF92F60AA6B, ___m_TransitionType_7)); }
inline int32_t get_m_TransitionType_7() const { return ___m_TransitionType_7; }
inline int32_t* get_address_of_m_TransitionType_7() { return &___m_TransitionType_7; }
inline void set_m_TransitionType_7(int32_t value)
{
___m_TransitionType_7 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.AnimatorTransitionInfo
struct AnimatorTransitionInfo_t66D37578B8898C817BD5A5781B420BF92F60AA6B_marshaled_pinvoke
{
int32_t ___m_FullPath_0;
int32_t ___m_UserName_1;
int32_t ___m_Name_2;
int32_t ___m_HasFixedDuration_3;
float ___m_Duration_4;
float ___m_NormalizedTime_5;
int32_t ___m_AnyState_6;
int32_t ___m_TransitionType_7;
};
// Native definition for COM marshalling of UnityEngine.AnimatorTransitionInfo
struct AnimatorTransitionInfo_t66D37578B8898C817BD5A5781B420BF92F60AA6B_marshaled_com
{
int32_t ___m_FullPath_0;
int32_t ___m_UserName_1;
int32_t ___m_Name_2;
int32_t ___m_HasFixedDuration_3;
float ___m_Duration_4;
float ___m_NormalizedTime_5;
int32_t ___m_AnyState_6;
int32_t ___m_TransitionType_7;
};
// 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<System.String>
struct UnityEvent_1_t890F45761F13DD1B3D58738365827FDB6629BA7F : 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_t890F45761F13DD1B3D58738365827FDB6629BA7F, ___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.Events.UnityEvent`1<UnityEngine.Vector2>
struct UnityEvent_1_t60552D56FE9D9EC7B17849EE5D16EF96110E69A0 : 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_t60552D56FE9D9EC7B17849EE5D16EF96110E69A0, ___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`2<System.Single,System.Single>
struct UnityEvent_2_t275A853AC2E1194D9AA46DA2DA260EA19718E746 : public UnityEventBase_t6E0F7823762EE94BB8489B5AE41C7802A266D3D5
{
public:
// System.Object[] UnityEngine.Events.UnityEvent`2::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_2_t275A853AC2E1194D9AA46DA2DA260EA19718E746, ___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`3<System.Single,System.Single,System.Single>
struct UnityEvent_3_t7FACEC2E14577E663C491716C8B2AE54977FEF4C : public UnityEventBase_t6E0F7823762EE94BB8489B5AE41C7802A266D3D5
{
public:
// System.Object[] UnityEngine.Events.UnityEvent`3::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_3_t7FACEC2E14577E663C491716C8B2AE54977FEF4C, ___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.Experimental.XR.FrameReceivedEventArgs
struct FrameReceivedEventArgs_t4637B6D2FC28197602B18C1815C4A778645479DD
{
public:
// UnityEngine.Experimental.XR.XRCameraSubsystem UnityEngine.Experimental.XR.FrameReceivedEventArgs::m_CameraSubsystem
XRCameraSubsystem_t9271DB5D8FEDD3431246FCB6D9257A940246E701 * ___m_CameraSubsystem_0;
public:
inline static int32_t get_offset_of_m_CameraSubsystem_0() { return static_cast<int32_t>(offsetof(FrameReceivedEventArgs_t4637B6D2FC28197602B18C1815C4A778645479DD, ___m_CameraSubsystem_0)); }
inline XRCameraSubsystem_t9271DB5D8FEDD3431246FCB6D9257A940246E701 * get_m_CameraSubsystem_0() const { return ___m_CameraSubsystem_0; }
inline XRCameraSubsystem_t9271DB5D8FEDD3431246FCB6D9257A940246E701 ** get_address_of_m_CameraSubsystem_0() { return &___m_CameraSubsystem_0; }
inline void set_m_CameraSubsystem_0(XRCameraSubsystem_t9271DB5D8FEDD3431246FCB6D9257A940246E701 * value)
{
___m_CameraSubsystem_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CameraSubsystem_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Experimental.XR.FrameReceivedEventArgs
struct FrameReceivedEventArgs_t4637B6D2FC28197602B18C1815C4A778645479DD_marshaled_pinvoke
{
XRCameraSubsystem_t9271DB5D8FEDD3431246FCB6D9257A940246E701 * ___m_CameraSubsystem_0;
};
// Native definition for COM marshalling of UnityEngine.Experimental.XR.FrameReceivedEventArgs
struct FrameReceivedEventArgs_t4637B6D2FC28197602B18C1815C4A778645479DD_marshaled_com
{
XRCameraSubsystem_t9271DB5D8FEDD3431246FCB6D9257A940246E701 * ___m_CameraSubsystem_0;
};
// UnityEngine.Experimental.XR.PointCloudUpdatedEventArgs
struct PointCloudUpdatedEventArgs_tE7E1E32A6042806B927B110250C0D4FE755C6B07
{
public:
// UnityEngine.Experimental.XR.XRDepthSubsystem UnityEngine.Experimental.XR.PointCloudUpdatedEventArgs::m_DepthSubsystem
XRDepthSubsystem_t1F42ECBC6085EFA6909640A9521920C55444D089 * ___m_DepthSubsystem_0;
public:
inline static int32_t get_offset_of_m_DepthSubsystem_0() { return static_cast<int32_t>(offsetof(PointCloudUpdatedEventArgs_tE7E1E32A6042806B927B110250C0D4FE755C6B07, ___m_DepthSubsystem_0)); }
inline XRDepthSubsystem_t1F42ECBC6085EFA6909640A9521920C55444D089 * get_m_DepthSubsystem_0() const { return ___m_DepthSubsystem_0; }
inline XRDepthSubsystem_t1F42ECBC6085EFA6909640A9521920C55444D089 ** get_address_of_m_DepthSubsystem_0() { return &___m_DepthSubsystem_0; }
inline void set_m_DepthSubsystem_0(XRDepthSubsystem_t1F42ECBC6085EFA6909640A9521920C55444D089 * value)
{
___m_DepthSubsystem_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DepthSubsystem_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Experimental.XR.PointCloudUpdatedEventArgs
struct PointCloudUpdatedEventArgs_tE7E1E32A6042806B927B110250C0D4FE755C6B07_marshaled_pinvoke
{
XRDepthSubsystem_t1F42ECBC6085EFA6909640A9521920C55444D089 * ___m_DepthSubsystem_0;
};
// Native definition for COM marshalling of UnityEngine.Experimental.XR.PointCloudUpdatedEventArgs
struct PointCloudUpdatedEventArgs_tE7E1E32A6042806B927B110250C0D4FE755C6B07_marshaled_com
{
XRDepthSubsystem_t1F42ECBC6085EFA6909640A9521920C55444D089 * ___m_DepthSubsystem_0;
};
// UnityEngine.Experimental.XR.TrackableId
struct TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B
{
public:
// System.UInt64 UnityEngine.Experimental.XR.TrackableId::m_SubId1
uint64_t ___m_SubId1_1;
// System.UInt64 UnityEngine.Experimental.XR.TrackableId::m_SubId2
uint64_t ___m_SubId2_2;
public:
inline static int32_t get_offset_of_m_SubId1_1() { return static_cast<int32_t>(offsetof(TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B, ___m_SubId1_1)); }
inline uint64_t get_m_SubId1_1() const { return ___m_SubId1_1; }
inline uint64_t* get_address_of_m_SubId1_1() { return &___m_SubId1_1; }
inline void set_m_SubId1_1(uint64_t value)
{
___m_SubId1_1 = value;
}
inline static int32_t get_offset_of_m_SubId2_2() { return static_cast<int32_t>(offsetof(TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B, ___m_SubId2_2)); }
inline uint64_t get_m_SubId2_2() const { return ___m_SubId2_2; }
inline uint64_t* get_address_of_m_SubId2_2() { return &___m_SubId2_2; }
inline void set_m_SubId2_2(uint64_t value)
{
___m_SubId2_2 = value;
}
};
struct TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B_StaticFields
{
public:
// UnityEngine.Experimental.XR.TrackableId UnityEngine.Experimental.XR.TrackableId::s_InvalidId
TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B ___s_InvalidId_0;
public:
inline static int32_t get_offset_of_s_InvalidId_0() { return static_cast<int32_t>(offsetof(TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B_StaticFields, ___s_InvalidId_0)); }
inline TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B get_s_InvalidId_0() const { return ___s_InvalidId_0; }
inline TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B * get_address_of_s_InvalidId_0() { return &___s_InvalidId_0; }
inline void set_s_InvalidId_0(TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B value)
{
___s_InvalidId_0 = value;
}
};
// UnityEngine.GUITargetAttribute
struct GUITargetAttribute_tA23DD43B1D91AF11499A0320EBAAC900A35FC4B8 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.Int32 UnityEngine.GUITargetAttribute::displayMask
int32_t ___displayMask_0;
public:
inline static int32_t get_offset_of_displayMask_0() { return static_cast<int32_t>(offsetof(GUITargetAttribute_tA23DD43B1D91AF11499A0320EBAAC900A35FC4B8, ___displayMask_0)); }
inline int32_t get_displayMask_0() const { return ___displayMask_0; }
inline int32_t* get_address_of_displayMask_0() { return &___displayMask_0; }
inline void set_displayMask_0(int32_t value)
{
___displayMask_0 = 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.Matrix4x4
struct Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA
{
public:
// System.Single UnityEngine.Matrix4x4::m00
float ___m00_0;
// System.Single UnityEngine.Matrix4x4::m10
float ___m10_1;
// System.Single UnityEngine.Matrix4x4::m20
float ___m20_2;
// System.Single UnityEngine.Matrix4x4::m30
float ___m30_3;
// System.Single UnityEngine.Matrix4x4::m01
float ___m01_4;
// System.Single UnityEngine.Matrix4x4::m11
float ___m11_5;
// System.Single UnityEngine.Matrix4x4::m21
float ___m21_6;
// System.Single UnityEngine.Matrix4x4::m31
float ___m31_7;
// System.Single UnityEngine.Matrix4x4::m02
float ___m02_8;
// System.Single UnityEngine.Matrix4x4::m12
float ___m12_9;
// System.Single UnityEngine.Matrix4x4::m22
float ___m22_10;
// System.Single UnityEngine.Matrix4x4::m32
float ___m32_11;
// System.Single UnityEngine.Matrix4x4::m03
float ___m03_12;
// System.Single UnityEngine.Matrix4x4::m13
float ___m13_13;
// System.Single UnityEngine.Matrix4x4::m23
float ___m23_14;
// System.Single UnityEngine.Matrix4x4::m33
float ___m33_15;
public:
inline static int32_t get_offset_of_m00_0() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m00_0)); }
inline float get_m00_0() const { return ___m00_0; }
inline float* get_address_of_m00_0() { return &___m00_0; }
inline void set_m00_0(float value)
{
___m00_0 = value;
}
inline static int32_t get_offset_of_m10_1() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m10_1)); }
inline float get_m10_1() const { return ___m10_1; }
inline float* get_address_of_m10_1() { return &___m10_1; }
inline void set_m10_1(float value)
{
___m10_1 = value;
}
inline static int32_t get_offset_of_m20_2() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m20_2)); }
inline float get_m20_2() const { return ___m20_2; }
inline float* get_address_of_m20_2() { return &___m20_2; }
inline void set_m20_2(float value)
{
___m20_2 = value;
}
inline static int32_t get_offset_of_m30_3() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m30_3)); }
inline float get_m30_3() const { return ___m30_3; }
inline float* get_address_of_m30_3() { return &___m30_3; }
inline void set_m30_3(float value)
{
___m30_3 = value;
}
inline static int32_t get_offset_of_m01_4() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m01_4)); }
inline float get_m01_4() const { return ___m01_4; }
inline float* get_address_of_m01_4() { return &___m01_4; }
inline void set_m01_4(float value)
{
___m01_4 = value;
}
inline static int32_t get_offset_of_m11_5() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m11_5)); }
inline float get_m11_5() const { return ___m11_5; }
inline float* get_address_of_m11_5() { return &___m11_5; }
inline void set_m11_5(float value)
{
___m11_5 = value;
}
inline static int32_t get_offset_of_m21_6() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m21_6)); }
inline float get_m21_6() const { return ___m21_6; }
inline float* get_address_of_m21_6() { return &___m21_6; }
inline void set_m21_6(float value)
{
___m21_6 = value;
}
inline static int32_t get_offset_of_m31_7() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m31_7)); }
inline float get_m31_7() const { return ___m31_7; }
inline float* get_address_of_m31_7() { return &___m31_7; }
inline void set_m31_7(float value)
{
___m31_7 = value;
}
inline static int32_t get_offset_of_m02_8() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m02_8)); }
inline float get_m02_8() const { return ___m02_8; }
inline float* get_address_of_m02_8() { return &___m02_8; }
inline void set_m02_8(float value)
{
___m02_8 = value;
}
inline static int32_t get_offset_of_m12_9() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m12_9)); }
inline float get_m12_9() const { return ___m12_9; }
inline float* get_address_of_m12_9() { return &___m12_9; }
inline void set_m12_9(float value)
{
___m12_9 = value;
}
inline static int32_t get_offset_of_m22_10() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m22_10)); }
inline float get_m22_10() const { return ___m22_10; }
inline float* get_address_of_m22_10() { return &___m22_10; }
inline void set_m22_10(float value)
{
___m22_10 = value;
}
inline static int32_t get_offset_of_m32_11() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m32_11)); }
inline float get_m32_11() const { return ___m32_11; }
inline float* get_address_of_m32_11() { return &___m32_11; }
inline void set_m32_11(float value)
{
___m32_11 = value;
}
inline static int32_t get_offset_of_m03_12() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m03_12)); }
inline float get_m03_12() const { return ___m03_12; }
inline float* get_address_of_m03_12() { return &___m03_12; }
inline void set_m03_12(float value)
{
___m03_12 = value;
}
inline static int32_t get_offset_of_m13_13() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m13_13)); }
inline float get_m13_13() const { return ___m13_13; }
inline float* get_address_of_m13_13() { return &___m13_13; }
inline void set_m13_13(float value)
{
___m13_13 = value;
}
inline static int32_t get_offset_of_m23_14() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m23_14)); }
inline float get_m23_14() const { return ___m23_14; }
inline float* get_address_of_m23_14() { return &___m23_14; }
inline void set_m23_14(float value)
{
___m23_14 = value;
}
inline static int32_t get_offset_of_m33_15() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m33_15)); }
inline float get_m33_15() const { return ___m33_15; }
inline float* get_address_of_m33_15() { return &___m33_15; }
inline void set_m33_15(float value)
{
___m33_15 = value;
}
};
struct Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_StaticFields
{
public:
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::zeroMatrix
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___zeroMatrix_16;
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::identityMatrix
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___identityMatrix_17;
public:
inline static int32_t get_offset_of_zeroMatrix_16() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_StaticFields, ___zeroMatrix_16)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_zeroMatrix_16() const { return ___zeroMatrix_16; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_zeroMatrix_16() { return &___zeroMatrix_16; }
inline void set_zeroMatrix_16(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___zeroMatrix_16 = value;
}
inline static int32_t get_offset_of_identityMatrix_17() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_StaticFields, ___identityMatrix_17)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_identityMatrix_17() const { return ___identityMatrix_17; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_identityMatrix_17() { return &___identityMatrix_17; }
inline void set_identityMatrix_17(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___identityMatrix_17 = value;
}
};
// UnityEngine.ParticleSystem_MainModule
struct MainModule_t99C675667E0A363368324132DFA34B27FFEE6FC7
{
public:
// UnityEngine.ParticleSystem UnityEngine.ParticleSystem_MainModule::m_ParticleSystem
ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * ___m_ParticleSystem_0;
public:
inline static int32_t get_offset_of_m_ParticleSystem_0() { return static_cast<int32_t>(offsetof(MainModule_t99C675667E0A363368324132DFA34B27FFEE6FC7, ___m_ParticleSystem_0)); }
inline ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * get_m_ParticleSystem_0() const { return ___m_ParticleSystem_0; }
inline ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D ** get_address_of_m_ParticleSystem_0() { return &___m_ParticleSystem_0; }
inline void set_m_ParticleSystem_0(ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * value)
{
___m_ParticleSystem_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ParticleSystem_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/MainModule
struct MainModule_t99C675667E0A363368324132DFA34B27FFEE6FC7_marshaled_pinvoke
{
ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * ___m_ParticleSystem_0;
};
// Native definition for COM marshalling of UnityEngine.ParticleSystem/MainModule
struct MainModule_t99C675667E0A363368324132DFA34B27FFEE6FC7_marshaled_com
{
ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * ___m_ParticleSystem_0;
};
// UnityEngine.PropertyAttribute
struct PropertyAttribute_t25BFFC093C9C96E3CCF4EAB36F5DC6F937B1FA54 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
public:
};
// UnityEngine.Quaternion
struct Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357
{
public:
// System.Single UnityEngine.Quaternion::x
float ___x_0;
// System.Single UnityEngine.Quaternion::y
float ___y_1;
// System.Single UnityEngine.Quaternion::z
float ___z_2;
// System.Single UnityEngine.Quaternion::w
float ___w_3;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___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(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___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;
}
inline static int32_t get_offset_of_z_2() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___z_2)); }
inline float get_z_2() const { return ___z_2; }
inline float* get_address_of_z_2() { return &___z_2; }
inline void set_z_2(float value)
{
___z_2 = value;
}
inline static int32_t get_offset_of_w_3() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___w_3)); }
inline float get_w_3() const { return ___w_3; }
inline float* get_address_of_w_3() { return &___w_3; }
inline void set_w_3(float value)
{
___w_3 = value;
}
};
struct Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_StaticFields
{
public:
// UnityEngine.Quaternion UnityEngine.Quaternion::identityQuaternion
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___identityQuaternion_4;
public:
inline static int32_t get_offset_of_identityQuaternion_4() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_StaticFields, ___identityQuaternion_4)); }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_identityQuaternion_4() const { return ___identityQuaternion_4; }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_identityQuaternion_4() { return &___identityQuaternion_4; }
inline void set_identityQuaternion_4(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value)
{
___identityQuaternion_4 = 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.Rendering.SphericalHarmonicsL2
struct SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E
{
public:
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shr0
float ___shr0_0;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shr1
float ___shr1_1;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shr2
float ___shr2_2;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shr3
float ___shr3_3;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shr4
float ___shr4_4;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shr5
float ___shr5_5;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shr6
float ___shr6_6;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shr7
float ___shr7_7;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shr8
float ___shr8_8;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shg0
float ___shg0_9;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shg1
float ___shg1_10;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shg2
float ___shg2_11;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shg3
float ___shg3_12;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shg4
float ___shg4_13;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shg5
float ___shg5_14;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shg6
float ___shg6_15;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shg7
float ___shg7_16;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shg8
float ___shg8_17;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shb0
float ___shb0_18;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shb1
float ___shb1_19;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shb2
float ___shb2_20;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shb3
float ___shb3_21;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shb4
float ___shb4_22;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shb5
float ___shb5_23;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shb6
float ___shb6_24;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shb7
float ___shb7_25;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shb8
float ___shb8_26;
public:
inline static int32_t get_offset_of_shr0_0() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shr0_0)); }
inline float get_shr0_0() const { return ___shr0_0; }
inline float* get_address_of_shr0_0() { return &___shr0_0; }
inline void set_shr0_0(float value)
{
___shr0_0 = value;
}
inline static int32_t get_offset_of_shr1_1() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shr1_1)); }
inline float get_shr1_1() const { return ___shr1_1; }
inline float* get_address_of_shr1_1() { return &___shr1_1; }
inline void set_shr1_1(float value)
{
___shr1_1 = value;
}
inline static int32_t get_offset_of_shr2_2() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shr2_2)); }
inline float get_shr2_2() const { return ___shr2_2; }
inline float* get_address_of_shr2_2() { return &___shr2_2; }
inline void set_shr2_2(float value)
{
___shr2_2 = value;
}
inline static int32_t get_offset_of_shr3_3() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shr3_3)); }
inline float get_shr3_3() const { return ___shr3_3; }
inline float* get_address_of_shr3_3() { return &___shr3_3; }
inline void set_shr3_3(float value)
{
___shr3_3 = value;
}
inline static int32_t get_offset_of_shr4_4() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shr4_4)); }
inline float get_shr4_4() const { return ___shr4_4; }
inline float* get_address_of_shr4_4() { return &___shr4_4; }
inline void set_shr4_4(float value)
{
___shr4_4 = value;
}
inline static int32_t get_offset_of_shr5_5() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shr5_5)); }
inline float get_shr5_5() const { return ___shr5_5; }
inline float* get_address_of_shr5_5() { return &___shr5_5; }
inline void set_shr5_5(float value)
{
___shr5_5 = value;
}
inline static int32_t get_offset_of_shr6_6() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shr6_6)); }
inline float get_shr6_6() const { return ___shr6_6; }
inline float* get_address_of_shr6_6() { return &___shr6_6; }
inline void set_shr6_6(float value)
{
___shr6_6 = value;
}
inline static int32_t get_offset_of_shr7_7() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shr7_7)); }
inline float get_shr7_7() const { return ___shr7_7; }
inline float* get_address_of_shr7_7() { return &___shr7_7; }
inline void set_shr7_7(float value)
{
___shr7_7 = value;
}
inline static int32_t get_offset_of_shr8_8() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shr8_8)); }
inline float get_shr8_8() const { return ___shr8_8; }
inline float* get_address_of_shr8_8() { return &___shr8_8; }
inline void set_shr8_8(float value)
{
___shr8_8 = value;
}
inline static int32_t get_offset_of_shg0_9() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shg0_9)); }
inline float get_shg0_9() const { return ___shg0_9; }
inline float* get_address_of_shg0_9() { return &___shg0_9; }
inline void set_shg0_9(float value)
{
___shg0_9 = value;
}
inline static int32_t get_offset_of_shg1_10() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shg1_10)); }
inline float get_shg1_10() const { return ___shg1_10; }
inline float* get_address_of_shg1_10() { return &___shg1_10; }
inline void set_shg1_10(float value)
{
___shg1_10 = value;
}
inline static int32_t get_offset_of_shg2_11() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shg2_11)); }
inline float get_shg2_11() const { return ___shg2_11; }
inline float* get_address_of_shg2_11() { return &___shg2_11; }
inline void set_shg2_11(float value)
{
___shg2_11 = value;
}
inline static int32_t get_offset_of_shg3_12() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shg3_12)); }
inline float get_shg3_12() const { return ___shg3_12; }
inline float* get_address_of_shg3_12() { return &___shg3_12; }
inline void set_shg3_12(float value)
{
___shg3_12 = value;
}
inline static int32_t get_offset_of_shg4_13() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shg4_13)); }
inline float get_shg4_13() const { return ___shg4_13; }
inline float* get_address_of_shg4_13() { return &___shg4_13; }
inline void set_shg4_13(float value)
{
___shg4_13 = value;
}
inline static int32_t get_offset_of_shg5_14() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shg5_14)); }
inline float get_shg5_14() const { return ___shg5_14; }
inline float* get_address_of_shg5_14() { return &___shg5_14; }
inline void set_shg5_14(float value)
{
___shg5_14 = value;
}
inline static int32_t get_offset_of_shg6_15() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shg6_15)); }
inline float get_shg6_15() const { return ___shg6_15; }
inline float* get_address_of_shg6_15() { return &___shg6_15; }
inline void set_shg6_15(float value)
{
___shg6_15 = value;
}
inline static int32_t get_offset_of_shg7_16() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shg7_16)); }
inline float get_shg7_16() const { return ___shg7_16; }
inline float* get_address_of_shg7_16() { return &___shg7_16; }
inline void set_shg7_16(float value)
{
___shg7_16 = value;
}
inline static int32_t get_offset_of_shg8_17() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shg8_17)); }
inline float get_shg8_17() const { return ___shg8_17; }
inline float* get_address_of_shg8_17() { return &___shg8_17; }
inline void set_shg8_17(float value)
{
___shg8_17 = value;
}
inline static int32_t get_offset_of_shb0_18() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shb0_18)); }
inline float get_shb0_18() const { return ___shb0_18; }
inline float* get_address_of_shb0_18() { return &___shb0_18; }
inline void set_shb0_18(float value)
{
___shb0_18 = value;
}
inline static int32_t get_offset_of_shb1_19() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shb1_19)); }
inline float get_shb1_19() const { return ___shb1_19; }
inline float* get_address_of_shb1_19() { return &___shb1_19; }
inline void set_shb1_19(float value)
{
___shb1_19 = value;
}
inline static int32_t get_offset_of_shb2_20() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shb2_20)); }
inline float get_shb2_20() const { return ___shb2_20; }
inline float* get_address_of_shb2_20() { return &___shb2_20; }
inline void set_shb2_20(float value)
{
___shb2_20 = value;
}
inline static int32_t get_offset_of_shb3_21() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shb3_21)); }
inline float get_shb3_21() const { return ___shb3_21; }
inline float* get_address_of_shb3_21() { return &___shb3_21; }
inline void set_shb3_21(float value)
{
___shb3_21 = value;
}
inline static int32_t get_offset_of_shb4_22() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shb4_22)); }
inline float get_shb4_22() const { return ___shb4_22; }
inline float* get_address_of_shb4_22() { return &___shb4_22; }
inline void set_shb4_22(float value)
{
___shb4_22 = value;
}
inline static int32_t get_offset_of_shb5_23() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shb5_23)); }
inline float get_shb5_23() const { return ___shb5_23; }
inline float* get_address_of_shb5_23() { return &___shb5_23; }
inline void set_shb5_23(float value)
{
___shb5_23 = value;
}
inline static int32_t get_offset_of_shb6_24() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shb6_24)); }
inline float get_shb6_24() const { return ___shb6_24; }
inline float* get_address_of_shb6_24() { return &___shb6_24; }
inline void set_shb6_24(float value)
{
___shb6_24 = value;
}
inline static int32_t get_offset_of_shb7_25() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shb7_25)); }
inline float get_shb7_25() const { return ___shb7_25; }
inline float* get_address_of_shb7_25() { return &___shb7_25; }
inline void set_shb7_25(float value)
{
___shb7_25 = value;
}
inline static int32_t get_offset_of_shb8_26() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E, ___shb8_26)); }
inline float get_shb8_26() const { return ___shb8_26; }
inline float* get_address_of_shb8_26() { return &___shb8_26; }
inline void set_shb8_26(float value)
{
___shb8_26 = value;
}
};
// UnityEngine.SendMouseEvents_HitInfo
struct HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746
{
public:
// UnityEngine.GameObject UnityEngine.SendMouseEvents_HitInfo::target
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target_0;
// UnityEngine.Camera UnityEngine.SendMouseEvents_HitInfo::camera
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___camera_1;
public:
inline static int32_t get_offset_of_target_0() { return static_cast<int32_t>(offsetof(HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746, ___target_0)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_target_0() const { return ___target_0; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_target_0() { return &___target_0; }
inline void set_target_0(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___target_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___target_0), (void*)value);
}
inline static int32_t get_offset_of_camera_1() { return static_cast<int32_t>(offsetof(HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746, ___camera_1)); }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * get_camera_1() const { return ___camera_1; }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 ** get_address_of_camera_1() { return &___camera_1; }
inline void set_camera_1(Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * value)
{
___camera_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___camera_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.SendMouseEvents/HitInfo
struct HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_marshaled_pinvoke
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target_0;
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___camera_1;
};
// Native definition for COM marshalling of UnityEngine.SendMouseEvents/HitInfo
struct HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_marshaled_com
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target_0;
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___camera_1;
};
// UnityEngine.SharedBetweenAnimatorsAttribute
struct SharedBetweenAnimatorsAttribute_tD52C4EACCF9B8F7A21A34D11D3971A823B131F03 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
public:
};
// UnityEngine.SocialPlatforms.GameCenter.GcAchievementData
struct GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55
{
public:
// System.String UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_Identifier
String_t* ___m_Identifier_0;
// System.Double UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_PercentCompleted
double ___m_PercentCompleted_1;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_Completed
int32_t ___m_Completed_2;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_Hidden
int32_t ___m_Hidden_3;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_LastReportedDate
int32_t ___m_LastReportedDate_4;
public:
inline static int32_t get_offset_of_m_Identifier_0() { return static_cast<int32_t>(offsetof(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55, ___m_Identifier_0)); }
inline String_t* get_m_Identifier_0() const { return ___m_Identifier_0; }
inline String_t** get_address_of_m_Identifier_0() { return &___m_Identifier_0; }
inline void set_m_Identifier_0(String_t* value)
{
___m_Identifier_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Identifier_0), (void*)value);
}
inline static int32_t get_offset_of_m_PercentCompleted_1() { return static_cast<int32_t>(offsetof(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55, ___m_PercentCompleted_1)); }
inline double get_m_PercentCompleted_1() const { return ___m_PercentCompleted_1; }
inline double* get_address_of_m_PercentCompleted_1() { return &___m_PercentCompleted_1; }
inline void set_m_PercentCompleted_1(double value)
{
___m_PercentCompleted_1 = value;
}
inline static int32_t get_offset_of_m_Completed_2() { return static_cast<int32_t>(offsetof(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55, ___m_Completed_2)); }
inline int32_t get_m_Completed_2() const { return ___m_Completed_2; }
inline int32_t* get_address_of_m_Completed_2() { return &___m_Completed_2; }
inline void set_m_Completed_2(int32_t value)
{
___m_Completed_2 = value;
}
inline static int32_t get_offset_of_m_Hidden_3() { return static_cast<int32_t>(offsetof(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55, ___m_Hidden_3)); }
inline int32_t get_m_Hidden_3() const { return ___m_Hidden_3; }
inline int32_t* get_address_of_m_Hidden_3() { return &___m_Hidden_3; }
inline void set_m_Hidden_3(int32_t value)
{
___m_Hidden_3 = value;
}
inline static int32_t get_offset_of_m_LastReportedDate_4() { return static_cast<int32_t>(offsetof(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55, ___m_LastReportedDate_4)); }
inline int32_t get_m_LastReportedDate_4() const { return ___m_LastReportedDate_4; }
inline int32_t* get_address_of_m_LastReportedDate_4() { return &___m_LastReportedDate_4; }
inline void set_m_LastReportedDate_4(int32_t value)
{
___m_LastReportedDate_4 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.SocialPlatforms.GameCenter.GcAchievementData
struct GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_marshaled_pinvoke
{
char* ___m_Identifier_0;
double ___m_PercentCompleted_1;
int32_t ___m_Completed_2;
int32_t ___m_Hidden_3;
int32_t ___m_LastReportedDate_4;
};
// Native definition for COM marshalling of UnityEngine.SocialPlatforms.GameCenter.GcAchievementData
struct GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_marshaled_com
{
Il2CppChar* ___m_Identifier_0;
double ___m_PercentCompleted_1;
int32_t ___m_Completed_2;
int32_t ___m_Hidden_3;
int32_t ___m_LastReportedDate_4;
};
// UnityEngine.SocialPlatforms.GameCenter.GcAchievementDescriptionData
struct GcAchievementDescriptionData_t12849233B11B5241066E0D33B3681C2352CAF0A0
{
public:
// System.String UnityEngine.SocialPlatforms.GameCenter.GcAchievementDescriptionData::m_Identifier
String_t* ___m_Identifier_0;
// System.String UnityEngine.SocialPlatforms.GameCenter.GcAchievementDescriptionData::m_Title
String_t* ___m_Title_1;
// UnityEngine.Texture2D UnityEngine.SocialPlatforms.GameCenter.GcAchievementDescriptionData::m_Image
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___m_Image_2;
// System.String UnityEngine.SocialPlatforms.GameCenter.GcAchievementDescriptionData::m_AchievedDescription
String_t* ___m_AchievedDescription_3;
// System.String UnityEngine.SocialPlatforms.GameCenter.GcAchievementDescriptionData::m_UnachievedDescription
String_t* ___m_UnachievedDescription_4;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcAchievementDescriptionData::m_Hidden
int32_t ___m_Hidden_5;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcAchievementDescriptionData::m_Points
int32_t ___m_Points_6;
public:
inline static int32_t get_offset_of_m_Identifier_0() { return static_cast<int32_t>(offsetof(GcAchievementDescriptionData_t12849233B11B5241066E0D33B3681C2352CAF0A0, ___m_Identifier_0)); }
inline String_t* get_m_Identifier_0() const { return ___m_Identifier_0; }
inline String_t** get_address_of_m_Identifier_0() { return &___m_Identifier_0; }
inline void set_m_Identifier_0(String_t* value)
{
___m_Identifier_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Identifier_0), (void*)value);
}
inline static int32_t get_offset_of_m_Title_1() { return static_cast<int32_t>(offsetof(GcAchievementDescriptionData_t12849233B11B5241066E0D33B3681C2352CAF0A0, ___m_Title_1)); }
inline String_t* get_m_Title_1() const { return ___m_Title_1; }
inline String_t** get_address_of_m_Title_1() { return &___m_Title_1; }
inline void set_m_Title_1(String_t* value)
{
___m_Title_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Title_1), (void*)value);
}
inline static int32_t get_offset_of_m_Image_2() { return static_cast<int32_t>(offsetof(GcAchievementDescriptionData_t12849233B11B5241066E0D33B3681C2352CAF0A0, ___m_Image_2)); }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * get_m_Image_2() const { return ___m_Image_2; }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C ** get_address_of_m_Image_2() { return &___m_Image_2; }
inline void set_m_Image_2(Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * value)
{
___m_Image_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Image_2), (void*)value);
}
inline static int32_t get_offset_of_m_AchievedDescription_3() { return static_cast<int32_t>(offsetof(GcAchievementDescriptionData_t12849233B11B5241066E0D33B3681C2352CAF0A0, ___m_AchievedDescription_3)); }
inline String_t* get_m_AchievedDescription_3() const { return ___m_AchievedDescription_3; }
inline String_t** get_address_of_m_AchievedDescription_3() { return &___m_AchievedDescription_3; }
inline void set_m_AchievedDescription_3(String_t* value)
{
___m_AchievedDescription_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_AchievedDescription_3), (void*)value);
}
inline static int32_t get_offset_of_m_UnachievedDescription_4() { return static_cast<int32_t>(offsetof(GcAchievementDescriptionData_t12849233B11B5241066E0D33B3681C2352CAF0A0, ___m_UnachievedDescription_4)); }
inline String_t* get_m_UnachievedDescription_4() const { return ___m_UnachievedDescription_4; }
inline String_t** get_address_of_m_UnachievedDescription_4() { return &___m_UnachievedDescription_4; }
inline void set_m_UnachievedDescription_4(String_t* value)
{
___m_UnachievedDescription_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_UnachievedDescription_4), (void*)value);
}
inline static int32_t get_offset_of_m_Hidden_5() { return static_cast<int32_t>(offsetof(GcAchievementDescriptionData_t12849233B11B5241066E0D33B3681C2352CAF0A0, ___m_Hidden_5)); }
inline int32_t get_m_Hidden_5() const { return ___m_Hidden_5; }
inline int32_t* get_address_of_m_Hidden_5() { return &___m_Hidden_5; }
inline void set_m_Hidden_5(int32_t value)
{
___m_Hidden_5 = value;
}
inline static int32_t get_offset_of_m_Points_6() { return static_cast<int32_t>(offsetof(GcAchievementDescriptionData_t12849233B11B5241066E0D33B3681C2352CAF0A0, ___m_Points_6)); }
inline int32_t get_m_Points_6() const { return ___m_Points_6; }
inline int32_t* get_address_of_m_Points_6() { return &___m_Points_6; }
inline void set_m_Points_6(int32_t value)
{
___m_Points_6 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.SocialPlatforms.GameCenter.GcAchievementDescriptionData
struct GcAchievementDescriptionData_t12849233B11B5241066E0D33B3681C2352CAF0A0_marshaled_pinvoke
{
char* ___m_Identifier_0;
char* ___m_Title_1;
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___m_Image_2;
char* ___m_AchievedDescription_3;
char* ___m_UnachievedDescription_4;
int32_t ___m_Hidden_5;
int32_t ___m_Points_6;
};
// Native definition for COM marshalling of UnityEngine.SocialPlatforms.GameCenter.GcAchievementDescriptionData
struct GcAchievementDescriptionData_t12849233B11B5241066E0D33B3681C2352CAF0A0_marshaled_com
{
Il2CppChar* ___m_Identifier_0;
Il2CppChar* ___m_Title_1;
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___m_Image_2;
Il2CppChar* ___m_AchievedDescription_3;
Il2CppChar* ___m_UnachievedDescription_4;
int32_t ___m_Hidden_5;
int32_t ___m_Points_6;
};
// UnityEngine.SocialPlatforms.GameCenter.GcScoreData
struct GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A
{
public:
// System.String UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_Category
String_t* ___m_Category_0;
// System.UInt32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_ValueLow
uint32_t ___m_ValueLow_1;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_ValueHigh
int32_t ___m_ValueHigh_2;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_Date
int32_t ___m_Date_3;
// System.String UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_FormattedValue
String_t* ___m_FormattedValue_4;
// System.String UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_PlayerID
String_t* ___m_PlayerID_5;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_Rank
int32_t ___m_Rank_6;
public:
inline static int32_t get_offset_of_m_Category_0() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_Category_0)); }
inline String_t* get_m_Category_0() const { return ___m_Category_0; }
inline String_t** get_address_of_m_Category_0() { return &___m_Category_0; }
inline void set_m_Category_0(String_t* value)
{
___m_Category_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Category_0), (void*)value);
}
inline static int32_t get_offset_of_m_ValueLow_1() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_ValueLow_1)); }
inline uint32_t get_m_ValueLow_1() const { return ___m_ValueLow_1; }
inline uint32_t* get_address_of_m_ValueLow_1() { return &___m_ValueLow_1; }
inline void set_m_ValueLow_1(uint32_t value)
{
___m_ValueLow_1 = value;
}
inline static int32_t get_offset_of_m_ValueHigh_2() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_ValueHigh_2)); }
inline int32_t get_m_ValueHigh_2() const { return ___m_ValueHigh_2; }
inline int32_t* get_address_of_m_ValueHigh_2() { return &___m_ValueHigh_2; }
inline void set_m_ValueHigh_2(int32_t value)
{
___m_ValueHigh_2 = value;
}
inline static int32_t get_offset_of_m_Date_3() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_Date_3)); }
inline int32_t get_m_Date_3() const { return ___m_Date_3; }
inline int32_t* get_address_of_m_Date_3() { return &___m_Date_3; }
inline void set_m_Date_3(int32_t value)
{
___m_Date_3 = value;
}
inline static int32_t get_offset_of_m_FormattedValue_4() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_FormattedValue_4)); }
inline String_t* get_m_FormattedValue_4() const { return ___m_FormattedValue_4; }
inline String_t** get_address_of_m_FormattedValue_4() { return &___m_FormattedValue_4; }
inline void set_m_FormattedValue_4(String_t* value)
{
___m_FormattedValue_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_FormattedValue_4), (void*)value);
}
inline static int32_t get_offset_of_m_PlayerID_5() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_PlayerID_5)); }
inline String_t* get_m_PlayerID_5() const { return ___m_PlayerID_5; }
inline String_t** get_address_of_m_PlayerID_5() { return &___m_PlayerID_5; }
inline void set_m_PlayerID_5(String_t* value)
{
___m_PlayerID_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PlayerID_5), (void*)value);
}
inline static int32_t get_offset_of_m_Rank_6() { return static_cast<int32_t>(offsetof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A, ___m_Rank_6)); }
inline int32_t get_m_Rank_6() const { return ___m_Rank_6; }
inline int32_t* get_address_of_m_Rank_6() { return &___m_Rank_6; }
inline void set_m_Rank_6(int32_t value)
{
___m_Rank_6 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.SocialPlatforms.GameCenter.GcScoreData
struct GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_marshaled_pinvoke
{
char* ___m_Category_0;
uint32_t ___m_ValueLow_1;
int32_t ___m_ValueHigh_2;
int32_t ___m_Date_3;
char* ___m_FormattedValue_4;
char* ___m_PlayerID_5;
int32_t ___m_Rank_6;
};
// Native definition for COM marshalling of UnityEngine.SocialPlatforms.GameCenter.GcScoreData
struct GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_marshaled_com
{
Il2CppChar* ___m_Category_0;
uint32_t ___m_ValueLow_1;
int32_t ___m_ValueHigh_2;
int32_t ___m_Date_3;
Il2CppChar* ___m_FormattedValue_4;
Il2CppChar* ___m_PlayerID_5;
int32_t ___m_Rank_6;
};
// UnityEngine.SocialPlatforms.GameCenter.GcUserProfileData
struct GcUserProfileData_tDCEBF6CF74E9EBC0B9F9847CE96118169391B57D
{
public:
// System.String UnityEngine.SocialPlatforms.GameCenter.GcUserProfileData::userName
String_t* ___userName_0;
// System.String UnityEngine.SocialPlatforms.GameCenter.GcUserProfileData::userID
String_t* ___userID_1;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcUserProfileData::isFriend
int32_t ___isFriend_2;
// UnityEngine.Texture2D UnityEngine.SocialPlatforms.GameCenter.GcUserProfileData::image
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___image_3;
public:
inline static int32_t get_offset_of_userName_0() { return static_cast<int32_t>(offsetof(GcUserProfileData_tDCEBF6CF74E9EBC0B9F9847CE96118169391B57D, ___userName_0)); }
inline String_t* get_userName_0() const { return ___userName_0; }
inline String_t** get_address_of_userName_0() { return &___userName_0; }
inline void set_userName_0(String_t* value)
{
___userName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___userName_0), (void*)value);
}
inline static int32_t get_offset_of_userID_1() { return static_cast<int32_t>(offsetof(GcUserProfileData_tDCEBF6CF74E9EBC0B9F9847CE96118169391B57D, ___userID_1)); }
inline String_t* get_userID_1() const { return ___userID_1; }
inline String_t** get_address_of_userID_1() { return &___userID_1; }
inline void set_userID_1(String_t* value)
{
___userID_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___userID_1), (void*)value);
}
inline static int32_t get_offset_of_isFriend_2() { return static_cast<int32_t>(offsetof(GcUserProfileData_tDCEBF6CF74E9EBC0B9F9847CE96118169391B57D, ___isFriend_2)); }
inline int32_t get_isFriend_2() const { return ___isFriend_2; }
inline int32_t* get_address_of_isFriend_2() { return &___isFriend_2; }
inline void set_isFriend_2(int32_t value)
{
___isFriend_2 = value;
}
inline static int32_t get_offset_of_image_3() { return static_cast<int32_t>(offsetof(GcUserProfileData_tDCEBF6CF74E9EBC0B9F9847CE96118169391B57D, ___image_3)); }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * get_image_3() const { return ___image_3; }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C ** get_address_of_image_3() { return &___image_3; }
inline void set_image_3(Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * value)
{
___image_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___image_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.SocialPlatforms.GameCenter.GcUserProfileData
struct GcUserProfileData_tDCEBF6CF74E9EBC0B9F9847CE96118169391B57D_marshaled_pinvoke
{
char* ___userName_0;
char* ___userID_1;
int32_t ___isFriend_2;
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___image_3;
};
// Native definition for COM marshalling of UnityEngine.SocialPlatforms.GameCenter.GcUserProfileData
struct GcUserProfileData_tDCEBF6CF74E9EBC0B9F9847CE96118169391B57D_marshaled_com
{
Il2CppChar* ___userName_0;
Il2CppChar* ___userID_1;
int32_t ___isFriend_2;
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___image_3;
};
// UnityEngine.SocialPlatforms.Range
struct Range_t2332F6C6E1E19A355F5C1A93FF4434B92FBDBABC
{
public:
// System.Int32 UnityEngine.SocialPlatforms.Range::from
int32_t ___from_0;
// System.Int32 UnityEngine.SocialPlatforms.Range::count
int32_t ___count_1;
public:
inline static int32_t get_offset_of_from_0() { return static_cast<int32_t>(offsetof(Range_t2332F6C6E1E19A355F5C1A93FF4434B92FBDBABC, ___from_0)); }
inline int32_t get_from_0() const { return ___from_0; }
inline int32_t* get_address_of_from_0() { return &___from_0; }
inline void set_from_0(int32_t value)
{
___from_0 = value;
}
inline static int32_t get_offset_of_count_1() { return static_cast<int32_t>(offsetof(Range_t2332F6C6E1E19A355F5C1A93FF4434B92FBDBABC, ___count_1)); }
inline int32_t get_count_1() const { return ___count_1; }
inline int32_t* get_address_of_count_1() { return &___count_1; }
inline void set_count_1(int32_t value)
{
___count_1 = value;
}
};
// UnityEngine.SubsystemDescriptor`1<UnityEngine.XR.ARSubsystems.XRCameraSubsystem>
struct SubsystemDescriptor_1_tE5818B12F1A52E8B1CB0C70CF3C72C51207060F3 : public SubsystemDescriptor_t889FE96B75F157379A8337541A119F08DD9C75D4
{
public:
public:
};
// UnityEngine.SubsystemDescriptor`1<UnityEngine.XR.ARSubsystems.XRDepthSubsystem>
struct SubsystemDescriptor_1_t5F45D2C57F71CA1E7F628DC4BD8176DFAFD90DA1 : public SubsystemDescriptor_t889FE96B75F157379A8337541A119F08DD9C75D4
{
public:
public:
};
// UnityEngine.SubsystemDescriptor`1<UnityEngine.XR.ARSubsystems.XRPlaneSubsystem>
struct SubsystemDescriptor_1_t48ED9E3737B28FD562E12CA231ED3487E383D773 : public SubsystemDescriptor_t889FE96B75F157379A8337541A119F08DD9C75D4
{
public:
public:
};
// UnityEngine.SubsystemDescriptor`1<UnityEngine.XR.ARSubsystems.XRRaycastSubsystem>
struct SubsystemDescriptor_1_t27A8F3D552922AA16C799BCC575330BC6DF59F47 : public SubsystemDescriptor_t889FE96B75F157379A8337541A119F08DD9C75D4
{
public:
public:
};
// UnityEngine.SubsystemDescriptor`1<UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem>
struct SubsystemDescriptor_1_tFFF984F9F6942FDAE965131A8954D4C4EA20B6B5 : public SubsystemDescriptor_t889FE96B75F157379A8337541A119F08DD9C75D4
{
public:
public:
};
// UnityEngine.SubsystemDescriptor`1<UnityEngine.XR.ARSubsystems.XRSessionSubsystem>
struct SubsystemDescriptor_1_t0679ED150419770F94E42102F28D688E8F1DC9DA : public SubsystemDescriptor_t889FE96B75F157379A8337541A119F08DD9C75D4
{
public:
public:
};
// UnityEngine.Subsystem`1<UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor>
struct Subsystem_1_t54655F7C7F723FDA59325E1AC875A3FD66C9C684 : public Subsystem_t6B987736D8E48098F860AC55D76905DE1F48CE8C
{
public:
public:
};
// UnityEngine.Subsystem`1<UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor>
struct Subsystem_1_t699EE52FD744695EFB393B312D6BFA04DCC68870 : public Subsystem_t6B987736D8E48098F860AC55D76905DE1F48CE8C
{
public:
public:
};
// UnityEngine.Subsystem`1<UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor>
struct Subsystem_1_tA832EBA21E41FF7EBCA30AE7C32EC78033F63E37 : public Subsystem_t6B987736D8E48098F860AC55D76905DE1F48CE8C
{
public:
public:
};
// UnityEngine.Subsystem`1<UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor>
struct Subsystem_1_t1D44399B8190A9E3533EE5C5D5915B75D79B2E66 : public Subsystem_t6B987736D8E48098F860AC55D76905DE1F48CE8C
{
public:
public:
};
// UnityEngine.Subsystem`1<UnityEngine.XR.ARSubsystems.XRReferencePointSubsystemDescriptor>
struct Subsystem_1_t1A38EF1402A7E5DBC48E0755E358926BB0054890 : public Subsystem_t6B987736D8E48098F860AC55D76905DE1F48CE8C
{
public:
public:
};
// UnityEngine.Subsystem`1<UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor>
struct Subsystem_1_t749909AA5D71BD615BDF40BDE7C8F81B8D63F4C7 : public Subsystem_t6B987736D8E48098F860AC55D76905DE1F48CE8C
{
public:
public:
};
// 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.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;
}
};
// UnityEngine.XR.ARKit.ARKitCameraSubsystem_Provider
struct Provider_t10F5BFB8A0883F5ABFC689F55DC4B6DFA0E9535E : public IProvider_t5D7A855308E0C5E8F9175CA7CDEE91F929A5185C
{
public:
public:
};
struct Provider_t10F5BFB8A0883F5ABFC689F55DC4B6DFA0E9535E_StaticFields
{
public:
// System.Int32 UnityEngine.XR.ARKit.ARKitCameraSubsystem_Provider::k_TextureYPropertyNameId
int32_t ___k_TextureYPropertyNameId_0;
// System.Int32 UnityEngine.XR.ARKit.ARKitCameraSubsystem_Provider::k_TextureCbCrPropertyNameId
int32_t ___k_TextureCbCrPropertyNameId_1;
public:
inline static int32_t get_offset_of_k_TextureYPropertyNameId_0() { return static_cast<int32_t>(offsetof(Provider_t10F5BFB8A0883F5ABFC689F55DC4B6DFA0E9535E_StaticFields, ___k_TextureYPropertyNameId_0)); }
inline int32_t get_k_TextureYPropertyNameId_0() const { return ___k_TextureYPropertyNameId_0; }
inline int32_t* get_address_of_k_TextureYPropertyNameId_0() { return &___k_TextureYPropertyNameId_0; }
inline void set_k_TextureYPropertyNameId_0(int32_t value)
{
___k_TextureYPropertyNameId_0 = value;
}
inline static int32_t get_offset_of_k_TextureCbCrPropertyNameId_1() { return static_cast<int32_t>(offsetof(Provider_t10F5BFB8A0883F5ABFC689F55DC4B6DFA0E9535E_StaticFields, ___k_TextureCbCrPropertyNameId_1)); }
inline int32_t get_k_TextureCbCrPropertyNameId_1() const { return ___k_TextureCbCrPropertyNameId_1; }
inline int32_t* get_address_of_k_TextureCbCrPropertyNameId_1() { return &___k_TextureCbCrPropertyNameId_1; }
inline void set_k_TextureCbCrPropertyNameId_1(int32_t value)
{
___k_TextureCbCrPropertyNameId_1 = value;
}
};
// UnityEngine.XR.ARKit.ARKitRaycastSubsystem_Provider
struct Provider_tC61D3306173539ECD1E3F0E7184408EA855AA0B3 : public IProvider_tB9DFB2CA3241B1F6107D01753C0F00628994A3ED
{
public:
public:
};
// UnityEngine.XR.ARKit.ARKitReferencePointSubsystem_Provider
struct Provider_t509F1B75CECA94E702BEAA9F7C67EA2313C58986 : public IProvider_tA80639246D0ED291E8332BE2FBC3FE3EA13A4459
{
public:
public:
};
// UnityEngine.XR.ARKit.ARKitSessionSubsystem_Provider
struct Provider_t475F303CC6F0955D8B266D4CD5B7022F3658389B : public IProvider_tCE3A36B52F24E47DF8D9945EAB79493A822E9428
{
public:
public:
};
// UnityEngine.XR.ARKit.ARKitXRDepthSubsystem_Provider
struct Provider_t38A44526F6D5F1EBFDA048E10377C8F3FA82EF70 : public IDepthApi_t7CEE33C76911E53220D0242D5E38503D64736BE4
{
public:
public:
};
// UnityEngine.XR.ARKit.ARKitXRPlaneSubsystem_Provider
struct Provider_tE828C43D91B7E57F44E04A10F068C304DBAE5A6A : public IProvider_t40982CEC3244CC0C726CED2C27336E95321F7469
{
public:
public:
};
// UnityEngine.XR.ARKit.ARWorldMap
struct ARWorldMap_t8BAE5D083A023D7DD23C29E4082B6BBD329010DE
{
public:
// System.Int32 UnityEngine.XR.ARKit.ARWorldMap::<nativeHandle>k__BackingField
int32_t ___U3CnativeHandleU3Ek__BackingField_0;
public:
inline static int32_t get_offset_of_U3CnativeHandleU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(ARWorldMap_t8BAE5D083A023D7DD23C29E4082B6BBD329010DE, ___U3CnativeHandleU3Ek__BackingField_0)); }
inline int32_t get_U3CnativeHandleU3Ek__BackingField_0() const { return ___U3CnativeHandleU3Ek__BackingField_0; }
inline int32_t* get_address_of_U3CnativeHandleU3Ek__BackingField_0() { return &___U3CnativeHandleU3Ek__BackingField_0; }
inline void set_U3CnativeHandleU3Ek__BackingField_0(int32_t value)
{
___U3CnativeHandleU3Ek__BackingField_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.TrackableId
struct TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47
{
public:
// System.UInt64 UnityEngine.XR.ARSubsystems.TrackableId::m_SubId1
uint64_t ___m_SubId1_1;
// System.UInt64 UnityEngine.XR.ARSubsystems.TrackableId::m_SubId2
uint64_t ___m_SubId2_2;
public:
inline static int32_t get_offset_of_m_SubId1_1() { return static_cast<int32_t>(offsetof(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47, ___m_SubId1_1)); }
inline uint64_t get_m_SubId1_1() const { return ___m_SubId1_1; }
inline uint64_t* get_address_of_m_SubId1_1() { return &___m_SubId1_1; }
inline void set_m_SubId1_1(uint64_t value)
{
___m_SubId1_1 = value;
}
inline static int32_t get_offset_of_m_SubId2_2() { return static_cast<int32_t>(offsetof(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47, ___m_SubId2_2)); }
inline uint64_t get_m_SubId2_2() const { return ___m_SubId2_2; }
inline uint64_t* get_address_of_m_SubId2_2() { return &___m_SubId2_2; }
inline void set_m_SubId2_2(uint64_t value)
{
___m_SubId2_2 = value;
}
};
struct TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.TrackableId::s_InvalidId
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 ___s_InvalidId_0;
public:
inline static int32_t get_offset_of_s_InvalidId_0() { return static_cast<int32_t>(offsetof(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47_StaticFields, ___s_InvalidId_0)); }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 get_s_InvalidId_0() const { return ___s_InvalidId_0; }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 * get_address_of_s_InvalidId_0() { return &___s_InvalidId_0; }
inline void set_s_InvalidId_0(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 value)
{
___s_InvalidId_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo
struct XRCameraSubsystemCinfo_t2DEC704C4D0CB1EC17BB8521B3358EE08C878BCC
{
public:
// System.String UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<id>k__BackingField
String_t* ___U3CidU3Ek__BackingField_0;
// System.Type UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<implementationType>k__BackingField
Type_t * ___U3CimplementationTypeU3Ek__BackingField_1;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<supportsAverageBrightness>k__BackingField
bool ___U3CsupportsAverageBrightnessU3Ek__BackingField_2;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<supportsAverageColorTemperature>k__BackingField
bool ___U3CsupportsAverageColorTemperatureU3Ek__BackingField_3;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<supportsColorCorrection>k__BackingField
bool ___U3CsupportsColorCorrectionU3Ek__BackingField_4;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<supportsDisplayMatrix>k__BackingField
bool ___U3CsupportsDisplayMatrixU3Ek__BackingField_5;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<supportsProjectionMatrix>k__BackingField
bool ___U3CsupportsProjectionMatrixU3Ek__BackingField_6;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<supportsTimestamp>k__BackingField
bool ___U3CsupportsTimestampU3Ek__BackingField_7;
public:
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_t2DEC704C4D0CB1EC17BB8521B3358EE08C878BCC, ___U3CidU3Ek__BackingField_0)); }
inline String_t* get_U3CidU3Ek__BackingField_0() const { return ___U3CidU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CidU3Ek__BackingField_0() { return &___U3CidU3Ek__BackingField_0; }
inline void set_U3CidU3Ek__BackingField_0(String_t* value)
{
___U3CidU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CidU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CimplementationTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_t2DEC704C4D0CB1EC17BB8521B3358EE08C878BCC, ___U3CimplementationTypeU3Ek__BackingField_1)); }
inline Type_t * get_U3CimplementationTypeU3Ek__BackingField_1() const { return ___U3CimplementationTypeU3Ek__BackingField_1; }
inline Type_t ** get_address_of_U3CimplementationTypeU3Ek__BackingField_1() { return &___U3CimplementationTypeU3Ek__BackingField_1; }
inline void set_U3CimplementationTypeU3Ek__BackingField_1(Type_t * value)
{
___U3CimplementationTypeU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CimplementationTypeU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CsupportsAverageBrightnessU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_t2DEC704C4D0CB1EC17BB8521B3358EE08C878BCC, ___U3CsupportsAverageBrightnessU3Ek__BackingField_2)); }
inline bool get_U3CsupportsAverageBrightnessU3Ek__BackingField_2() const { return ___U3CsupportsAverageBrightnessU3Ek__BackingField_2; }
inline bool* get_address_of_U3CsupportsAverageBrightnessU3Ek__BackingField_2() { return &___U3CsupportsAverageBrightnessU3Ek__BackingField_2; }
inline void set_U3CsupportsAverageBrightnessU3Ek__BackingField_2(bool value)
{
___U3CsupportsAverageBrightnessU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CsupportsAverageColorTemperatureU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_t2DEC704C4D0CB1EC17BB8521B3358EE08C878BCC, ___U3CsupportsAverageColorTemperatureU3Ek__BackingField_3)); }
inline bool get_U3CsupportsAverageColorTemperatureU3Ek__BackingField_3() const { return ___U3CsupportsAverageColorTemperatureU3Ek__BackingField_3; }
inline bool* get_address_of_U3CsupportsAverageColorTemperatureU3Ek__BackingField_3() { return &___U3CsupportsAverageColorTemperatureU3Ek__BackingField_3; }
inline void set_U3CsupportsAverageColorTemperatureU3Ek__BackingField_3(bool value)
{
___U3CsupportsAverageColorTemperatureU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CsupportsColorCorrectionU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_t2DEC704C4D0CB1EC17BB8521B3358EE08C878BCC, ___U3CsupportsColorCorrectionU3Ek__BackingField_4)); }
inline bool get_U3CsupportsColorCorrectionU3Ek__BackingField_4() const { return ___U3CsupportsColorCorrectionU3Ek__BackingField_4; }
inline bool* get_address_of_U3CsupportsColorCorrectionU3Ek__BackingField_4() { return &___U3CsupportsColorCorrectionU3Ek__BackingField_4; }
inline void set_U3CsupportsColorCorrectionU3Ek__BackingField_4(bool value)
{
___U3CsupportsColorCorrectionU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CsupportsDisplayMatrixU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_t2DEC704C4D0CB1EC17BB8521B3358EE08C878BCC, ___U3CsupportsDisplayMatrixU3Ek__BackingField_5)); }
inline bool get_U3CsupportsDisplayMatrixU3Ek__BackingField_5() const { return ___U3CsupportsDisplayMatrixU3Ek__BackingField_5; }
inline bool* get_address_of_U3CsupportsDisplayMatrixU3Ek__BackingField_5() { return &___U3CsupportsDisplayMatrixU3Ek__BackingField_5; }
inline void set_U3CsupportsDisplayMatrixU3Ek__BackingField_5(bool value)
{
___U3CsupportsDisplayMatrixU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CsupportsProjectionMatrixU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_t2DEC704C4D0CB1EC17BB8521B3358EE08C878BCC, ___U3CsupportsProjectionMatrixU3Ek__BackingField_6)); }
inline bool get_U3CsupportsProjectionMatrixU3Ek__BackingField_6() const { return ___U3CsupportsProjectionMatrixU3Ek__BackingField_6; }
inline bool* get_address_of_U3CsupportsProjectionMatrixU3Ek__BackingField_6() { return &___U3CsupportsProjectionMatrixU3Ek__BackingField_6; }
inline void set_U3CsupportsProjectionMatrixU3Ek__BackingField_6(bool value)
{
___U3CsupportsProjectionMatrixU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of_U3CsupportsTimestampU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_t2DEC704C4D0CB1EC17BB8521B3358EE08C878BCC, ___U3CsupportsTimestampU3Ek__BackingField_7)); }
inline bool get_U3CsupportsTimestampU3Ek__BackingField_7() const { return ___U3CsupportsTimestampU3Ek__BackingField_7; }
inline bool* get_address_of_U3CsupportsTimestampU3Ek__BackingField_7() { return &___U3CsupportsTimestampU3Ek__BackingField_7; }
inline void set_U3CsupportsTimestampU3Ek__BackingField_7(bool value)
{
___U3CsupportsTimestampU3Ek__BackingField_7 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo
struct XRCameraSubsystemCinfo_t2DEC704C4D0CB1EC17BB8521B3358EE08C878BCC_marshaled_pinvoke
{
char* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CimplementationTypeU3Ek__BackingField_1;
int32_t ___U3CsupportsAverageBrightnessU3Ek__BackingField_2;
int32_t ___U3CsupportsAverageColorTemperatureU3Ek__BackingField_3;
int32_t ___U3CsupportsColorCorrectionU3Ek__BackingField_4;
int32_t ___U3CsupportsDisplayMatrixU3Ek__BackingField_5;
int32_t ___U3CsupportsProjectionMatrixU3Ek__BackingField_6;
int32_t ___U3CsupportsTimestampU3Ek__BackingField_7;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo
struct XRCameraSubsystemCinfo_t2DEC704C4D0CB1EC17BB8521B3358EE08C878BCC_marshaled_com
{
Il2CppChar* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CimplementationTypeU3Ek__BackingField_1;
int32_t ___U3CsupportsAverageBrightnessU3Ek__BackingField_2;
int32_t ___U3CsupportsAverageColorTemperatureU3Ek__BackingField_3;
int32_t ___U3CsupportsColorCorrectionU3Ek__BackingField_4;
int32_t ___U3CsupportsDisplayMatrixU3Ek__BackingField_5;
int32_t ___U3CsupportsProjectionMatrixU3Ek__BackingField_6;
int32_t ___U3CsupportsTimestampU3Ek__BackingField_7;
};
// UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor_Cinfo
struct Cinfo_t3A7A0974E08C86861E17F80513931B857013DF29
{
public:
// System.String UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor_Cinfo::<id>k__BackingField
String_t* ___U3CidU3Ek__BackingField_0;
// System.Type UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor_Cinfo::<subsystemImplementationType>k__BackingField
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_1;
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor_Cinfo::<supportsHorizontalPlaneDetection>k__BackingField
bool ___U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_2;
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor_Cinfo::<supportsVerticalPlaneDetection>k__BackingField
bool ___U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_3;
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor_Cinfo::<supportsArbitraryPlaneDetection>k__BackingField
bool ___U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_4;
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor_Cinfo::<supportsBoundaryVertices>k__BackingField
bool ___U3CsupportsBoundaryVerticesU3Ek__BackingField_5;
public:
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Cinfo_t3A7A0974E08C86861E17F80513931B857013DF29, ___U3CidU3Ek__BackingField_0)); }
inline String_t* get_U3CidU3Ek__BackingField_0() const { return ___U3CidU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CidU3Ek__BackingField_0() { return &___U3CidU3Ek__BackingField_0; }
inline void set_U3CidU3Ek__BackingField_0(String_t* value)
{
___U3CidU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CidU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemImplementationTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(Cinfo_t3A7A0974E08C86861E17F80513931B857013DF29, ___U3CsubsystemImplementationTypeU3Ek__BackingField_1)); }
inline Type_t * get_U3CsubsystemImplementationTypeU3Ek__BackingField_1() const { return ___U3CsubsystemImplementationTypeU3Ek__BackingField_1; }
inline Type_t ** get_address_of_U3CsubsystemImplementationTypeU3Ek__BackingField_1() { return &___U3CsubsystemImplementationTypeU3Ek__BackingField_1; }
inline void set_U3CsubsystemImplementationTypeU3Ek__BackingField_1(Type_t * value)
{
___U3CsubsystemImplementationTypeU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemImplementationTypeU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(Cinfo_t3A7A0974E08C86861E17F80513931B857013DF29, ___U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_2)); }
inline bool get_U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_2() const { return ___U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_2; }
inline bool* get_address_of_U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_2() { return &___U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_2; }
inline void set_U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_2(bool value)
{
___U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(Cinfo_t3A7A0974E08C86861E17F80513931B857013DF29, ___U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_3)); }
inline bool get_U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_3() const { return ___U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_3; }
inline bool* get_address_of_U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_3() { return &___U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_3; }
inline void set_U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_3(bool value)
{
___U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(Cinfo_t3A7A0974E08C86861E17F80513931B857013DF29, ___U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_4)); }
inline bool get_U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_4() const { return ___U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_4; }
inline bool* get_address_of_U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_4() { return &___U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_4; }
inline void set_U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_4(bool value)
{
___U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CsupportsBoundaryVerticesU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(Cinfo_t3A7A0974E08C86861E17F80513931B857013DF29, ___U3CsupportsBoundaryVerticesU3Ek__BackingField_5)); }
inline bool get_U3CsupportsBoundaryVerticesU3Ek__BackingField_5() const { return ___U3CsupportsBoundaryVerticesU3Ek__BackingField_5; }
inline bool* get_address_of_U3CsupportsBoundaryVerticesU3Ek__BackingField_5() { return &___U3CsupportsBoundaryVerticesU3Ek__BackingField_5; }
inline void set_U3CsupportsBoundaryVerticesU3Ek__BackingField_5(bool value)
{
___U3CsupportsBoundaryVerticesU3Ek__BackingField_5 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo
struct Cinfo_t3A7A0974E08C86861E17F80513931B857013DF29_marshaled_pinvoke
{
char* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_1;
int32_t ___U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_2;
int32_t ___U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_3;
int32_t ___U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_4;
int32_t ___U3CsupportsBoundaryVerticesU3Ek__BackingField_5;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo
struct Cinfo_t3A7A0974E08C86861E17F80513931B857013DF29_marshaled_com
{
Il2CppChar* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_1;
int32_t ___U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_2;
int32_t ___U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_3;
int32_t ___U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_4;
int32_t ___U3CsupportsBoundaryVerticesU3Ek__BackingField_5;
};
// UnityEngine.XR.ARSubsystems.XRReferencePointSubsystemDescriptor_Cinfo
struct Cinfo_t763E336A62E286B348AB9B084829CFD16A32D7AD
{
public:
// System.String UnityEngine.XR.ARSubsystems.XRReferencePointSubsystemDescriptor_Cinfo::<id>k__BackingField
String_t* ___U3CidU3Ek__BackingField_0;
// System.Type UnityEngine.XR.ARSubsystems.XRReferencePointSubsystemDescriptor_Cinfo::<subsystemImplementationType>k__BackingField
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_1;
// System.Boolean UnityEngine.XR.ARSubsystems.XRReferencePointSubsystemDescriptor_Cinfo::<supportsTrackableAttachments>k__BackingField
bool ___U3CsupportsTrackableAttachmentsU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Cinfo_t763E336A62E286B348AB9B084829CFD16A32D7AD, ___U3CidU3Ek__BackingField_0)); }
inline String_t* get_U3CidU3Ek__BackingField_0() const { return ___U3CidU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CidU3Ek__BackingField_0() { return &___U3CidU3Ek__BackingField_0; }
inline void set_U3CidU3Ek__BackingField_0(String_t* value)
{
___U3CidU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CidU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemImplementationTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(Cinfo_t763E336A62E286B348AB9B084829CFD16A32D7AD, ___U3CsubsystemImplementationTypeU3Ek__BackingField_1)); }
inline Type_t * get_U3CsubsystemImplementationTypeU3Ek__BackingField_1() const { return ___U3CsubsystemImplementationTypeU3Ek__BackingField_1; }
inline Type_t ** get_address_of_U3CsubsystemImplementationTypeU3Ek__BackingField_1() { return &___U3CsubsystemImplementationTypeU3Ek__BackingField_1; }
inline void set_U3CsubsystemImplementationTypeU3Ek__BackingField_1(Type_t * value)
{
___U3CsubsystemImplementationTypeU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemImplementationTypeU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CsupportsTrackableAttachmentsU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(Cinfo_t763E336A62E286B348AB9B084829CFD16A32D7AD, ___U3CsupportsTrackableAttachmentsU3Ek__BackingField_2)); }
inline bool get_U3CsupportsTrackableAttachmentsU3Ek__BackingField_2() const { return ___U3CsupportsTrackableAttachmentsU3Ek__BackingField_2; }
inline bool* get_address_of_U3CsupportsTrackableAttachmentsU3Ek__BackingField_2() { return &___U3CsupportsTrackableAttachmentsU3Ek__BackingField_2; }
inline void set_U3CsupportsTrackableAttachmentsU3Ek__BackingField_2(bool value)
{
___U3CsupportsTrackableAttachmentsU3Ek__BackingField_2 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XRReferencePointSubsystemDescriptor/Cinfo
struct Cinfo_t763E336A62E286B348AB9B084829CFD16A32D7AD_marshaled_pinvoke
{
char* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_1;
int32_t ___U3CsupportsTrackableAttachmentsU3Ek__BackingField_2;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XRReferencePointSubsystemDescriptor/Cinfo
struct Cinfo_t763E336A62E286B348AB9B084829CFD16A32D7AD_marshaled_com
{
Il2CppChar* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_1;
int32_t ___U3CsupportsTrackableAttachmentsU3Ek__BackingField_2;
};
// UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor_Cinfo
struct Cinfo_t0D2C3593DAA5642EF84F81D756DBDDACC2E27C1A
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor_Cinfo::<supportsInstall>k__BackingField
bool ___U3CsupportsInstallU3Ek__BackingField_0;
// System.String UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor_Cinfo::<id>k__BackingField
String_t* ___U3CidU3Ek__BackingField_1;
// System.Type UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor_Cinfo::<subsystemImplementationType>k__BackingField
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3CsupportsInstallU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Cinfo_t0D2C3593DAA5642EF84F81D756DBDDACC2E27C1A, ___U3CsupportsInstallU3Ek__BackingField_0)); }
inline bool get_U3CsupportsInstallU3Ek__BackingField_0() const { return ___U3CsupportsInstallU3Ek__BackingField_0; }
inline bool* get_address_of_U3CsupportsInstallU3Ek__BackingField_0() { return &___U3CsupportsInstallU3Ek__BackingField_0; }
inline void set_U3CsupportsInstallU3Ek__BackingField_0(bool value)
{
___U3CsupportsInstallU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(Cinfo_t0D2C3593DAA5642EF84F81D756DBDDACC2E27C1A, ___U3CidU3Ek__BackingField_1)); }
inline String_t* get_U3CidU3Ek__BackingField_1() const { return ___U3CidU3Ek__BackingField_1; }
inline String_t** get_address_of_U3CidU3Ek__BackingField_1() { return &___U3CidU3Ek__BackingField_1; }
inline void set_U3CidU3Ek__BackingField_1(String_t* value)
{
___U3CidU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CidU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemImplementationTypeU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(Cinfo_t0D2C3593DAA5642EF84F81D756DBDDACC2E27C1A, ___U3CsubsystemImplementationTypeU3Ek__BackingField_2)); }
inline Type_t * get_U3CsubsystemImplementationTypeU3Ek__BackingField_2() const { return ___U3CsubsystemImplementationTypeU3Ek__BackingField_2; }
inline Type_t ** get_address_of_U3CsubsystemImplementationTypeU3Ek__BackingField_2() { return &___U3CsubsystemImplementationTypeU3Ek__BackingField_2; }
inline void set_U3CsubsystemImplementationTypeU3Ek__BackingField_2(Type_t * value)
{
___U3CsubsystemImplementationTypeU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemImplementationTypeU3Ek__BackingField_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo
struct Cinfo_t0D2C3593DAA5642EF84F81D756DBDDACC2E27C1A_marshaled_pinvoke
{
int32_t ___U3CsupportsInstallU3Ek__BackingField_0;
char* ___U3CidU3Ek__BackingField_1;
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_2;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo
struct Cinfo_t0D2C3593DAA5642EF84F81D756DBDDACC2E27C1A_marshaled_com
{
int32_t ___U3CsupportsInstallU3Ek__BackingField_0;
Il2CppChar* ___U3CidU3Ek__BackingField_1;
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_2;
};
// UnityEngine.XR.Bone
struct Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0
{
public:
// System.UInt64 UnityEngine.XR.Bone::m_DeviceId
uint64_t ___m_DeviceId_0;
// System.UInt32 UnityEngine.XR.Bone::m_FeatureIndex
uint32_t ___m_FeatureIndex_1;
public:
inline static int32_t get_offset_of_m_DeviceId_0() { return static_cast<int32_t>(offsetof(Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0, ___m_DeviceId_0)); }
inline uint64_t get_m_DeviceId_0() const { return ___m_DeviceId_0; }
inline uint64_t* get_address_of_m_DeviceId_0() { return &___m_DeviceId_0; }
inline void set_m_DeviceId_0(uint64_t value)
{
___m_DeviceId_0 = value;
}
inline static int32_t get_offset_of_m_FeatureIndex_1() { return static_cast<int32_t>(offsetof(Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0, ___m_FeatureIndex_1)); }
inline uint32_t get_m_FeatureIndex_1() const { return ___m_FeatureIndex_1; }
inline uint32_t* get_address_of_m_FeatureIndex_1() { return &___m_FeatureIndex_1; }
inline void set_m_FeatureIndex_1(uint32_t value)
{
___m_FeatureIndex_1 = value;
}
};
// UnityEngine.XR.Eyes
struct Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5
{
public:
// System.UInt64 UnityEngine.XR.Eyes::m_DeviceId
uint64_t ___m_DeviceId_0;
// System.UInt32 UnityEngine.XR.Eyes::m_FeatureIndex
uint32_t ___m_FeatureIndex_1;
public:
inline static int32_t get_offset_of_m_DeviceId_0() { return static_cast<int32_t>(offsetof(Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5, ___m_DeviceId_0)); }
inline uint64_t get_m_DeviceId_0() const { return ___m_DeviceId_0; }
inline uint64_t* get_address_of_m_DeviceId_0() { return &___m_DeviceId_0; }
inline void set_m_DeviceId_0(uint64_t value)
{
___m_DeviceId_0 = value;
}
inline static int32_t get_offset_of_m_FeatureIndex_1() { return static_cast<int32_t>(offsetof(Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5, ___m_FeatureIndex_1)); }
inline uint32_t get_m_FeatureIndex_1() const { return ___m_FeatureIndex_1; }
inline uint32_t* get_address_of_m_FeatureIndex_1() { return &___m_FeatureIndex_1; }
inline void set_m_FeatureIndex_1(uint32_t value)
{
___m_FeatureIndex_1 = value;
}
};
// UnityEngine.XR.Hand
struct Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3
{
public:
// System.UInt64 UnityEngine.XR.Hand::m_DeviceId
uint64_t ___m_DeviceId_0;
// System.UInt32 UnityEngine.XR.Hand::m_FeatureIndex
uint32_t ___m_FeatureIndex_1;
public:
inline static int32_t get_offset_of_m_DeviceId_0() { return static_cast<int32_t>(offsetof(Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3, ___m_DeviceId_0)); }
inline uint64_t get_m_DeviceId_0() const { return ___m_DeviceId_0; }
inline uint64_t* get_address_of_m_DeviceId_0() { return &___m_DeviceId_0; }
inline void set_m_DeviceId_0(uint64_t value)
{
___m_DeviceId_0 = value;
}
inline static int32_t get_offset_of_m_FeatureIndex_1() { return static_cast<int32_t>(offsetof(Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3, ___m_FeatureIndex_1)); }
inline uint32_t get_m_FeatureIndex_1() const { return ___m_FeatureIndex_1; }
inline uint32_t* get_address_of_m_FeatureIndex_1() { return &___m_FeatureIndex_1; }
inline void set_m_FeatureIndex_1(uint32_t value)
{
___m_FeatureIndex_1 = value;
}
};
// UnityEngine.XR.iOS.ARLightEstimate
struct ARLightEstimate_t1D878D701972E94A36A287385FE1D8E932C05166
{
public:
// System.Single UnityEngine.XR.iOS.ARLightEstimate::ambientIntensity
float ___ambientIntensity_0;
public:
inline static int32_t get_offset_of_ambientIntensity_0() { return static_cast<int32_t>(offsetof(ARLightEstimate_t1D878D701972E94A36A287385FE1D8E932C05166, ___ambientIntensity_0)); }
inline float get_ambientIntensity_0() const { return ___ambientIntensity_0; }
inline float* get_address_of_ambientIntensity_0() { return &___ambientIntensity_0; }
inline void set_ambientIntensity_0(float value)
{
___ambientIntensity_0 = value;
}
};
// UnityEngine.XR.iOS.ARPoint
struct ARPoint_t88E48F1C5C439AA12E4F178D93A44F5EA6EB21E2
{
public:
// System.Double UnityEngine.XR.iOS.ARPoint::x
double ___x_0;
// System.Double UnityEngine.XR.iOS.ARPoint::y
double ___y_1;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(ARPoint_t88E48F1C5C439AA12E4F178D93A44F5EA6EB21E2, ___x_0)); }
inline double get_x_0() const { return ___x_0; }
inline double* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(double value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(ARPoint_t88E48F1C5C439AA12E4F178D93A44F5EA6EB21E2, ___y_1)); }
inline double get_y_1() const { return ___y_1; }
inline double* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(double value)
{
___y_1 = value;
}
};
// UnityEngine.XR.iOS.ARSize
struct ARSize_t8C8DA70FE8A29C830639F66636C653E0CC5C7FCA
{
public:
// System.Double UnityEngine.XR.iOS.ARSize::width
double ___width_0;
// System.Double UnityEngine.XR.iOS.ARSize::height
double ___height_1;
public:
inline static int32_t get_offset_of_width_0() { return static_cast<int32_t>(offsetof(ARSize_t8C8DA70FE8A29C830639F66636C653E0CC5C7FCA, ___width_0)); }
inline double get_width_0() const { return ___width_0; }
inline double* get_address_of_width_0() { return &___width_0; }
inline void set_width_0(double value)
{
___width_0 = value;
}
inline static int32_t get_offset_of_height_1() { return static_cast<int32_t>(offsetof(ARSize_t8C8DA70FE8A29C830639F66636C653E0CC5C7FCA, ___height_1)); }
inline double get_height_1() const { return ___height_1; }
inline double* get_address_of_height_1() { return &___height_1; }
inline void set_height_1(double value)
{
___height_1 = value;
}
};
// UnityEngine.XR.iOS.UnityARLightEstimate
struct UnityARLightEstimate_tCC7C13BED276766FF1F846160D0E9A61746B5132
{
public:
// System.Single UnityEngine.XR.iOS.UnityARLightEstimate::ambientIntensity
float ___ambientIntensity_0;
// System.Single UnityEngine.XR.iOS.UnityARLightEstimate::ambientColorTemperature
float ___ambientColorTemperature_1;
public:
inline static int32_t get_offset_of_ambientIntensity_0() { return static_cast<int32_t>(offsetof(UnityARLightEstimate_tCC7C13BED276766FF1F846160D0E9A61746B5132, ___ambientIntensity_0)); }
inline float get_ambientIntensity_0() const { return ___ambientIntensity_0; }
inline float* get_address_of_ambientIntensity_0() { return &___ambientIntensity_0; }
inline void set_ambientIntensity_0(float value)
{
___ambientIntensity_0 = value;
}
inline static int32_t get_offset_of_ambientColorTemperature_1() { return static_cast<int32_t>(offsetof(UnityARLightEstimate_tCC7C13BED276766FF1F846160D0E9A61746B5132, ___ambientColorTemperature_1)); }
inline float get_ambientColorTemperature_1() const { return ___ambientColorTemperature_1; }
inline float* get_address_of_ambientColorTemperature_1() { return &___ambientColorTemperature_1; }
inline void set_ambientColorTemperature_1(float value)
{
___ambientColorTemperature_1 = value;
}
};
// UnityEngineInternal.Input.NativeInputEventBuffer
struct NativeInputEventBuffer_t9960648276F01C5C3435E0E6FD870F2DA8A132EF
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Void* UnityEngineInternal.Input.NativeInputEventBuffer::eventBuffer
void* ___eventBuffer_0;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
void* ___eventBuffer_0_forAlignmentOnly;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___eventCount_1_OffsetPadding[8];
// System.Int32 UnityEngineInternal.Input.NativeInputEventBuffer::eventCount
int32_t ___eventCount_1;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___eventCount_1_OffsetPadding_forAlignmentOnly[8];
int32_t ___eventCount_1_forAlignmentOnly;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___sizeInBytes_2_OffsetPadding[12];
// System.Int32 UnityEngineInternal.Input.NativeInputEventBuffer::sizeInBytes
int32_t ___sizeInBytes_2;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___sizeInBytes_2_OffsetPadding_forAlignmentOnly[12];
int32_t ___sizeInBytes_2_forAlignmentOnly;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___capacityInBytes_3_OffsetPadding[16];
// System.Int32 UnityEngineInternal.Input.NativeInputEventBuffer::capacityInBytes
int32_t ___capacityInBytes_3;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___capacityInBytes_3_OffsetPadding_forAlignmentOnly[16];
int32_t ___capacityInBytes_3_forAlignmentOnly;
};
#pragma pack(pop, tp)
};
};
uint8_t NativeInputEventBuffer_t9960648276F01C5C3435E0E6FD870F2DA8A132EF__padding[20];
};
public:
inline static int32_t get_offset_of_eventBuffer_0() { return static_cast<int32_t>(offsetof(NativeInputEventBuffer_t9960648276F01C5C3435E0E6FD870F2DA8A132EF, ___eventBuffer_0)); }
inline void* get_eventBuffer_0() const { return ___eventBuffer_0; }
inline void** get_address_of_eventBuffer_0() { return &___eventBuffer_0; }
inline void set_eventBuffer_0(void* value)
{
___eventBuffer_0 = value;
}
inline static int32_t get_offset_of_eventCount_1() { return static_cast<int32_t>(offsetof(NativeInputEventBuffer_t9960648276F01C5C3435E0E6FD870F2DA8A132EF, ___eventCount_1)); }
inline int32_t get_eventCount_1() const { return ___eventCount_1; }
inline int32_t* get_address_of_eventCount_1() { return &___eventCount_1; }
inline void set_eventCount_1(int32_t value)
{
___eventCount_1 = value;
}
inline static int32_t get_offset_of_sizeInBytes_2() { return static_cast<int32_t>(offsetof(NativeInputEventBuffer_t9960648276F01C5C3435E0E6FD870F2DA8A132EF, ___sizeInBytes_2)); }
inline int32_t get_sizeInBytes_2() const { return ___sizeInBytes_2; }
inline int32_t* get_address_of_sizeInBytes_2() { return &___sizeInBytes_2; }
inline void set_sizeInBytes_2(int32_t value)
{
___sizeInBytes_2 = value;
}
inline static int32_t get_offset_of_capacityInBytes_3() { return static_cast<int32_t>(offsetof(NativeInputEventBuffer_t9960648276F01C5C3435E0E6FD870F2DA8A132EF, ___capacityInBytes_3)); }
inline int32_t get_capacityInBytes_3() const { return ___capacityInBytes_3; }
inline int32_t* get_address_of_capacityInBytes_3() { return &___capacityInBytes_3; }
inline void set_capacityInBytes_3(int32_t value)
{
___capacityInBytes_3 = 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;
}
};
// ColorChangedEvent
struct ColorChangedEvent_tD7675EE515A344B6B9A4877082202AC7B307FD9F : public UnityEvent_1_tFB475F569CC8852B004B3F2DE7536E67324C2AF8
{
public:
public:
};
// ColorValues
struct ColorValues_t5325D63EAB551F8B6C6247581497F0F5CF528C41
{
public:
// System.Int32 ColorValues::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ColorValues_t5325D63EAB551F8B6C6247581497F0F5CF528C41, ___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;
}
};
// DigitalRuby.PyroParticles.SingleLineAttribute
struct SingleLineAttribute_t16816012F01A253DAEC465A530101F986F263BB4 : public PropertyAttribute_t25BFFC093C9C96E3CCF4EAB36F5DC6F937B1FA54
{
public:
// System.String DigitalRuby.PyroParticles.SingleLineAttribute::<Tooltip>k__BackingField
String_t* ___U3CTooltipU3Ek__BackingField_0;
public:
inline static int32_t get_offset_of_U3CTooltipU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(SingleLineAttribute_t16816012F01A253DAEC465A530101F986F263BB4, ___U3CTooltipU3Ek__BackingField_0)); }
inline String_t* get_U3CTooltipU3Ek__BackingField_0() const { return ___U3CTooltipU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CTooltipU3Ek__BackingField_0() { return &___U3CTooltipU3Ek__BackingField_0; }
inline void set_U3CTooltipU3Ek__BackingField_0(String_t* value)
{
___U3CTooltipU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CTooltipU3Ek__BackingField_0), (void*)value);
}
};
// FocusSquare_FocusState
struct FocusState_t1B277CF9E686879A9BA54318345E7BEDD44A232C
{
public:
// System.Int32 FocusSquare_FocusState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FocusState_t1B277CF9E686879A9BA54318345E7BEDD44A232C, ___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;
}
};
// HSVChangedEvent
struct HSVChangedEvent_t448E1E151C6D975F5EEA20A9B9024B61B1ACF482 : public UnityEvent_3_t7FACEC2E14577E663C491716C8B2AE54977FEF4C
{
public:
public:
};
// 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;
};
// Unity.Collections.Allocator
struct Allocator_t62A091275262E7067EAAD565B67764FA877D58D6
{
public:
// System.Int32 Unity.Collections.Allocator::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Allocator_t62A091275262E7067EAAD565B67764FA877D58D6, ___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.Analytics.AnalyticsSessionState
struct AnalyticsSessionState_t61CA873937E9A3B881B71B32F518A954A4C8F267
{
public:
// System.Int32 UnityEngine.Analytics.AnalyticsSessionState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AnalyticsSessionState_t61CA873937E9A3B881B71B32F518A954A4C8F267, ___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.AnimationEventSource
struct AnimationEventSource_t0CA86CB3D775209B46F475A99887C93530F20702
{
public:
// System.Int32 UnityEngine.AnimationEventSource::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AnimationEventSource_t0CA86CB3D775209B46F475A99887C93530F20702, ___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.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.Event
struct Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Event::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(Event_t187FF6A6B357447B83EC2064823EE0AEC5263210, ___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;
}
};
struct Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_StaticFields
{
public:
// UnityEngine.Event UnityEngine.Event::s_Current
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * ___s_Current_1;
// UnityEngine.Event UnityEngine.Event::s_MasterEvent
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * ___s_MasterEvent_2;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32> UnityEngine.Event::<>f__switchU24map0
Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * ___U3CU3Ef__switchU24map0_3;
public:
inline static int32_t get_offset_of_s_Current_1() { return static_cast<int32_t>(offsetof(Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_StaticFields, ___s_Current_1)); }
inline Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * get_s_Current_1() const { return ___s_Current_1; }
inline Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 ** get_address_of_s_Current_1() { return &___s_Current_1; }
inline void set_s_Current_1(Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * value)
{
___s_Current_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Current_1), (void*)value);
}
inline static int32_t get_offset_of_s_MasterEvent_2() { return static_cast<int32_t>(offsetof(Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_StaticFields, ___s_MasterEvent_2)); }
inline Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * get_s_MasterEvent_2() const { return ___s_MasterEvent_2; }
inline Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 ** get_address_of_s_MasterEvent_2() { return &___s_MasterEvent_2; }
inline void set_s_MasterEvent_2(Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * value)
{
___s_MasterEvent_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_MasterEvent_2), (void*)value);
}
inline static int32_t get_offset_of_U3CU3Ef__switchU24map0_3() { return static_cast<int32_t>(offsetof(Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_StaticFields, ___U3CU3Ef__switchU24map0_3)); }
inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * get_U3CU3Ef__switchU24map0_3() const { return ___U3CU3Ef__switchU24map0_3; }
inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB ** get_address_of_U3CU3Ef__switchU24map0_3() { return &___U3CU3Ef__switchU24map0_3; }
inline void set_U3CU3Ef__switchU24map0_3(Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * value)
{
___U3CU3Ef__switchU24map0_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3Ef__switchU24map0_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Event
struct Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
};
// Native definition for COM marshalling of UnityEngine.Event
struct Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_marshaled_com
{
intptr_t ___m_Ptr_0;
};
// UnityEngine.EventModifiers
struct EventModifiers_tC34E3018F3697001F894187AF6E9E63D7E203061
{
public:
// System.Int32 UnityEngine.EventModifiers::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventModifiers_tC34E3018F3697001F894187AF6E9E63D7E203061, ___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.EventType
struct EventType_t3D3937E705A4506226002DAB22071B7B181DA57B
{
public:
// System.Int32 UnityEngine.EventType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventType_t3D3937E705A4506226002DAB22071B7B181DA57B, ___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.Experimental.Animations.AnimationHumanStream
struct AnimationHumanStream_t576024C2BE0EAD2602F724B6C0A61A6A72E6F5C2
{
public:
// System.IntPtr UnityEngine.Experimental.Animations.AnimationHumanStream::stream
intptr_t ___stream_0;
public:
inline static int32_t get_offset_of_stream_0() { return static_cast<int32_t>(offsetof(AnimationHumanStream_t576024C2BE0EAD2602F724B6C0A61A6A72E6F5C2, ___stream_0)); }
inline intptr_t get_stream_0() const { return ___stream_0; }
inline intptr_t* get_address_of_stream_0() { return &___stream_0; }
inline void set_stream_0(intptr_t value)
{
___stream_0 = value;
}
};
// UnityEngine.Experimental.Animations.AnimationStream
struct AnimationStream_tF539D75F7B97F32656D025617E8EDB5C9A2F715E
{
public:
// System.UInt32 UnityEngine.Experimental.Animations.AnimationStream::m_AnimatorBindingsVersion
uint32_t ___m_AnimatorBindingsVersion_0;
// System.IntPtr UnityEngine.Experimental.Animations.AnimationStream::constant
intptr_t ___constant_1;
// System.IntPtr UnityEngine.Experimental.Animations.AnimationStream::input
intptr_t ___input_2;
// System.IntPtr UnityEngine.Experimental.Animations.AnimationStream::output
intptr_t ___output_3;
// System.IntPtr UnityEngine.Experimental.Animations.AnimationStream::workspace
intptr_t ___workspace_4;
// System.IntPtr UnityEngine.Experimental.Animations.AnimationStream::inputStreamAccessor
intptr_t ___inputStreamAccessor_5;
// System.IntPtr UnityEngine.Experimental.Animations.AnimationStream::animationHandleBinder
intptr_t ___animationHandleBinder_6;
public:
inline static int32_t get_offset_of_m_AnimatorBindingsVersion_0() { return static_cast<int32_t>(offsetof(AnimationStream_tF539D75F7B97F32656D025617E8EDB5C9A2F715E, ___m_AnimatorBindingsVersion_0)); }
inline uint32_t get_m_AnimatorBindingsVersion_0() const { return ___m_AnimatorBindingsVersion_0; }
inline uint32_t* get_address_of_m_AnimatorBindingsVersion_0() { return &___m_AnimatorBindingsVersion_0; }
inline void set_m_AnimatorBindingsVersion_0(uint32_t value)
{
___m_AnimatorBindingsVersion_0 = value;
}
inline static int32_t get_offset_of_constant_1() { return static_cast<int32_t>(offsetof(AnimationStream_tF539D75F7B97F32656D025617E8EDB5C9A2F715E, ___constant_1)); }
inline intptr_t get_constant_1() const { return ___constant_1; }
inline intptr_t* get_address_of_constant_1() { return &___constant_1; }
inline void set_constant_1(intptr_t value)
{
___constant_1 = value;
}
inline static int32_t get_offset_of_input_2() { return static_cast<int32_t>(offsetof(AnimationStream_tF539D75F7B97F32656D025617E8EDB5C9A2F715E, ___input_2)); }
inline intptr_t get_input_2() const { return ___input_2; }
inline intptr_t* get_address_of_input_2() { return &___input_2; }
inline void set_input_2(intptr_t value)
{
___input_2 = value;
}
inline static int32_t get_offset_of_output_3() { return static_cast<int32_t>(offsetof(AnimationStream_tF539D75F7B97F32656D025617E8EDB5C9A2F715E, ___output_3)); }
inline intptr_t get_output_3() const { return ___output_3; }
inline intptr_t* get_address_of_output_3() { return &___output_3; }
inline void set_output_3(intptr_t value)
{
___output_3 = value;
}
inline static int32_t get_offset_of_workspace_4() { return static_cast<int32_t>(offsetof(AnimationStream_tF539D75F7B97F32656D025617E8EDB5C9A2F715E, ___workspace_4)); }
inline intptr_t get_workspace_4() const { return ___workspace_4; }
inline intptr_t* get_address_of_workspace_4() { return &___workspace_4; }
inline void set_workspace_4(intptr_t value)
{
___workspace_4 = value;
}
inline static int32_t get_offset_of_inputStreamAccessor_5() { return static_cast<int32_t>(offsetof(AnimationStream_tF539D75F7B97F32656D025617E8EDB5C9A2F715E, ___inputStreamAccessor_5)); }
inline intptr_t get_inputStreamAccessor_5() const { return ___inputStreamAccessor_5; }
inline intptr_t* get_address_of_inputStreamAccessor_5() { return &___inputStreamAccessor_5; }
inline void set_inputStreamAccessor_5(intptr_t value)
{
___inputStreamAccessor_5 = value;
}
inline static int32_t get_offset_of_animationHandleBinder_6() { return static_cast<int32_t>(offsetof(AnimationStream_tF539D75F7B97F32656D025617E8EDB5C9A2F715E, ___animationHandleBinder_6)); }
inline intptr_t get_animationHandleBinder_6() const { return ___animationHandleBinder_6; }
inline intptr_t* get_address_of_animationHandleBinder_6() { return &___animationHandleBinder_6; }
inline void set_animationHandleBinder_6(intptr_t value)
{
___animationHandleBinder_6 = value;
}
};
// UnityEngine.Experimental.XR.GestureEventState
struct GestureEventState_t8CD572FBB171284FB9F873ACEF77E7BDC326C922
{
public:
// System.UInt32 UnityEngine.Experimental.XR.GestureEventState::value__
uint32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GestureEventState_t8CD572FBB171284FB9F873ACEF77E7BDC326C922, ___value___2)); }
inline uint32_t get_value___2() const { return ___value___2; }
inline uint32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Experimental.XR.GestureHoldValidFields
struct GestureHoldValidFields_t6B4143D37C45FCA9780F7BADDD582B6EF0323FFE
{
public:
// System.UInt32 UnityEngine.Experimental.XR.GestureHoldValidFields::value__
uint32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GestureHoldValidFields_t6B4143D37C45FCA9780F7BADDD582B6EF0323FFE, ___value___2)); }
inline uint32_t get_value___2() const { return ___value___2; }
inline uint32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Experimental.XR.GestureManipulationValidFields
struct GestureManipulationValidFields_t38C72CBF011B56FBD9653299A864D4219ED5BC8F
{
public:
// System.UInt32 UnityEngine.Experimental.XR.GestureManipulationValidFields::value__
uint32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GestureManipulationValidFields_t38C72CBF011B56FBD9653299A864D4219ED5BC8F, ___value___2)); }
inline uint32_t get_value___2() const { return ___value___2; }
inline uint32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Experimental.XR.GestureNavigationValidFields
struct GestureNavigationValidFields_t90D7FD00C42C32C7E4CEAB7C89296AEAB80EFC7A
{
public:
// System.UInt32 UnityEngine.Experimental.XR.GestureNavigationValidFields::value__
uint32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GestureNavigationValidFields_t90D7FD00C42C32C7E4CEAB7C89296AEAB80EFC7A, ___value___2)); }
inline uint32_t get_value___2() const { return ___value___2; }
inline uint32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Experimental.XR.GestureRecognitionValidFields
struct GestureRecognitionValidFields_tB4168FF3AED1B9EB5DD9E81316827080DD500636
{
public:
// System.UInt32 UnityEngine.Experimental.XR.GestureRecognitionValidFields::value__
uint32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GestureRecognitionValidFields_tB4168FF3AED1B9EB5DD9E81316827080DD500636, ___value___2)); }
inline uint32_t get_value___2() const { return ___value___2; }
inline uint32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Experimental.XR.GestureTappedValidFields
struct GestureTappedValidFields_t47AC525F8D30838CFCAC4A8E592339A0CA7C31EB
{
public:
// System.UInt32 UnityEngine.Experimental.XR.GestureTappedValidFields::value__
uint32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GestureTappedValidFields_t47AC525F8D30838CFCAC4A8E592339A0CA7C31EB, ___value___2)); }
inline uint32_t get_value___2() const { return ___value___2; }
inline uint32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Experimental.XR.GestureTrackingCoordinates
struct GestureTrackingCoordinates_t633D971D579C2223A4A78E5A0476345C8D621C75
{
public:
// System.UInt32 UnityEngine.Experimental.XR.GestureTrackingCoordinates::value__
uint32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GestureTrackingCoordinates_t633D971D579C2223A4A78E5A0476345C8D621C75, ___value___2)); }
inline uint32_t get_value___2() const { return ___value___2; }
inline uint32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Experimental.XR.MeshGenerationStatus
struct MeshGenerationStatus_t58ABE4F39930471B888640F3BF5843A5A52CDBC6
{
public:
// System.Int32 UnityEngine.Experimental.XR.MeshGenerationStatus::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MeshGenerationStatus_t58ABE4F39930471B888640F3BF5843A5A52CDBC6, ___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.Experimental.XR.MeshVertexAttributes
struct MeshVertexAttributes_t4C1E42BCB078C4499F890CE145589B9085A5D737
{
public:
// System.Int32 UnityEngine.Experimental.XR.MeshVertexAttributes::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MeshVertexAttributes_t4C1E42BCB078C4499F890CE145589B9085A5D737, ___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.Experimental.XR.PlaneAlignment
struct PlaneAlignment_tA2F16C66968FD0E8F2D028575BF5A74395340AC6
{
public:
// System.Int32 UnityEngine.Experimental.XR.PlaneAlignment::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PlaneAlignment_tA2F16C66968FD0E8F2D028575BF5A74395340AC6, ___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.Experimental.XR.TrackingState
struct TrackingState_tC867717ED982A6E61C703B6A0CCF908E9642C854
{
public:
// System.Int32 UnityEngine.Experimental.XR.TrackingState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TrackingState_tC867717ED982A6E61C703B6A0CCF908E9642C854, ___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.FocusType
struct FocusType_t8242637722FC265816544B73BC14E4293A78FD85
{
public:
// System.Int32 UnityEngine.FocusType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FocusType_t8242637722FC265816544B73BC14E4293A78FD85, ___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.GUI
struct GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA : public RuntimeObject
{
public:
public:
};
struct GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields
{
public:
// System.Int32 UnityEngine.GUI::s_HotTextField
int32_t ___s_HotTextField_0;
// System.Int32 UnityEngine.GUI::s_BoxHash
int32_t ___s_BoxHash_1;
// System.Int32 UnityEngine.GUI::s_ButonHash
int32_t ___s_ButonHash_2;
// System.Int32 UnityEngine.GUI::s_RepeatButtonHash
int32_t ___s_RepeatButtonHash_3;
// System.Int32 UnityEngine.GUI::s_ToggleHash
int32_t ___s_ToggleHash_4;
// System.Int32 UnityEngine.GUI::s_ButtonGridHash
int32_t ___s_ButtonGridHash_5;
// System.Int32 UnityEngine.GUI::s_SliderHash
int32_t ___s_SliderHash_6;
// System.Int32 UnityEngine.GUI::s_BeginGroupHash
int32_t ___s_BeginGroupHash_7;
// System.Int32 UnityEngine.GUI::s_ScrollviewHash
int32_t ___s_ScrollviewHash_8;
// System.DateTime UnityEngine.GUI::<nextScrollStepTime>k__BackingField
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___U3CnextScrollStepTimeU3Ek__BackingField_9;
// UnityEngine.GUISkin UnityEngine.GUI::s_Skin
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * ___s_Skin_10;
// UnityEngineInternal.GenericStack UnityEngine.GUI::<scrollViewStates>k__BackingField
GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * ___U3CscrollViewStatesU3Ek__BackingField_11;
public:
inline static int32_t get_offset_of_s_HotTextField_0() { return static_cast<int32_t>(offsetof(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields, ___s_HotTextField_0)); }
inline int32_t get_s_HotTextField_0() const { return ___s_HotTextField_0; }
inline int32_t* get_address_of_s_HotTextField_0() { return &___s_HotTextField_0; }
inline void set_s_HotTextField_0(int32_t value)
{
___s_HotTextField_0 = value;
}
inline static int32_t get_offset_of_s_BoxHash_1() { return static_cast<int32_t>(offsetof(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields, ___s_BoxHash_1)); }
inline int32_t get_s_BoxHash_1() const { return ___s_BoxHash_1; }
inline int32_t* get_address_of_s_BoxHash_1() { return &___s_BoxHash_1; }
inline void set_s_BoxHash_1(int32_t value)
{
___s_BoxHash_1 = value;
}
inline static int32_t get_offset_of_s_ButonHash_2() { return static_cast<int32_t>(offsetof(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields, ___s_ButonHash_2)); }
inline int32_t get_s_ButonHash_2() const { return ___s_ButonHash_2; }
inline int32_t* get_address_of_s_ButonHash_2() { return &___s_ButonHash_2; }
inline void set_s_ButonHash_2(int32_t value)
{
___s_ButonHash_2 = value;
}
inline static int32_t get_offset_of_s_RepeatButtonHash_3() { return static_cast<int32_t>(offsetof(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields, ___s_RepeatButtonHash_3)); }
inline int32_t get_s_RepeatButtonHash_3() const { return ___s_RepeatButtonHash_3; }
inline int32_t* get_address_of_s_RepeatButtonHash_3() { return &___s_RepeatButtonHash_3; }
inline void set_s_RepeatButtonHash_3(int32_t value)
{
___s_RepeatButtonHash_3 = value;
}
inline static int32_t get_offset_of_s_ToggleHash_4() { return static_cast<int32_t>(offsetof(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields, ___s_ToggleHash_4)); }
inline int32_t get_s_ToggleHash_4() const { return ___s_ToggleHash_4; }
inline int32_t* get_address_of_s_ToggleHash_4() { return &___s_ToggleHash_4; }
inline void set_s_ToggleHash_4(int32_t value)
{
___s_ToggleHash_4 = value;
}
inline static int32_t get_offset_of_s_ButtonGridHash_5() { return static_cast<int32_t>(offsetof(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields, ___s_ButtonGridHash_5)); }
inline int32_t get_s_ButtonGridHash_5() const { return ___s_ButtonGridHash_5; }
inline int32_t* get_address_of_s_ButtonGridHash_5() { return &___s_ButtonGridHash_5; }
inline void set_s_ButtonGridHash_5(int32_t value)
{
___s_ButtonGridHash_5 = value;
}
inline static int32_t get_offset_of_s_SliderHash_6() { return static_cast<int32_t>(offsetof(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields, ___s_SliderHash_6)); }
inline int32_t get_s_SliderHash_6() const { return ___s_SliderHash_6; }
inline int32_t* get_address_of_s_SliderHash_6() { return &___s_SliderHash_6; }
inline void set_s_SliderHash_6(int32_t value)
{
___s_SliderHash_6 = value;
}
inline static int32_t get_offset_of_s_BeginGroupHash_7() { return static_cast<int32_t>(offsetof(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields, ___s_BeginGroupHash_7)); }
inline int32_t get_s_BeginGroupHash_7() const { return ___s_BeginGroupHash_7; }
inline int32_t* get_address_of_s_BeginGroupHash_7() { return &___s_BeginGroupHash_7; }
inline void set_s_BeginGroupHash_7(int32_t value)
{
___s_BeginGroupHash_7 = value;
}
inline static int32_t get_offset_of_s_ScrollviewHash_8() { return static_cast<int32_t>(offsetof(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields, ___s_ScrollviewHash_8)); }
inline int32_t get_s_ScrollviewHash_8() const { return ___s_ScrollviewHash_8; }
inline int32_t* get_address_of_s_ScrollviewHash_8() { return &___s_ScrollviewHash_8; }
inline void set_s_ScrollviewHash_8(int32_t value)
{
___s_ScrollviewHash_8 = value;
}
inline static int32_t get_offset_of_U3CnextScrollStepTimeU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields, ___U3CnextScrollStepTimeU3Ek__BackingField_9)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_U3CnextScrollStepTimeU3Ek__BackingField_9() const { return ___U3CnextScrollStepTimeU3Ek__BackingField_9; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_U3CnextScrollStepTimeU3Ek__BackingField_9() { return &___U3CnextScrollStepTimeU3Ek__BackingField_9; }
inline void set_U3CnextScrollStepTimeU3Ek__BackingField_9(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___U3CnextScrollStepTimeU3Ek__BackingField_9 = value;
}
inline static int32_t get_offset_of_s_Skin_10() { return static_cast<int32_t>(offsetof(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields, ___s_Skin_10)); }
inline GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * get_s_Skin_10() const { return ___s_Skin_10; }
inline GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 ** get_address_of_s_Skin_10() { return &___s_Skin_10; }
inline void set_s_Skin_10(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * value)
{
___s_Skin_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Skin_10), (void*)value);
}
inline static int32_t get_offset_of_U3CscrollViewStatesU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields, ___U3CscrollViewStatesU3Ek__BackingField_11)); }
inline GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * get_U3CscrollViewStatesU3Ek__BackingField_11() const { return ___U3CscrollViewStatesU3Ek__BackingField_11; }
inline GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC ** get_address_of_U3CscrollViewStatesU3Ek__BackingField_11() { return &___U3CscrollViewStatesU3Ek__BackingField_11; }
inline void set_U3CscrollViewStatesU3Ek__BackingField_11(GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * value)
{
___U3CscrollViewStatesU3Ek__BackingField_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CscrollViewStatesU3Ek__BackingField_11), (void*)value);
}
};
// UnityEngine.GUILayoutEntry
struct GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 : public RuntimeObject
{
public:
// System.Single UnityEngine.GUILayoutEntry::minWidth
float ___minWidth_0;
// System.Single UnityEngine.GUILayoutEntry::maxWidth
float ___maxWidth_1;
// System.Single UnityEngine.GUILayoutEntry::minHeight
float ___minHeight_2;
// System.Single UnityEngine.GUILayoutEntry::maxHeight
float ___maxHeight_3;
// UnityEngine.Rect UnityEngine.GUILayoutEntry::rect
Rect_t35B976DE901B5423C11705E156938EA27AB402CE ___rect_4;
// System.Int32 UnityEngine.GUILayoutEntry::stretchWidth
int32_t ___stretchWidth_5;
// System.Int32 UnityEngine.GUILayoutEntry::stretchHeight
int32_t ___stretchHeight_6;
// System.Boolean UnityEngine.GUILayoutEntry::consideredForMargin
bool ___consideredForMargin_7;
// UnityEngine.GUIStyle UnityEngine.GUILayoutEntry::m_Style
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_Style_8;
public:
inline static int32_t get_offset_of_minWidth_0() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845, ___minWidth_0)); }
inline float get_minWidth_0() const { return ___minWidth_0; }
inline float* get_address_of_minWidth_0() { return &___minWidth_0; }
inline void set_minWidth_0(float value)
{
___minWidth_0 = value;
}
inline static int32_t get_offset_of_maxWidth_1() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845, ___maxWidth_1)); }
inline float get_maxWidth_1() const { return ___maxWidth_1; }
inline float* get_address_of_maxWidth_1() { return &___maxWidth_1; }
inline void set_maxWidth_1(float value)
{
___maxWidth_1 = value;
}
inline static int32_t get_offset_of_minHeight_2() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845, ___minHeight_2)); }
inline float get_minHeight_2() const { return ___minHeight_2; }
inline float* get_address_of_minHeight_2() { return &___minHeight_2; }
inline void set_minHeight_2(float value)
{
___minHeight_2 = value;
}
inline static int32_t get_offset_of_maxHeight_3() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845, ___maxHeight_3)); }
inline float get_maxHeight_3() const { return ___maxHeight_3; }
inline float* get_address_of_maxHeight_3() { return &___maxHeight_3; }
inline void set_maxHeight_3(float value)
{
___maxHeight_3 = value;
}
inline static int32_t get_offset_of_rect_4() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845, ___rect_4)); }
inline Rect_t35B976DE901B5423C11705E156938EA27AB402CE get_rect_4() const { return ___rect_4; }
inline Rect_t35B976DE901B5423C11705E156938EA27AB402CE * get_address_of_rect_4() { return &___rect_4; }
inline void set_rect_4(Rect_t35B976DE901B5423C11705E156938EA27AB402CE value)
{
___rect_4 = value;
}
inline static int32_t get_offset_of_stretchWidth_5() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845, ___stretchWidth_5)); }
inline int32_t get_stretchWidth_5() const { return ___stretchWidth_5; }
inline int32_t* get_address_of_stretchWidth_5() { return &___stretchWidth_5; }
inline void set_stretchWidth_5(int32_t value)
{
___stretchWidth_5 = value;
}
inline static int32_t get_offset_of_stretchHeight_6() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845, ___stretchHeight_6)); }
inline int32_t get_stretchHeight_6() const { return ___stretchHeight_6; }
inline int32_t* get_address_of_stretchHeight_6() { return &___stretchHeight_6; }
inline void set_stretchHeight_6(int32_t value)
{
___stretchHeight_6 = value;
}
inline static int32_t get_offset_of_consideredForMargin_7() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845, ___consideredForMargin_7)); }
inline bool get_consideredForMargin_7() const { return ___consideredForMargin_7; }
inline bool* get_address_of_consideredForMargin_7() { return &___consideredForMargin_7; }
inline void set_consideredForMargin_7(bool value)
{
___consideredForMargin_7 = value;
}
inline static int32_t get_offset_of_m_Style_8() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845, ___m_Style_8)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_Style_8() const { return ___m_Style_8; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_Style_8() { return &___m_Style_8; }
inline void set_m_Style_8(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_Style_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Style_8), (void*)value);
}
};
struct GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_StaticFields
{
public:
// UnityEngine.Rect UnityEngine.GUILayoutEntry::kDummyRect
Rect_t35B976DE901B5423C11705E156938EA27AB402CE ___kDummyRect_9;
// System.Int32 UnityEngine.GUILayoutEntry::indent
int32_t ___indent_10;
public:
inline static int32_t get_offset_of_kDummyRect_9() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_StaticFields, ___kDummyRect_9)); }
inline Rect_t35B976DE901B5423C11705E156938EA27AB402CE get_kDummyRect_9() const { return ___kDummyRect_9; }
inline Rect_t35B976DE901B5423C11705E156938EA27AB402CE * get_address_of_kDummyRect_9() { return &___kDummyRect_9; }
inline void set_kDummyRect_9(Rect_t35B976DE901B5423C11705E156938EA27AB402CE value)
{
___kDummyRect_9 = value;
}
inline static int32_t get_offset_of_indent_10() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_StaticFields, ___indent_10)); }
inline int32_t get_indent_10() const { return ___indent_10; }
inline int32_t* get_address_of_indent_10() { return &___indent_10; }
inline void set_indent_10(int32_t value)
{
___indent_10 = value;
}
};
// UnityEngine.GUILayoutOption_Type
struct Type_t1060D19522CDA0F7C9A26733BE1E8C8E20AC1278
{
public:
// System.Int32 UnityEngine.GUILayoutOption_Type::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Type_t1060D19522CDA0F7C9A26733BE1E8C8E20AC1278, ___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.GUILayoutUtility
struct GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E : public RuntimeObject
{
public:
public:
};
struct GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields
{
public:
// System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.GUILayoutUtility_LayoutCache> UnityEngine.GUILayoutUtility::s_StoredLayouts
Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 * ___s_StoredLayouts_0;
// System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.GUILayoutUtility_LayoutCache> UnityEngine.GUILayoutUtility::s_StoredWindows
Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 * ___s_StoredWindows_1;
// UnityEngine.GUILayoutUtility_LayoutCache UnityEngine.GUILayoutUtility::current
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * ___current_2;
// UnityEngine.Rect UnityEngine.GUILayoutUtility::kDummyRect
Rect_t35B976DE901B5423C11705E156938EA27AB402CE ___kDummyRect_3;
public:
inline static int32_t get_offset_of_s_StoredLayouts_0() { return static_cast<int32_t>(offsetof(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields, ___s_StoredLayouts_0)); }
inline Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 * get_s_StoredLayouts_0() const { return ___s_StoredLayouts_0; }
inline Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 ** get_address_of_s_StoredLayouts_0() { return &___s_StoredLayouts_0; }
inline void set_s_StoredLayouts_0(Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 * value)
{
___s_StoredLayouts_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_StoredLayouts_0), (void*)value);
}
inline static int32_t get_offset_of_s_StoredWindows_1() { return static_cast<int32_t>(offsetof(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields, ___s_StoredWindows_1)); }
inline Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 * get_s_StoredWindows_1() const { return ___s_StoredWindows_1; }
inline Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 ** get_address_of_s_StoredWindows_1() { return &___s_StoredWindows_1; }
inline void set_s_StoredWindows_1(Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 * value)
{
___s_StoredWindows_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_StoredWindows_1), (void*)value);
}
inline static int32_t get_offset_of_current_2() { return static_cast<int32_t>(offsetof(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields, ___current_2)); }
inline LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * get_current_2() const { return ___current_2; }
inline LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 ** get_address_of_current_2() { return &___current_2; }
inline void set_current_2(LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * value)
{
___current_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_2), (void*)value);
}
inline static int32_t get_offset_of_kDummyRect_3() { return static_cast<int32_t>(offsetof(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields, ___kDummyRect_3)); }
inline Rect_t35B976DE901B5423C11705E156938EA27AB402CE get_kDummyRect_3() const { return ___kDummyRect_3; }
inline Rect_t35B976DE901B5423C11705E156938EA27AB402CE * get_address_of_kDummyRect_3() { return &___kDummyRect_3; }
inline void set_kDummyRect_3(Rect_t35B976DE901B5423C11705E156938EA27AB402CE value)
{
___kDummyRect_3 = value;
}
};
// UnityEngine.GUISettings
struct GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4 : public RuntimeObject
{
public:
// System.Boolean UnityEngine.GUISettings::m_DoubleClickSelectsWord
bool ___m_DoubleClickSelectsWord_0;
// System.Boolean UnityEngine.GUISettings::m_TripleClickSelectsLine
bool ___m_TripleClickSelectsLine_1;
// UnityEngine.Color UnityEngine.GUISettings::m_CursorColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_CursorColor_2;
// System.Single UnityEngine.GUISettings::m_CursorFlashSpeed
float ___m_CursorFlashSpeed_3;
// UnityEngine.Color UnityEngine.GUISettings::m_SelectionColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_SelectionColor_4;
public:
inline static int32_t get_offset_of_m_DoubleClickSelectsWord_0() { return static_cast<int32_t>(offsetof(GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4, ___m_DoubleClickSelectsWord_0)); }
inline bool get_m_DoubleClickSelectsWord_0() const { return ___m_DoubleClickSelectsWord_0; }
inline bool* get_address_of_m_DoubleClickSelectsWord_0() { return &___m_DoubleClickSelectsWord_0; }
inline void set_m_DoubleClickSelectsWord_0(bool value)
{
___m_DoubleClickSelectsWord_0 = value;
}
inline static int32_t get_offset_of_m_TripleClickSelectsLine_1() { return static_cast<int32_t>(offsetof(GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4, ___m_TripleClickSelectsLine_1)); }
inline bool get_m_TripleClickSelectsLine_1() const { return ___m_TripleClickSelectsLine_1; }
inline bool* get_address_of_m_TripleClickSelectsLine_1() { return &___m_TripleClickSelectsLine_1; }
inline void set_m_TripleClickSelectsLine_1(bool value)
{
___m_TripleClickSelectsLine_1 = value;
}
inline static int32_t get_offset_of_m_CursorColor_2() { return static_cast<int32_t>(offsetof(GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4, ___m_CursorColor_2)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_CursorColor_2() const { return ___m_CursorColor_2; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_CursorColor_2() { return &___m_CursorColor_2; }
inline void set_m_CursorColor_2(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_CursorColor_2 = value;
}
inline static int32_t get_offset_of_m_CursorFlashSpeed_3() { return static_cast<int32_t>(offsetof(GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4, ___m_CursorFlashSpeed_3)); }
inline float get_m_CursorFlashSpeed_3() const { return ___m_CursorFlashSpeed_3; }
inline float* get_address_of_m_CursorFlashSpeed_3() { return &___m_CursorFlashSpeed_3; }
inline void set_m_CursorFlashSpeed_3(float value)
{
___m_CursorFlashSpeed_3 = value;
}
inline static int32_t get_offset_of_m_SelectionColor_4() { return static_cast<int32_t>(offsetof(GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4, ___m_SelectionColor_4)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_SelectionColor_4() const { return ___m_SelectionColor_4; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_SelectionColor_4() { return &___m_SelectionColor_4; }
inline void set_m_SelectionColor_4(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_SelectionColor_4 = value;
}
};
// UnityEngine.GUIStyleState
struct GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.GUIStyleState::m_Ptr
intptr_t ___m_Ptr_0;
// UnityEngine.GUIStyle UnityEngine.GUIStyleState::m_SourceStyle
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_SourceStyle_1;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5, ___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;
}
inline static int32_t get_offset_of_m_SourceStyle_1() { return static_cast<int32_t>(offsetof(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5, ___m_SourceStyle_1)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_SourceStyle_1() const { return ___m_SourceStyle_1; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_SourceStyle_1() { return &___m_SourceStyle_1; }
inline void set_m_SourceStyle_1(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_SourceStyle_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SourceStyle_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.GUIStyleState
struct GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_pinvoke* ___m_SourceStyle_1;
};
// Native definition for COM marshalling of UnityEngine.GUIStyleState
struct GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com
{
intptr_t ___m_Ptr_0;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_com* ___m_SourceStyle_1;
};
// UnityEngine.HorizontalWrapMode
struct HorizontalWrapMode_t56D876281F814EC1AF0C21A34E20BBF4BEEA302C
{
public:
// System.Int32 UnityEngine.HorizontalWrapMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(HorizontalWrapMode_t56D876281F814EC1AF0C21A34E20BBF4BEEA302C, ___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.HumanLimit
struct HumanLimit_t6AB2A599FC9E1F7E1598954FA9A0E568ECA5B6F3
{
public:
// UnityEngine.Vector3 UnityEngine.HumanLimit::m_Min
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Min_0;
// UnityEngine.Vector3 UnityEngine.HumanLimit::m_Max
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Max_1;
// UnityEngine.Vector3 UnityEngine.HumanLimit::m_Center
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Center_2;
// System.Single UnityEngine.HumanLimit::m_AxisLength
float ___m_AxisLength_3;
// System.Int32 UnityEngine.HumanLimit::m_UseDefaultValues
int32_t ___m_UseDefaultValues_4;
public:
inline static int32_t get_offset_of_m_Min_0() { return static_cast<int32_t>(offsetof(HumanLimit_t6AB2A599FC9E1F7E1598954FA9A0E568ECA5B6F3, ___m_Min_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Min_0() const { return ___m_Min_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Min_0() { return &___m_Min_0; }
inline void set_m_Min_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Min_0 = value;
}
inline static int32_t get_offset_of_m_Max_1() { return static_cast<int32_t>(offsetof(HumanLimit_t6AB2A599FC9E1F7E1598954FA9A0E568ECA5B6F3, ___m_Max_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Max_1() const { return ___m_Max_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Max_1() { return &___m_Max_1; }
inline void set_m_Max_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Max_1 = value;
}
inline static int32_t get_offset_of_m_Center_2() { return static_cast<int32_t>(offsetof(HumanLimit_t6AB2A599FC9E1F7E1598954FA9A0E568ECA5B6F3, ___m_Center_2)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Center_2() const { return ___m_Center_2; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Center_2() { return &___m_Center_2; }
inline void set_m_Center_2(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Center_2 = value;
}
inline static int32_t get_offset_of_m_AxisLength_3() { return static_cast<int32_t>(offsetof(HumanLimit_t6AB2A599FC9E1F7E1598954FA9A0E568ECA5B6F3, ___m_AxisLength_3)); }
inline float get_m_AxisLength_3() const { return ___m_AxisLength_3; }
inline float* get_address_of_m_AxisLength_3() { return &___m_AxisLength_3; }
inline void set_m_AxisLength_3(float value)
{
___m_AxisLength_3 = value;
}
inline static int32_t get_offset_of_m_UseDefaultValues_4() { return static_cast<int32_t>(offsetof(HumanLimit_t6AB2A599FC9E1F7E1598954FA9A0E568ECA5B6F3, ___m_UseDefaultValues_4)); }
inline int32_t get_m_UseDefaultValues_4() const { return ___m_UseDefaultValues_4; }
inline int32_t* get_address_of_m_UseDefaultValues_4() { return &___m_UseDefaultValues_4; }
inline void set_m_UseDefaultValues_4(int32_t value)
{
___m_UseDefaultValues_4 = 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.ImagePosition
struct ImagePosition_tF065DB37618AF79318821CFE3F1577B99B65FC9C
{
public:
// System.Int32 UnityEngine.ImagePosition::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ImagePosition_tF065DB37618AF79318821CFE3F1577B99B65FC9C, ___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.IntegratedSubsystem
struct IntegratedSubsystem_t3DA4A857E71E63A49B52353DBD88FA880196117E : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.IntegratedSubsystem::m_Ptr
intptr_t ___m_Ptr_0;
// UnityEngine.ISubsystemDescriptor UnityEngine.IntegratedSubsystem::m_subsystemDescriptor
RuntimeObject* ___m_subsystemDescriptor_1;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(IntegratedSubsystem_t3DA4A857E71E63A49B52353DBD88FA880196117E, ___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;
}
inline static int32_t get_offset_of_m_subsystemDescriptor_1() { return static_cast<int32_t>(offsetof(IntegratedSubsystem_t3DA4A857E71E63A49B52353DBD88FA880196117E, ___m_subsystemDescriptor_1)); }
inline RuntimeObject* get_m_subsystemDescriptor_1() const { return ___m_subsystemDescriptor_1; }
inline RuntimeObject** get_address_of_m_subsystemDescriptor_1() { return &___m_subsystemDescriptor_1; }
inline void set_m_subsystemDescriptor_1(RuntimeObject* value)
{
___m_subsystemDescriptor_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_subsystemDescriptor_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.IntegratedSubsystem
struct IntegratedSubsystem_t3DA4A857E71E63A49B52353DBD88FA880196117E_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
RuntimeObject* ___m_subsystemDescriptor_1;
};
// Native definition for COM marshalling of UnityEngine.IntegratedSubsystem
struct IntegratedSubsystem_t3DA4A857E71E63A49B52353DBD88FA880196117E_marshaled_com
{
intptr_t ___m_Ptr_0;
RuntimeObject* ___m_subsystemDescriptor_1;
};
// UnityEngine.IntegratedSubsystemDescriptor
struct IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.IntegratedSubsystemDescriptor::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812, ___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.IntegratedSubsystemDescriptor
struct IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
};
// Native definition for COM marshalling of UnityEngine.IntegratedSubsystemDescriptor
struct IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812_marshaled_com
{
intptr_t ___m_Ptr_0;
};
// UnityEngine.Networking.CertificateHandler
struct CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Networking.CertificateHandler::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0, ___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.Networking.CertificateHandler
struct CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
};
// Native definition for COM marshalling of UnityEngine.Networking.CertificateHandler
struct CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_com
{
intptr_t ___m_Ptr_0;
};
// 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.ParticleSystem_Particle
struct Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E
{
public:
// UnityEngine.Vector3 UnityEngine.ParticleSystem_Particle::m_Position
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Position_0;
// UnityEngine.Vector3 UnityEngine.ParticleSystem_Particle::m_Velocity
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Velocity_1;
// UnityEngine.Vector3 UnityEngine.ParticleSystem_Particle::m_AnimatedVelocity
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_AnimatedVelocity_2;
// UnityEngine.Vector3 UnityEngine.ParticleSystem_Particle::m_InitialVelocity
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_InitialVelocity_3;
// UnityEngine.Vector3 UnityEngine.ParticleSystem_Particle::m_AxisOfRotation
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_AxisOfRotation_4;
// UnityEngine.Vector3 UnityEngine.ParticleSystem_Particle::m_Rotation
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Rotation_5;
// UnityEngine.Vector3 UnityEngine.ParticleSystem_Particle::m_AngularVelocity
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_AngularVelocity_6;
// UnityEngine.Vector3 UnityEngine.ParticleSystem_Particle::m_StartSize
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_StartSize_7;
// UnityEngine.Color32 UnityEngine.ParticleSystem_Particle::m_StartColor
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___m_StartColor_8;
// System.UInt32 UnityEngine.ParticleSystem_Particle::m_RandomSeed
uint32_t ___m_RandomSeed_9;
// System.Single UnityEngine.ParticleSystem_Particle::m_Lifetime
float ___m_Lifetime_10;
// System.Single UnityEngine.ParticleSystem_Particle::m_StartLifetime
float ___m_StartLifetime_11;
// System.Int32 UnityEngine.ParticleSystem_Particle::m_MeshIndex
int32_t ___m_MeshIndex_12;
// System.Single UnityEngine.ParticleSystem_Particle::m_EmitAccumulator0
float ___m_EmitAccumulator0_13;
// System.Single UnityEngine.ParticleSystem_Particle::m_EmitAccumulator1
float ___m_EmitAccumulator1_14;
// System.UInt32 UnityEngine.ParticleSystem_Particle::m_Flags
uint32_t ___m_Flags_15;
public:
inline static int32_t get_offset_of_m_Position_0() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_Position_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Position_0() const { return ___m_Position_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Position_0() { return &___m_Position_0; }
inline void set_m_Position_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Position_0 = value;
}
inline static int32_t get_offset_of_m_Velocity_1() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_Velocity_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Velocity_1() const { return ___m_Velocity_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Velocity_1() { return &___m_Velocity_1; }
inline void set_m_Velocity_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Velocity_1 = value;
}
inline static int32_t get_offset_of_m_AnimatedVelocity_2() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_AnimatedVelocity_2)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_AnimatedVelocity_2() const { return ___m_AnimatedVelocity_2; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_AnimatedVelocity_2() { return &___m_AnimatedVelocity_2; }
inline void set_m_AnimatedVelocity_2(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_AnimatedVelocity_2 = value;
}
inline static int32_t get_offset_of_m_InitialVelocity_3() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_InitialVelocity_3)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_InitialVelocity_3() const { return ___m_InitialVelocity_3; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_InitialVelocity_3() { return &___m_InitialVelocity_3; }
inline void set_m_InitialVelocity_3(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_InitialVelocity_3 = value;
}
inline static int32_t get_offset_of_m_AxisOfRotation_4() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_AxisOfRotation_4)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_AxisOfRotation_4() const { return ___m_AxisOfRotation_4; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_AxisOfRotation_4() { return &___m_AxisOfRotation_4; }
inline void set_m_AxisOfRotation_4(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_AxisOfRotation_4 = value;
}
inline static int32_t get_offset_of_m_Rotation_5() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_Rotation_5)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Rotation_5() const { return ___m_Rotation_5; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Rotation_5() { return &___m_Rotation_5; }
inline void set_m_Rotation_5(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Rotation_5 = value;
}
inline static int32_t get_offset_of_m_AngularVelocity_6() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_AngularVelocity_6)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_AngularVelocity_6() const { return ___m_AngularVelocity_6; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_AngularVelocity_6() { return &___m_AngularVelocity_6; }
inline void set_m_AngularVelocity_6(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_AngularVelocity_6 = value;
}
inline static int32_t get_offset_of_m_StartSize_7() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_StartSize_7)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_StartSize_7() const { return ___m_StartSize_7; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_StartSize_7() { return &___m_StartSize_7; }
inline void set_m_StartSize_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_StartSize_7 = value;
}
inline static int32_t get_offset_of_m_StartColor_8() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_StartColor_8)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_m_StartColor_8() const { return ___m_StartColor_8; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_m_StartColor_8() { return &___m_StartColor_8; }
inline void set_m_StartColor_8(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___m_StartColor_8 = value;
}
inline static int32_t get_offset_of_m_RandomSeed_9() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_RandomSeed_9)); }
inline uint32_t get_m_RandomSeed_9() const { return ___m_RandomSeed_9; }
inline uint32_t* get_address_of_m_RandomSeed_9() { return &___m_RandomSeed_9; }
inline void set_m_RandomSeed_9(uint32_t value)
{
___m_RandomSeed_9 = value;
}
inline static int32_t get_offset_of_m_Lifetime_10() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_Lifetime_10)); }
inline float get_m_Lifetime_10() const { return ___m_Lifetime_10; }
inline float* get_address_of_m_Lifetime_10() { return &___m_Lifetime_10; }
inline void set_m_Lifetime_10(float value)
{
___m_Lifetime_10 = value;
}
inline static int32_t get_offset_of_m_StartLifetime_11() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_StartLifetime_11)); }
inline float get_m_StartLifetime_11() const { return ___m_StartLifetime_11; }
inline float* get_address_of_m_StartLifetime_11() { return &___m_StartLifetime_11; }
inline void set_m_StartLifetime_11(float value)
{
___m_StartLifetime_11 = value;
}
inline static int32_t get_offset_of_m_MeshIndex_12() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_MeshIndex_12)); }
inline int32_t get_m_MeshIndex_12() const { return ___m_MeshIndex_12; }
inline int32_t* get_address_of_m_MeshIndex_12() { return &___m_MeshIndex_12; }
inline void set_m_MeshIndex_12(int32_t value)
{
___m_MeshIndex_12 = value;
}
inline static int32_t get_offset_of_m_EmitAccumulator0_13() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_EmitAccumulator0_13)); }
inline float get_m_EmitAccumulator0_13() const { return ___m_EmitAccumulator0_13; }
inline float* get_address_of_m_EmitAccumulator0_13() { return &___m_EmitAccumulator0_13; }
inline void set_m_EmitAccumulator0_13(float value)
{
___m_EmitAccumulator0_13 = value;
}
inline static int32_t get_offset_of_m_EmitAccumulator1_14() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_EmitAccumulator1_14)); }
inline float get_m_EmitAccumulator1_14() const { return ___m_EmitAccumulator1_14; }
inline float* get_address_of_m_EmitAccumulator1_14() { return &___m_EmitAccumulator1_14; }
inline void set_m_EmitAccumulator1_14(float value)
{
___m_EmitAccumulator1_14 = value;
}
inline static int32_t get_offset_of_m_Flags_15() { return static_cast<int32_t>(offsetof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E, ___m_Flags_15)); }
inline uint32_t get_m_Flags_15() const { return ___m_Flags_15; }
inline uint32_t* get_address_of_m_Flags_15() { return &___m_Flags_15; }
inline void set_m_Flags_15(uint32_t value)
{
___m_Flags_15 = value;
}
};
// UnityEngine.ParticleSystemCurveMode
struct ParticleSystemCurveMode_tD8A2390BB482B39C0C0714F3DDE715386BC7D48D
{
public:
// System.Int32 UnityEngine.ParticleSystemCurveMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ParticleSystemCurveMode_tD8A2390BB482B39C0C0714F3DDE715386BC7D48D, ___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.ParticleSystemStopBehavior
struct ParticleSystemStopBehavior_t391374C3CA738F223224E1F294A11CD06D3E1EF0
{
public:
// System.Int32 UnityEngine.ParticleSystemStopBehavior::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ParticleSystemStopBehavior_t391374C3CA738F223224E1F294A11CD06D3E1EF0, ___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.PlayMode
struct PlayMode_tE55342CFE774475487030D6B30D815DEF4C509C3
{
public:
// System.Int32 UnityEngine.PlayMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PlayMode_tE55342CFE774475487030D6B30D815DEF4C509C3, ___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.Playables.PlayableHandle
struct PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182
{
public:
// System.IntPtr UnityEngine.Playables.PlayableHandle::m_Handle
intptr_t ___m_Handle_0;
// System.UInt32 UnityEngine.Playables.PlayableHandle::m_Version
uint32_t ___m_Version_1;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182, ___m_Handle_0)); }
inline intptr_t get_m_Handle_0() const { return ___m_Handle_0; }
inline intptr_t* get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(intptr_t value)
{
___m_Handle_0 = value;
}
inline static int32_t get_offset_of_m_Version_1() { return static_cast<int32_t>(offsetof(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182, ___m_Version_1)); }
inline uint32_t get_m_Version_1() const { return ___m_Version_1; }
inline uint32_t* get_address_of_m_Version_1() { return &___m_Version_1; }
inline void set_m_Version_1(uint32_t value)
{
___m_Version_1 = value;
}
};
struct PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182_StaticFields
{
public:
// UnityEngine.Playables.PlayableHandle UnityEngine.Playables.PlayableHandle::m_Null
PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Null_2;
public:
inline static int32_t get_offset_of_m_Null_2() { return static_cast<int32_t>(offsetof(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182_StaticFields, ___m_Null_2)); }
inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Null_2() const { return ___m_Null_2; }
inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Null_2() { return &___m_Null_2; }
inline void set_m_Null_2(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value)
{
___m_Null_2 = value;
}
};
// UnityEngine.Playables.PlayableOutputHandle
struct PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922
{
public:
// System.IntPtr UnityEngine.Playables.PlayableOutputHandle::m_Handle
intptr_t ___m_Handle_0;
// System.UInt32 UnityEngine.Playables.PlayableOutputHandle::m_Version
uint32_t ___m_Version_1;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922, ___m_Handle_0)); }
inline intptr_t get_m_Handle_0() const { return ___m_Handle_0; }
inline intptr_t* get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(intptr_t value)
{
___m_Handle_0 = value;
}
inline static int32_t get_offset_of_m_Version_1() { return static_cast<int32_t>(offsetof(PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922, ___m_Version_1)); }
inline uint32_t get_m_Version_1() const { return ___m_Version_1; }
inline uint32_t* get_address_of_m_Version_1() { return &___m_Version_1; }
inline void set_m_Version_1(uint32_t value)
{
___m_Version_1 = value;
}
};
struct PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922_StaticFields
{
public:
// UnityEngine.Playables.PlayableOutputHandle UnityEngine.Playables.PlayableOutputHandle::m_Null
PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 ___m_Null_2;
public:
inline static int32_t get_offset_of_m_Null_2() { return static_cast<int32_t>(offsetof(PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922_StaticFields, ___m_Null_2)); }
inline PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 get_m_Null_2() const { return ___m_Null_2; }
inline PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 * get_address_of_m_Null_2() { return &___m_Null_2; }
inline void set_m_Null_2(PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 value)
{
___m_Null_2 = value;
}
};
// UnityEngine.Pose
struct Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29
{
public:
// UnityEngine.Vector3 UnityEngine.Pose::position
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position_0;
// UnityEngine.Quaternion UnityEngine.Pose::rotation
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___rotation_1;
public:
inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29, ___position_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_position_0() const { return ___position_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_position_0() { return &___position_0; }
inline void set_position_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___position_0 = value;
}
inline static int32_t get_offset_of_rotation_1() { return static_cast<int32_t>(offsetof(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29, ___rotation_1)); }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_rotation_1() const { return ___rotation_1; }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_rotation_1() { return &___rotation_1; }
inline void set_rotation_1(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value)
{
___rotation_1 = value;
}
};
struct Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29_StaticFields
{
public:
// UnityEngine.Pose UnityEngine.Pose::k_Identity
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___k_Identity_2;
public:
inline static int32_t get_offset_of_k_Identity_2() { return static_cast<int32_t>(offsetof(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29_StaticFields, ___k_Identity_2)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_k_Identity_2() const { return ___k_Identity_2; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_k_Identity_2() { return &___k_Identity_2; }
inline void set_k_Identity_2(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___k_Identity_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.RectOffset
struct RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.RectOffset::m_Ptr
intptr_t ___m_Ptr_0;
// System.Object UnityEngine.RectOffset::m_SourceStyle
RuntimeObject * ___m_SourceStyle_1;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A, ___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;
}
inline static int32_t get_offset_of_m_SourceStyle_1() { return static_cast<int32_t>(offsetof(RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A, ___m_SourceStyle_1)); }
inline RuntimeObject * get_m_SourceStyle_1() const { return ___m_SourceStyle_1; }
inline RuntimeObject ** get_address_of_m_SourceStyle_1() { return &___m_SourceStyle_1; }
inline void set_m_SourceStyle_1(RuntimeObject * value)
{
___m_SourceStyle_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SourceStyle_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.RectOffset
struct RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
Il2CppIUnknown* ___m_SourceStyle_1;
};
// Native definition for COM marshalling of UnityEngine.RectOffset
struct RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_com
{
intptr_t ___m_Ptr_0;
Il2CppIUnknown* ___m_SourceStyle_1;
};
// UnityEngine.RemoteConfigSettings
struct RemoteConfigSettings_t97154F5546B47CE72257CC2F0B677BDF696AEC4A : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.RemoteConfigSettings::m_Ptr
intptr_t ___m_Ptr_0;
// System.Action`1<System.Boolean> UnityEngine.RemoteConfigSettings::Updated
Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * ___Updated_1;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(RemoteConfigSettings_t97154F5546B47CE72257CC2F0B677BDF696AEC4A, ___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;
}
inline static int32_t get_offset_of_Updated_1() { return static_cast<int32_t>(offsetof(RemoteConfigSettings_t97154F5546B47CE72257CC2F0B677BDF696AEC4A, ___Updated_1)); }
inline Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * get_Updated_1() const { return ___Updated_1; }
inline Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD ** get_address_of_Updated_1() { return &___Updated_1; }
inline void set_Updated_1(Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * value)
{
___Updated_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Updated_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.RemoteConfigSettings
struct RemoteConfigSettings_t97154F5546B47CE72257CC2F0B677BDF696AEC4A_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
Il2CppMethodPointer ___Updated_1;
};
// Native definition for COM marshalling of UnityEngine.RemoteConfigSettings
struct RemoteConfigSettings_t97154F5546B47CE72257CC2F0B677BDF696AEC4A_marshaled_com
{
intptr_t ___m_Ptr_0;
Il2CppMethodPointer ___Updated_1;
};
// UnityEngine.RemoteConfigSettingsHelper_Tag
struct Tag_t7FB12BCA4EA470318C147C1AED37575DEB552307
{
public:
// System.Int32 UnityEngine.RemoteConfigSettingsHelper_Tag::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Tag_t7FB12BCA4EA470318C147C1AED37575DEB552307, ___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.Rendering.ColorWriteMask
struct ColorWriteMask_t5DC00042EAC46AEEB06A7E0D51EA00C26F076E70
{
public:
// System.Int32 UnityEngine.Rendering.ColorWriteMask::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ColorWriteMask_t5DC00042EAC46AEEB06A7E0D51EA00C26F076E70, ___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.Rendering.CompareFunction
struct CompareFunction_t217BE827C5994EDCA3FE70CE73578C2F729F9E69
{
public:
// System.Int32 UnityEngine.Rendering.CompareFunction::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CompareFunction_t217BE827C5994EDCA3FE70CE73578C2F729F9E69, ___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.Rendering.StencilOp
struct StencilOp_t39C53F937E65AEB59181772222564CEE34A3A48A
{
public:
// System.Int32 UnityEngine.Rendering.StencilOp::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StencilOp_t39C53F937E65AEB59181772222564CEE34A3A48A, ___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.SkeletonBone
struct SkeletonBone_tCDF297229129311214294465F3FA353DB09726F5
{
public:
// System.String UnityEngine.SkeletonBone::name
String_t* ___name_0;
// System.String UnityEngine.SkeletonBone::parentName
String_t* ___parentName_1;
// UnityEngine.Vector3 UnityEngine.SkeletonBone::position
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position_2;
// UnityEngine.Quaternion UnityEngine.SkeletonBone::rotation
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___rotation_3;
// UnityEngine.Vector3 UnityEngine.SkeletonBone::scale
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___scale_4;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(SkeletonBone_tCDF297229129311214294465F3FA353DB09726F5, ___name_0)); }
inline String_t* get_name_0() const { return ___name_0; }
inline String_t** get_address_of_name_0() { return &___name_0; }
inline void set_name_0(String_t* value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value);
}
inline static int32_t get_offset_of_parentName_1() { return static_cast<int32_t>(offsetof(SkeletonBone_tCDF297229129311214294465F3FA353DB09726F5, ___parentName_1)); }
inline String_t* get_parentName_1() const { return ___parentName_1; }
inline String_t** get_address_of_parentName_1() { return &___parentName_1; }
inline void set_parentName_1(String_t* value)
{
___parentName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___parentName_1), (void*)value);
}
inline static int32_t get_offset_of_position_2() { return static_cast<int32_t>(offsetof(SkeletonBone_tCDF297229129311214294465F3FA353DB09726F5, ___position_2)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_position_2() const { return ___position_2; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_position_2() { return &___position_2; }
inline void set_position_2(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___position_2 = value;
}
inline static int32_t get_offset_of_rotation_3() { return static_cast<int32_t>(offsetof(SkeletonBone_tCDF297229129311214294465F3FA353DB09726F5, ___rotation_3)); }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_rotation_3() const { return ___rotation_3; }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_rotation_3() { return &___rotation_3; }
inline void set_rotation_3(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value)
{
___rotation_3 = value;
}
inline static int32_t get_offset_of_scale_4() { return static_cast<int32_t>(offsetof(SkeletonBone_tCDF297229129311214294465F3FA353DB09726F5, ___scale_4)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_scale_4() const { return ___scale_4; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_scale_4() { return &___scale_4; }
inline void set_scale_4(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___scale_4 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.SkeletonBone
struct SkeletonBone_tCDF297229129311214294465F3FA353DB09726F5_marshaled_pinvoke
{
char* ___name_0;
char* ___parentName_1;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position_2;
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___rotation_3;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___scale_4;
};
// Native definition for COM marshalling of UnityEngine.SkeletonBone
struct SkeletonBone_tCDF297229129311214294465F3FA353DB09726F5_marshaled_com
{
Il2CppChar* ___name_0;
Il2CppChar* ___parentName_1;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position_2;
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___rotation_3;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___scale_4;
};
// UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard
struct GcLeaderboard_t363887C9C2BFA6F02D08CC6F6BB93E8ABE9A42D2 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard::m_InternalLeaderboard
intptr_t ___m_InternalLeaderboard_0;
// UnityEngine.SocialPlatforms.Impl.Leaderboard UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard::m_GenericLeaderboard
Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE * ___m_GenericLeaderboard_1;
public:
inline static int32_t get_offset_of_m_InternalLeaderboard_0() { return static_cast<int32_t>(offsetof(GcLeaderboard_t363887C9C2BFA6F02D08CC6F6BB93E8ABE9A42D2, ___m_InternalLeaderboard_0)); }
inline intptr_t get_m_InternalLeaderboard_0() const { return ___m_InternalLeaderboard_0; }
inline intptr_t* get_address_of_m_InternalLeaderboard_0() { return &___m_InternalLeaderboard_0; }
inline void set_m_InternalLeaderboard_0(intptr_t value)
{
___m_InternalLeaderboard_0 = value;
}
inline static int32_t get_offset_of_m_GenericLeaderboard_1() { return static_cast<int32_t>(offsetof(GcLeaderboard_t363887C9C2BFA6F02D08CC6F6BB93E8ABE9A42D2, ___m_GenericLeaderboard_1)); }
inline Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE * get_m_GenericLeaderboard_1() const { return ___m_GenericLeaderboard_1; }
inline Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE ** get_address_of_m_GenericLeaderboard_1() { return &___m_GenericLeaderboard_1; }
inline void set_m_GenericLeaderboard_1(Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE * value)
{
___m_GenericLeaderboard_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_GenericLeaderboard_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard
struct GcLeaderboard_t363887C9C2BFA6F02D08CC6F6BB93E8ABE9A42D2_marshaled_pinvoke
{
intptr_t ___m_InternalLeaderboard_0;
Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE * ___m_GenericLeaderboard_1;
};
// Native definition for COM marshalling of UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard
struct GcLeaderboard_t363887C9C2BFA6F02D08CC6F6BB93E8ABE9A42D2_marshaled_com
{
intptr_t ___m_InternalLeaderboard_0;
Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE * ___m_GenericLeaderboard_1;
};
// UnityEngine.SocialPlatforms.Impl.Achievement
struct Achievement_t853D7B9496E1B0395F9DC4EC4B6C677A82498633 : public RuntimeObject
{
public:
// System.Boolean UnityEngine.SocialPlatforms.Impl.Achievement::m_Completed
bool ___m_Completed_0;
// System.Boolean UnityEngine.SocialPlatforms.Impl.Achievement::m_Hidden
bool ___m_Hidden_1;
// System.DateTime UnityEngine.SocialPlatforms.Impl.Achievement::m_LastReportedDate
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___m_LastReportedDate_2;
// System.String UnityEngine.SocialPlatforms.Impl.Achievement::<id>k__BackingField
String_t* ___U3CidU3Ek__BackingField_3;
// System.Double UnityEngine.SocialPlatforms.Impl.Achievement::<percentCompleted>k__BackingField
double ___U3CpercentCompletedU3Ek__BackingField_4;
public:
inline static int32_t get_offset_of_m_Completed_0() { return static_cast<int32_t>(offsetof(Achievement_t853D7B9496E1B0395F9DC4EC4B6C677A82498633, ___m_Completed_0)); }
inline bool get_m_Completed_0() const { return ___m_Completed_0; }
inline bool* get_address_of_m_Completed_0() { return &___m_Completed_0; }
inline void set_m_Completed_0(bool value)
{
___m_Completed_0 = value;
}
inline static int32_t get_offset_of_m_Hidden_1() { return static_cast<int32_t>(offsetof(Achievement_t853D7B9496E1B0395F9DC4EC4B6C677A82498633, ___m_Hidden_1)); }
inline bool get_m_Hidden_1() const { return ___m_Hidden_1; }
inline bool* get_address_of_m_Hidden_1() { return &___m_Hidden_1; }
inline void set_m_Hidden_1(bool value)
{
___m_Hidden_1 = value;
}
inline static int32_t get_offset_of_m_LastReportedDate_2() { return static_cast<int32_t>(offsetof(Achievement_t853D7B9496E1B0395F9DC4EC4B6C677A82498633, ___m_LastReportedDate_2)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_m_LastReportedDate_2() const { return ___m_LastReportedDate_2; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_m_LastReportedDate_2() { return &___m_LastReportedDate_2; }
inline void set_m_LastReportedDate_2(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___m_LastReportedDate_2 = value;
}
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(Achievement_t853D7B9496E1B0395F9DC4EC4B6C677A82498633, ___U3CidU3Ek__BackingField_3)); }
inline String_t* get_U3CidU3Ek__BackingField_3() const { return ___U3CidU3Ek__BackingField_3; }
inline String_t** get_address_of_U3CidU3Ek__BackingField_3() { return &___U3CidU3Ek__BackingField_3; }
inline void set_U3CidU3Ek__BackingField_3(String_t* value)
{
___U3CidU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CidU3Ek__BackingField_3), (void*)value);
}
inline static int32_t get_offset_of_U3CpercentCompletedU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(Achievement_t853D7B9496E1B0395F9DC4EC4B6C677A82498633, ___U3CpercentCompletedU3Ek__BackingField_4)); }
inline double get_U3CpercentCompletedU3Ek__BackingField_4() const { return ___U3CpercentCompletedU3Ek__BackingField_4; }
inline double* get_address_of_U3CpercentCompletedU3Ek__BackingField_4() { return &___U3CpercentCompletedU3Ek__BackingField_4; }
inline void set_U3CpercentCompletedU3Ek__BackingField_4(double value)
{
___U3CpercentCompletedU3Ek__BackingField_4 = value;
}
};
// UnityEngine.SocialPlatforms.Impl.Score
struct Score_tE23EDB9F6DECBC3AD8D644EC255512A0CDF533E7 : public RuntimeObject
{
public:
// System.DateTime UnityEngine.SocialPlatforms.Impl.Score::m_Date
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___m_Date_0;
// System.String UnityEngine.SocialPlatforms.Impl.Score::m_FormattedValue
String_t* ___m_FormattedValue_1;
// System.String UnityEngine.SocialPlatforms.Impl.Score::m_UserID
String_t* ___m_UserID_2;
// System.Int32 UnityEngine.SocialPlatforms.Impl.Score::m_Rank
int32_t ___m_Rank_3;
// System.String UnityEngine.SocialPlatforms.Impl.Score::<leaderboardID>k__BackingField
String_t* ___U3CleaderboardIDU3Ek__BackingField_4;
// System.Int64 UnityEngine.SocialPlatforms.Impl.Score::<value>k__BackingField
int64_t ___U3CvalueU3Ek__BackingField_5;
public:
inline static int32_t get_offset_of_m_Date_0() { return static_cast<int32_t>(offsetof(Score_tE23EDB9F6DECBC3AD8D644EC255512A0CDF533E7, ___m_Date_0)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_m_Date_0() const { return ___m_Date_0; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_m_Date_0() { return &___m_Date_0; }
inline void set_m_Date_0(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___m_Date_0 = value;
}
inline static int32_t get_offset_of_m_FormattedValue_1() { return static_cast<int32_t>(offsetof(Score_tE23EDB9F6DECBC3AD8D644EC255512A0CDF533E7, ___m_FormattedValue_1)); }
inline String_t* get_m_FormattedValue_1() const { return ___m_FormattedValue_1; }
inline String_t** get_address_of_m_FormattedValue_1() { return &___m_FormattedValue_1; }
inline void set_m_FormattedValue_1(String_t* value)
{
___m_FormattedValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_FormattedValue_1), (void*)value);
}
inline static int32_t get_offset_of_m_UserID_2() { return static_cast<int32_t>(offsetof(Score_tE23EDB9F6DECBC3AD8D644EC255512A0CDF533E7, ___m_UserID_2)); }
inline String_t* get_m_UserID_2() const { return ___m_UserID_2; }
inline String_t** get_address_of_m_UserID_2() { return &___m_UserID_2; }
inline void set_m_UserID_2(String_t* value)
{
___m_UserID_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_UserID_2), (void*)value);
}
inline static int32_t get_offset_of_m_Rank_3() { return static_cast<int32_t>(offsetof(Score_tE23EDB9F6DECBC3AD8D644EC255512A0CDF533E7, ___m_Rank_3)); }
inline int32_t get_m_Rank_3() const { return ___m_Rank_3; }
inline int32_t* get_address_of_m_Rank_3() { return &___m_Rank_3; }
inline void set_m_Rank_3(int32_t value)
{
___m_Rank_3 = value;
}
inline static int32_t get_offset_of_U3CleaderboardIDU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(Score_tE23EDB9F6DECBC3AD8D644EC255512A0CDF533E7, ___U3CleaderboardIDU3Ek__BackingField_4)); }
inline String_t* get_U3CleaderboardIDU3Ek__BackingField_4() const { return ___U3CleaderboardIDU3Ek__BackingField_4; }
inline String_t** get_address_of_U3CleaderboardIDU3Ek__BackingField_4() { return &___U3CleaderboardIDU3Ek__BackingField_4; }
inline void set_U3CleaderboardIDU3Ek__BackingField_4(String_t* value)
{
___U3CleaderboardIDU3Ek__BackingField_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CleaderboardIDU3Ek__BackingField_4), (void*)value);
}
inline static int32_t get_offset_of_U3CvalueU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(Score_tE23EDB9F6DECBC3AD8D644EC255512A0CDF533E7, ___U3CvalueU3Ek__BackingField_5)); }
inline int64_t get_U3CvalueU3Ek__BackingField_5() const { return ___U3CvalueU3Ek__BackingField_5; }
inline int64_t* get_address_of_U3CvalueU3Ek__BackingField_5() { return &___U3CvalueU3Ek__BackingField_5; }
inline void set_U3CvalueU3Ek__BackingField_5(int64_t value)
{
___U3CvalueU3Ek__BackingField_5 = value;
}
};
// UnityEngine.SocialPlatforms.TimeScope
struct TimeScope_t33ED9CE3541B951879D86F5AE6A8D9389E7A2369
{
public:
// System.Int32 UnityEngine.SocialPlatforms.TimeScope::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TimeScope_t33ED9CE3541B951879D86F5AE6A8D9389E7A2369, ___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.SocialPlatforms.UserScope
struct UserScope_t85B1CA855A894226BDE6A19B4CBE7EC9F02D16E3
{
public:
// System.Int32 UnityEngine.SocialPlatforms.UserScope::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UserScope_t85B1CA855A894226BDE6A19B4CBE7EC9F02D16E3, ___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.SocialPlatforms.UserState
struct UserState_t84B00958348DD8A2B8778416E393E229DACA5871
{
public:
// System.Int32 UnityEngine.SocialPlatforms.UserState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UserState_t84B00958348DD8A2B8778416E393E229DACA5871, ___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.TextEditor_DblClickSnapping
struct DblClickSnapping_t82D31F14587749755F9CB1FF9E975DDBEF7630CE
{
public:
// System.Byte UnityEngine.TextEditor_DblClickSnapping::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DblClickSnapping_t82D31F14587749755F9CB1FF9E975DDBEF7630CE, ___value___2)); }
inline uint8_t get_value___2() const { return ___value___2; }
inline uint8_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint8_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.TrackedReference
struct TrackedReference_tE93229EF7055CBB35B2A98DD2493947428D06107 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.TrackedReference::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(TrackedReference_tE93229EF7055CBB35B2A98DD2493947428D06107, ___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.TrackedReference
struct TrackedReference_tE93229EF7055CBB35B2A98DD2493947428D06107_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
};
// Native definition for COM marshalling of UnityEngine.TrackedReference
struct TrackedReference_tE93229EF7055CBB35B2A98DD2493947428D06107_marshaled_com
{
intptr_t ___m_Ptr_0;
};
// 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.BoxSlider_Axis
struct Axis_t067A18AAFF0A8B11D5C9EC525D621254E8C7F481
{
public:
// System.Int32 UnityEngine.UI.BoxSlider_Axis::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Axis_t067A18AAFF0A8B11D5C9EC525D621254E8C7F481, ___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.BoxSlider_BoxSliderEvent
struct BoxSliderEvent_t2E59E1AD1FFFC4D521C2865063F16C634BF59706 : public UnityEvent_2_t275A853AC2E1194D9AA46DA2DA260EA19718E746
{
public:
public:
};
// UnityEngine.UI.BoxSlider_Direction
struct Direction_t64CC02CD1E11206C3C6C3C0FEBA043EFA2C3D595
{
public:
// System.Int32 UnityEngine.UI.BoxSlider_Direction::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Direction_t64CC02CD1E11206C3C6C3C0FEBA043EFA2C3D595, ___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.GridLayoutGroup_Axis
struct Axis_tD4645F3B274E7AE7793C038A2BA2E68C6F0F02F0
{
public:
// System.Int32 UnityEngine.UI.GridLayoutGroup_Axis::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Axis_tD4645F3B274E7AE7793C038A2BA2E68C6F0F02F0, ___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.GridLayoutGroup_Constraint
struct Constraint_tF471E55525B89D1E7C938CC0AF7515709494C59D
{
public:
// System.Int32 UnityEngine.UI.GridLayoutGroup_Constraint::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Constraint_tF471E55525B89D1E7C938CC0AF7515709494C59D, ___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.GridLayoutGroup_Corner
struct Corner_tD61F36EC56D401A65DA06BE1A21689319201D18E
{
public:
// System.Int32 UnityEngine.UI.GridLayoutGroup_Corner::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Corner_tD61F36EC56D401A65DA06BE1A21689319201D18E, ___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_Origin180
struct Origin180_tCF5E1711B4803DCB48210FFE1B23C253242EFC62
{
public:
// System.Int32 UnityEngine.UI.Image_Origin180::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Origin180_tCF5E1711B4803DCB48210FFE1B23C253242EFC62, ___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_Origin360
struct Origin360_tF25A2DF8C754C42BEAB24082ED5243E047CB9575
{
public:
// System.Int32 UnityEngine.UI.Image_Origin360::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Origin360_tF25A2DF8C754C42BEAB24082ED5243E047CB9575, ___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_Origin90
struct Origin90_tA111B7ECE5F050DAC340410DCAF50B7900707DBD
{
public:
// System.Int32 UnityEngine.UI.Image_Origin90::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Origin90_tA111B7ECE5F050DAC340410DCAF50B7900707DBD, ___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_OriginHorizontal
struct OriginHorizontal_t042F335793CA8EA2C0D55B2B27820D9674075394
{
public:
// System.Int32 UnityEngine.UI.Image_OriginHorizontal::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(OriginHorizontal_t042F335793CA8EA2C0D55B2B27820D9674075394, ___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_OriginVertical
struct OriginVertical_t921649D0F10E91D5FE9E48725A7C562308798125
{
public:
// System.Int32 UnityEngine.UI.Image_OriginVertical::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(OriginVertical_t921649D0F10E91D5FE9E48725A7C562308798125, ___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_EditState
struct EditState_tCBDEBEE5EE39A49CCEDC05CA512DB0C35C23E629
{
public:
// System.Int32 UnityEngine.UI.InputField_EditState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EditState_tCBDEBEE5EE39A49CCEDC05CA512DB0C35C23E629, ___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.InputField_OnChangeEvent
struct OnChangeEvent_t6C3C7DD6AEA262BB97AD53B0E669EC7EC19BCC1A : public UnityEvent_1_t890F45761F13DD1B3D58738365827FDB6629BA7F
{
public:
public:
};
// UnityEngine.UI.InputField_SubmitEvent
struct SubmitEvent_tE1EC12ACD7DE7D57B9ECBBACA05493E226E53E4A : public UnityEvent_1_t890F45761F13DD1B3D58738365827FDB6629BA7F
{
public:
public:
};
// UnityEngine.UI.MaskableGraphic_CullStateChangedEvent
struct CullStateChangedEvent_t6BC3E87DBC04B585798460D55F56B86C23B62FE4 : public UnityEvent_1_tE1EF042798523847EEBB2A12FA37C4003C1B1299
{
public:
public:
};
// 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_ScrollRectEvent
struct ScrollRectEvent_t8995F69D65BA823FB862144B12E6D3504236FEEB : public UnityEvent_1_t60552D56FE9D9EC7B17849EE5D16EF96110E69A0
{
public:
public:
};
// 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_Axis
struct Axis_t5CC6D92E75113BD2F2816AFC44EF728126921DF7
{
public:
// System.Int32 UnityEngine.UI.Scrollbar_Axis::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Axis_t5CC6D92E75113BD2F2816AFC44EF728126921DF7, ___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.Scrollbar_ScrollEvent
struct ScrollEvent_t07B0FA266C69E36437A0083D5058B2952D151FF7 : public UnityEvent_1_t655F4ECDA62E804A34CC8737AC30B836ABD3D2DA
{
public:
public:
};
// 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_Axis
struct Axis_t5D4CE8029AAE120D6F7C8AC3FE1B1F46B2623830
{
public:
// System.Int32 UnityEngine.UI.Slider_Axis::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Axis_t5D4CE8029AAE120D6F7C8AC3FE1B1F46B2623830, ___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.Slider_SliderEvent
struct SliderEvent_t64A824F56F80FC8E2F233F0A0FB0821702DF416C : public UnityEvent_1_t655F4ECDA62E804A34CC8737AC30B836ABD3D2DA
{
public:
public:
};
// 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;
}
};
// UnityEngine.VerticalWrapMode
struct VerticalWrapMode_tD909C5B2F6A25AE3797BC71373196D850FC845E9
{
public:
// System.Int32 UnityEngine.VerticalWrapMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(VerticalWrapMode_tD909C5B2F6A25AE3797BC71373196D850FC845E9, ___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.XR.ARKit.ARKitSessionSubsystem_NativeApi_Availability
struct Availability_tFD76A2177DDFE5A5A8CDB75EB9CF784CDD9A7487
{
public:
// System.Int32 UnityEngine.XR.ARKit.ARKitSessionSubsystem_NativeApi_Availability::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Availability_tFD76A2177DDFE5A5A8CDB75EB9CF784CDD9A7487, ___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.XR.ARKit.ARWorldMapRequestStatus
struct ARWorldMapRequestStatus_tF71BE763C5F9644F3D7377ACE110F7FFBBE3D5DC
{
public:
// System.Int32 UnityEngine.XR.ARKit.ARWorldMapRequestStatus::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ARWorldMapRequestStatus_tF71BE763C5F9644F3D7377ACE110F7FFBBE3D5DC, ___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.XR.ARSubsystems.PlaneAlignment
struct PlaneAlignment_t8959E33A181E8A5B46387DDC30F957DD14B48783
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.PlaneAlignment::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PlaneAlignment_t8959E33A181E8A5B46387DDC30F957DD14B48783, ___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.XR.ARSubsystems.TrackableType
struct TrackableType_t078FFF635AE2E4FC51E7D7DB8AB1CB884D30EA1F
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.TrackableType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TrackableType_t078FFF635AE2E4FC51E7D7DB8AB1CB884D30EA1F, ___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.XR.ARSubsystems.TrackingState
struct TrackingState_t124D9E603E4E0453A85409CF7762EE8C946233F6
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.TrackingState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TrackingState_t124D9E603E4E0453A85409CF7762EE8C946233F6, ___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.XR.ARSubsystems.TrackingSubsystem`2<UnityEngine.XR.ARSubsystems.BoundedPlane,UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor>
struct TrackingSubsystem_2_t758E80FC2D0E4A224AA733F5ED6419083CD56389 : public Subsystem_1_tA832EBA21E41FF7EBCA30AE7C32EC78033F63E37
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`2<UnityEngine.XR.ARSubsystems.XRPointCloud,UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor>
struct TrackingSubsystem_2_t70B6F8BBDCEA193299D7F4FC34F9D63A1996CE0C : public Subsystem_1_t699EE52FD744695EFB393B312D6BFA04DCC68870
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`2<UnityEngine.XR.ARSubsystems.XRReferencePoint,UnityEngine.XR.ARSubsystems.XRReferencePointSubsystemDescriptor>
struct TrackingSubsystem_2_t62AFA2295FCEFC2C3818E3B9EDB3C1AF80509899 : public Subsystem_1_t1A38EF1402A7E5DBC48E0755E358926BB0054890
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRCameraSubsystem
struct XRCameraSubsystem_t60344763BCE87679E570A4AD0BB068B74DBF20AF : public Subsystem_1_t54655F7C7F723FDA59325E1AC875A3FD66C9C684
{
public:
// UnityEngine.XR.ARSubsystems.XRCameraSubsystem_IProvider UnityEngine.XR.ARSubsystems.XRCameraSubsystem::m_Provider
IProvider_t5D7A855308E0C5E8F9175CA7CDEE91F929A5185C * ___m_Provider_0;
public:
inline static int32_t get_offset_of_m_Provider_0() { return static_cast<int32_t>(offsetof(XRCameraSubsystem_t60344763BCE87679E570A4AD0BB068B74DBF20AF, ___m_Provider_0)); }
inline IProvider_t5D7A855308E0C5E8F9175CA7CDEE91F929A5185C * get_m_Provider_0() const { return ___m_Provider_0; }
inline IProvider_t5D7A855308E0C5E8F9175CA7CDEE91F929A5185C ** get_address_of_m_Provider_0() { return &___m_Provider_0; }
inline void set_m_Provider_0(IProvider_t5D7A855308E0C5E8F9175CA7CDEE91F929A5185C * value)
{
___m_Provider_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Provider_0), (void*)value);
}
};
// UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor
struct XRCameraSubsystemDescriptor_tAE89D80BC30DD07708520505B84260DAA5309132 : public SubsystemDescriptor_1_tE5818B12F1A52E8B1CB0C70CF3C72C51207060F3
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::<supportsAverageBrightness>k__BackingField
bool ___U3CsupportsAverageBrightnessU3Ek__BackingField_2;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::<supportsAverageColorTemperature>k__BackingField
bool ___U3CsupportsAverageColorTemperatureU3Ek__BackingField_3;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::<supportsDisplayMatrix>k__BackingField
bool ___U3CsupportsDisplayMatrixU3Ek__BackingField_4;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::<supportsProjectionMatrix>k__BackingField
bool ___U3CsupportsProjectionMatrixU3Ek__BackingField_5;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::<supportsTimestamp>k__BackingField
bool ___U3CsupportsTimestampU3Ek__BackingField_6;
public:
inline static int32_t get_offset_of_U3CsupportsAverageBrightnessU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(XRCameraSubsystemDescriptor_tAE89D80BC30DD07708520505B84260DAA5309132, ___U3CsupportsAverageBrightnessU3Ek__BackingField_2)); }
inline bool get_U3CsupportsAverageBrightnessU3Ek__BackingField_2() const { return ___U3CsupportsAverageBrightnessU3Ek__BackingField_2; }
inline bool* get_address_of_U3CsupportsAverageBrightnessU3Ek__BackingField_2() { return &___U3CsupportsAverageBrightnessU3Ek__BackingField_2; }
inline void set_U3CsupportsAverageBrightnessU3Ek__BackingField_2(bool value)
{
___U3CsupportsAverageBrightnessU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CsupportsAverageColorTemperatureU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(XRCameraSubsystemDescriptor_tAE89D80BC30DD07708520505B84260DAA5309132, ___U3CsupportsAverageColorTemperatureU3Ek__BackingField_3)); }
inline bool get_U3CsupportsAverageColorTemperatureU3Ek__BackingField_3() const { return ___U3CsupportsAverageColorTemperatureU3Ek__BackingField_3; }
inline bool* get_address_of_U3CsupportsAverageColorTemperatureU3Ek__BackingField_3() { return &___U3CsupportsAverageColorTemperatureU3Ek__BackingField_3; }
inline void set_U3CsupportsAverageColorTemperatureU3Ek__BackingField_3(bool value)
{
___U3CsupportsAverageColorTemperatureU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CsupportsDisplayMatrixU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(XRCameraSubsystemDescriptor_tAE89D80BC30DD07708520505B84260DAA5309132, ___U3CsupportsDisplayMatrixU3Ek__BackingField_4)); }
inline bool get_U3CsupportsDisplayMatrixU3Ek__BackingField_4() const { return ___U3CsupportsDisplayMatrixU3Ek__BackingField_4; }
inline bool* get_address_of_U3CsupportsDisplayMatrixU3Ek__BackingField_4() { return &___U3CsupportsDisplayMatrixU3Ek__BackingField_4; }
inline void set_U3CsupportsDisplayMatrixU3Ek__BackingField_4(bool value)
{
___U3CsupportsDisplayMatrixU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CsupportsProjectionMatrixU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(XRCameraSubsystemDescriptor_tAE89D80BC30DD07708520505B84260DAA5309132, ___U3CsupportsProjectionMatrixU3Ek__BackingField_5)); }
inline bool get_U3CsupportsProjectionMatrixU3Ek__BackingField_5() const { return ___U3CsupportsProjectionMatrixU3Ek__BackingField_5; }
inline bool* get_address_of_U3CsupportsProjectionMatrixU3Ek__BackingField_5() { return &___U3CsupportsProjectionMatrixU3Ek__BackingField_5; }
inline void set_U3CsupportsProjectionMatrixU3Ek__BackingField_5(bool value)
{
___U3CsupportsProjectionMatrixU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CsupportsTimestampU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(XRCameraSubsystemDescriptor_tAE89D80BC30DD07708520505B84260DAA5309132, ___U3CsupportsTimestampU3Ek__BackingField_6)); }
inline bool get_U3CsupportsTimestampU3Ek__BackingField_6() const { return ___U3CsupportsTimestampU3Ek__BackingField_6; }
inline bool* get_address_of_U3CsupportsTimestampU3Ek__BackingField_6() { return &___U3CsupportsTimestampU3Ek__BackingField_6; }
inline void set_U3CsupportsTimestampU3Ek__BackingField_6(bool value)
{
___U3CsupportsTimestampU3Ek__BackingField_6 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor
struct XRDepthSubsystemDescriptor_t00ED077879ECD5D44FA419F0EBDCC50963B91E98 : public SubsystemDescriptor_1_t5F45D2C57F71CA1E7F628DC4BD8176DFAFD90DA1
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor::<supportsFeaturePoints>k__BackingField
bool ___U3CsupportsFeaturePointsU3Ek__BackingField_2;
// System.Boolean UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor::<supportsUniqueIds>k__BackingField
bool ___U3CsupportsUniqueIdsU3Ek__BackingField_3;
// System.Boolean UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor::<supportsConfidence>k__BackingField
bool ___U3CsupportsConfidenceU3Ek__BackingField_4;
public:
inline static int32_t get_offset_of_U3CsupportsFeaturePointsU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(XRDepthSubsystemDescriptor_t00ED077879ECD5D44FA419F0EBDCC50963B91E98, ___U3CsupportsFeaturePointsU3Ek__BackingField_2)); }
inline bool get_U3CsupportsFeaturePointsU3Ek__BackingField_2() const { return ___U3CsupportsFeaturePointsU3Ek__BackingField_2; }
inline bool* get_address_of_U3CsupportsFeaturePointsU3Ek__BackingField_2() { return &___U3CsupportsFeaturePointsU3Ek__BackingField_2; }
inline void set_U3CsupportsFeaturePointsU3Ek__BackingField_2(bool value)
{
___U3CsupportsFeaturePointsU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CsupportsUniqueIdsU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(XRDepthSubsystemDescriptor_t00ED077879ECD5D44FA419F0EBDCC50963B91E98, ___U3CsupportsUniqueIdsU3Ek__BackingField_3)); }
inline bool get_U3CsupportsUniqueIdsU3Ek__BackingField_3() const { return ___U3CsupportsUniqueIdsU3Ek__BackingField_3; }
inline bool* get_address_of_U3CsupportsUniqueIdsU3Ek__BackingField_3() { return &___U3CsupportsUniqueIdsU3Ek__BackingField_3; }
inline void set_U3CsupportsUniqueIdsU3Ek__BackingField_3(bool value)
{
___U3CsupportsUniqueIdsU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CsupportsConfidenceU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(XRDepthSubsystemDescriptor_t00ED077879ECD5D44FA419F0EBDCC50963B91E98, ___U3CsupportsConfidenceU3Ek__BackingField_4)); }
inline bool get_U3CsupportsConfidenceU3Ek__BackingField_4() const { return ___U3CsupportsConfidenceU3Ek__BackingField_4; }
inline bool* get_address_of_U3CsupportsConfidenceU3Ek__BackingField_4() { return &___U3CsupportsConfidenceU3Ek__BackingField_4; }
inline void set_U3CsupportsConfidenceU3Ek__BackingField_4(bool value)
{
___U3CsupportsConfidenceU3Ek__BackingField_4 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor_Capabilities
struct Capabilities_t4BAC3FA7758E1334A38C073AB595944DAE05308E
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor_Capabilities::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Capabilities_t4BAC3FA7758E1334A38C073AB595944DAE05308E, ___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.XR.ARSubsystems.XRPlaneSubsystemDescriptor
struct XRPlaneSubsystemDescriptor_t493CA5F0CB7E1F442AE0EE5332BB356314E5545E : public SubsystemDescriptor_1_t48ED9E3737B28FD562E12CA231ED3487E383D773
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor::<supportsHorizontalPlaneDetection>k__BackingField
bool ___U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_2;
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor::<supportsVerticalPlaneDetection>k__BackingField
bool ___U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_3;
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor::<supportsArbitraryPlaneDetection>k__BackingField
bool ___U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_4;
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor::<supportsBoundaryVertices>k__BackingField
bool ___U3CsupportsBoundaryVerticesU3Ek__BackingField_5;
public:
inline static int32_t get_offset_of_U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(XRPlaneSubsystemDescriptor_t493CA5F0CB7E1F442AE0EE5332BB356314E5545E, ___U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_2)); }
inline bool get_U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_2() const { return ___U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_2; }
inline bool* get_address_of_U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_2() { return &___U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_2; }
inline void set_U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_2(bool value)
{
___U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(XRPlaneSubsystemDescriptor_t493CA5F0CB7E1F442AE0EE5332BB356314E5545E, ___U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_3)); }
inline bool get_U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_3() const { return ___U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_3; }
inline bool* get_address_of_U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_3() { return &___U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_3; }
inline void set_U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_3(bool value)
{
___U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(XRPlaneSubsystemDescriptor_t493CA5F0CB7E1F442AE0EE5332BB356314E5545E, ___U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_4)); }
inline bool get_U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_4() const { return ___U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_4; }
inline bool* get_address_of_U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_4() { return &___U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_4; }
inline void set_U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_4(bool value)
{
___U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CsupportsBoundaryVerticesU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(XRPlaneSubsystemDescriptor_t493CA5F0CB7E1F442AE0EE5332BB356314E5545E, ___U3CsupportsBoundaryVerticesU3Ek__BackingField_5)); }
inline bool get_U3CsupportsBoundaryVerticesU3Ek__BackingField_5() const { return ___U3CsupportsBoundaryVerticesU3Ek__BackingField_5; }
inline bool* get_address_of_U3CsupportsBoundaryVerticesU3Ek__BackingField_5() { return &___U3CsupportsBoundaryVerticesU3Ek__BackingField_5; }
inline void set_U3CsupportsBoundaryVerticesU3Ek__BackingField_5(bool value)
{
___U3CsupportsBoundaryVerticesU3Ek__BackingField_5 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRReferencePointSubsystemDescriptor
struct XRReferencePointSubsystemDescriptor_t5972C5E3DEF485A89A3AA7D9D47CCD8A67FDB74D : public SubsystemDescriptor_1_tFFF984F9F6942FDAE965131A8954D4C4EA20B6B5
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.XRReferencePointSubsystemDescriptor::<supportsTrackableAttachments>k__BackingField
bool ___U3CsupportsTrackableAttachmentsU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3CsupportsTrackableAttachmentsU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(XRReferencePointSubsystemDescriptor_t5972C5E3DEF485A89A3AA7D9D47CCD8A67FDB74D, ___U3CsupportsTrackableAttachmentsU3Ek__BackingField_2)); }
inline bool get_U3CsupportsTrackableAttachmentsU3Ek__BackingField_2() const { return ___U3CsupportsTrackableAttachmentsU3Ek__BackingField_2; }
inline bool* get_address_of_U3CsupportsTrackableAttachmentsU3Ek__BackingField_2() { return &___U3CsupportsTrackableAttachmentsU3Ek__BackingField_2; }
inline void set_U3CsupportsTrackableAttachmentsU3Ek__BackingField_2(bool value)
{
___U3CsupportsTrackableAttachmentsU3Ek__BackingField_2 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRSessionSubsystem
struct XRSessionSubsystem_t9B9C16B4BDB611559FB6FA728BE399001E47EFF0 : public Subsystem_1_t749909AA5D71BD615BDF40BDE7C8F81B8D63F4C7
{
public:
// UnityEngine.XR.ARSubsystems.XRSessionSubsystem_IProvider UnityEngine.XR.ARSubsystems.XRSessionSubsystem::m_Provider
IProvider_tCE3A36B52F24E47DF8D9945EAB79493A822E9428 * ___m_Provider_0;
public:
inline static int32_t get_offset_of_m_Provider_0() { return static_cast<int32_t>(offsetof(XRSessionSubsystem_t9B9C16B4BDB611559FB6FA728BE399001E47EFF0, ___m_Provider_0)); }
inline IProvider_tCE3A36B52F24E47DF8D9945EAB79493A822E9428 * get_m_Provider_0() const { return ___m_Provider_0; }
inline IProvider_tCE3A36B52F24E47DF8D9945EAB79493A822E9428 ** get_address_of_m_Provider_0() { return &___m_Provider_0; }
inline void set_m_Provider_0(IProvider_tCE3A36B52F24E47DF8D9945EAB79493A822E9428 * value)
{
___m_Provider_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Provider_0), (void*)value);
}
};
// UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor
struct XRSessionSubsystemDescriptor_tAB6680BDBC0B281B15C5C9E6F4DA6810CFFBA079 : public SubsystemDescriptor_1_t0679ED150419770F94E42102F28D688E8F1DC9DA
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor::<supportsInstall>k__BackingField
bool ___U3CsupportsInstallU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3CsupportsInstallU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(XRSessionSubsystemDescriptor_tAB6680BDBC0B281B15C5C9E6F4DA6810CFFBA079, ___U3CsupportsInstallU3Ek__BackingField_2)); }
inline bool get_U3CsupportsInstallU3Ek__BackingField_2() const { return ___U3CsupportsInstallU3Ek__BackingField_2; }
inline bool* get_address_of_U3CsupportsInstallU3Ek__BackingField_2() { return &___U3CsupportsInstallU3Ek__BackingField_2; }
inline void set_U3CsupportsInstallU3Ek__BackingField_2(bool value)
{
___U3CsupportsInstallU3Ek__BackingField_2 = value;
}
};
// UnityEngine.XR.AvailableTrackingData
struct AvailableTrackingData_tF1140FC398AFB5CA7E9FBBBC8ECB242E91E86AAD
{
public:
// System.Int32 UnityEngine.XR.AvailableTrackingData::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AvailableTrackingData_tF1140FC398AFB5CA7E9FBBBC8ECB242E91E86AAD, ___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.XR.InputFeatureType
struct InputFeatureType_t683990CF03F80321E203CDC5EDCA5846BB56BAF4
{
public:
// System.UInt32 UnityEngine.XR.InputFeatureType::value__
uint32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InputFeatureType_t683990CF03F80321E203CDC5EDCA5846BB56BAF4, ___value___2)); }
inline uint32_t get_value___2() const { return ___value___2; }
inline uint32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.XRNode
struct XRNode_tC8909A28AC7B1B4D71839715DDC1011895BA5F5F
{
public:
// System.Int32 UnityEngine.XR.XRNode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(XRNode_tC8909A28AC7B1B4D71839715DDC1011895BA5F5F, ___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.XR.iOS.ARAnchor
struct ARAnchor_tB85958164FF99E5968B9E879D53746304F70CA79
{
public:
// System.String UnityEngine.XR.iOS.ARAnchor::identifier
String_t* ___identifier_0;
// UnityEngine.Matrix4x4 UnityEngine.XR.iOS.ARAnchor::transform
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___transform_1;
public:
inline static int32_t get_offset_of_identifier_0() { return static_cast<int32_t>(offsetof(ARAnchor_tB85958164FF99E5968B9E879D53746304F70CA79, ___identifier_0)); }
inline String_t* get_identifier_0() const { return ___identifier_0; }
inline String_t** get_address_of_identifier_0() { return &___identifier_0; }
inline void set_identifier_0(String_t* value)
{
___identifier_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___identifier_0), (void*)value);
}
inline static int32_t get_offset_of_transform_1() { return static_cast<int32_t>(offsetof(ARAnchor_tB85958164FF99E5968B9E879D53746304F70CA79, ___transform_1)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_transform_1() const { return ___transform_1; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_transform_1() { return &___transform_1; }
inline void set_transform_1(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___transform_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.iOS.ARAnchor
struct ARAnchor_tB85958164FF99E5968B9E879D53746304F70CA79_marshaled_pinvoke
{
char* ___identifier_0;
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___transform_1;
};
// Native definition for COM marshalling of UnityEngine.XR.iOS.ARAnchor
struct ARAnchor_tB85958164FF99E5968B9E879D53746304F70CA79_marshaled_com
{
Il2CppChar* ___identifier_0;
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___transform_1;
};
// UnityEngine.XR.iOS.ARErrorCode
struct ARErrorCode_t6A36694C7D737FAF515B51C632CF7A94600050FB
{
public:
// System.Int64 UnityEngine.XR.iOS.ARErrorCode::value__
int64_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ARErrorCode_t6A36694C7D737FAF515B51C632CF7A94600050FB, ___value___2)); }
inline int64_t get_value___2() const { return ___value___2; }
inline int64_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int64_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.iOS.ARHitTestResultType
struct ARHitTestResultType_t814937A1EF21002C977A5DD0BB084C31A591EDD2
{
public:
// System.Int64 UnityEngine.XR.iOS.ARHitTestResultType::value__
int64_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ARHitTestResultType_t814937A1EF21002C977A5DD0BB084C31A591EDD2, ___value___2)); }
inline int64_t get_value___2() const { return ___value___2; }
inline int64_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int64_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.iOS.ARPlaneAnchorAlignment
struct ARPlaneAnchorAlignment_t89145CE9B639FC3F45383357FE7914660E1E0E36
{
public:
// System.Int64 UnityEngine.XR.iOS.ARPlaneAnchorAlignment::value__
int64_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ARPlaneAnchorAlignment_t89145CE9B639FC3F45383357FE7914660E1E0E36, ___value___2)); }
inline int64_t get_value___2() const { return ___value___2; }
inline int64_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int64_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.iOS.ARPointCloud
struct ARPointCloud_t57E36E6C732B90C48B77D64E9FAE17668784064C : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.XR.iOS.ARPointCloud::m_Ptr
intptr_t ___m_Ptr_0;
// UnityEngine.Vector3[] UnityEngine.XR.iOS.ARPointCloud::m_Positions
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___m_Positions_1;
// System.UInt64[] UnityEngine.XR.iOS.ARPointCloud::m_Identifiers
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___m_Identifiers_2;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(ARPointCloud_t57E36E6C732B90C48B77D64E9FAE17668784064C, ___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;
}
inline static int32_t get_offset_of_m_Positions_1() { return static_cast<int32_t>(offsetof(ARPointCloud_t57E36E6C732B90C48B77D64E9FAE17668784064C, ___m_Positions_1)); }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get_m_Positions_1() const { return ___m_Positions_1; }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of_m_Positions_1() { return &___m_Positions_1; }
inline void set_m_Positions_1(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value)
{
___m_Positions_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Positions_1), (void*)value);
}
inline static int32_t get_offset_of_m_Identifiers_2() { return static_cast<int32_t>(offsetof(ARPointCloud_t57E36E6C732B90C48B77D64E9FAE17668784064C, ___m_Identifiers_2)); }
inline UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* get_m_Identifiers_2() const { return ___m_Identifiers_2; }
inline UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4** get_address_of_m_Identifiers_2() { return &___m_Identifiers_2; }
inline void set_m_Identifiers_2(UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* value)
{
___m_Identifiers_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Identifiers_2), (void*)value);
}
};
// UnityEngine.XR.iOS.ARRect
struct ARRect_t38009530D6E8A8FF69FCC26396C1D8E07EFE15B6
{
public:
// UnityEngine.XR.iOS.ARPoint UnityEngine.XR.iOS.ARRect::origin
ARPoint_t88E48F1C5C439AA12E4F178D93A44F5EA6EB21E2 ___origin_0;
// UnityEngine.XR.iOS.ARSize UnityEngine.XR.iOS.ARRect::size
ARSize_t8C8DA70FE8A29C830639F66636C653E0CC5C7FCA ___size_1;
public:
inline static int32_t get_offset_of_origin_0() { return static_cast<int32_t>(offsetof(ARRect_t38009530D6E8A8FF69FCC26396C1D8E07EFE15B6, ___origin_0)); }
inline ARPoint_t88E48F1C5C439AA12E4F178D93A44F5EA6EB21E2 get_origin_0() const { return ___origin_0; }
inline ARPoint_t88E48F1C5C439AA12E4F178D93A44F5EA6EB21E2 * get_address_of_origin_0() { return &___origin_0; }
inline void set_origin_0(ARPoint_t88E48F1C5C439AA12E4F178D93A44F5EA6EB21E2 value)
{
___origin_0 = value;
}
inline static int32_t get_offset_of_size_1() { return static_cast<int32_t>(offsetof(ARRect_t38009530D6E8A8FF69FCC26396C1D8E07EFE15B6, ___size_1)); }
inline ARSize_t8C8DA70FE8A29C830639F66636C653E0CC5C7FCA get_size_1() const { return ___size_1; }
inline ARSize_t8C8DA70FE8A29C830639F66636C653E0CC5C7FCA * get_address_of_size_1() { return &___size_1; }
inline void set_size_1(ARSize_t8C8DA70FE8A29C830639F66636C653E0CC5C7FCA value)
{
___size_1 = value;
}
};
// UnityEngine.XR.iOS.ARReferenceObject
struct ARReferenceObject_t24F4DEF53B51730CB8193C9DC6CB2F47E780C6F8 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.XR.iOS.ARReferenceObject::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(ARReferenceObject_t24F4DEF53B51730CB8193C9DC6CB2F47E780C6F8, ___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;
}
};
// UnityEngine.XR.iOS.ARTextureHandles_ARTextureHandlesStruct
struct ARTextureHandlesStruct_tBAFCB6BA6923FAA96E028E73E87C9FEF1AC661F5
{
public:
// System.IntPtr UnityEngine.XR.iOS.ARTextureHandles_ARTextureHandlesStruct::textureY
intptr_t ___textureY_0;
// System.IntPtr UnityEngine.XR.iOS.ARTextureHandles_ARTextureHandlesStruct::textureCbCr
intptr_t ___textureCbCr_1;
public:
inline static int32_t get_offset_of_textureY_0() { return static_cast<int32_t>(offsetof(ARTextureHandlesStruct_tBAFCB6BA6923FAA96E028E73E87C9FEF1AC661F5, ___textureY_0)); }
inline intptr_t get_textureY_0() const { return ___textureY_0; }
inline intptr_t* get_address_of_textureY_0() { return &___textureY_0; }
inline void set_textureY_0(intptr_t value)
{
___textureY_0 = value;
}
inline static int32_t get_offset_of_textureCbCr_1() { return static_cast<int32_t>(offsetof(ARTextureHandlesStruct_tBAFCB6BA6923FAA96E028E73E87C9FEF1AC661F5, ___textureCbCr_1)); }
inline intptr_t get_textureCbCr_1() const { return ___textureCbCr_1; }
inline intptr_t* get_address_of_textureCbCr_1() { return &___textureCbCr_1; }
inline void set_textureCbCr_1(intptr_t value)
{
___textureCbCr_1 = value;
}
};
// UnityEngine.XR.iOS.ARTrackingQuality
struct ARTrackingQuality_t67D2A34BAAB5C1EE061DEA291EC40CF030080E93
{
public:
// System.Int64 UnityEngine.XR.iOS.ARTrackingQuality::value__
int64_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ARTrackingQuality_t67D2A34BAAB5C1EE061DEA291EC40CF030080E93, ___value___2)); }
inline int64_t get_value___2() const { return ___value___2; }
inline int64_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int64_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.iOS.ARTrackingState
struct ARTrackingState_t904937D92845C4D5954E4E16182F7BC33F5F744B
{
public:
// System.Int32 UnityEngine.XR.iOS.ARTrackingState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ARTrackingState_t904937D92845C4D5954E4E16182F7BC33F5F744B, ___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.XR.iOS.ARTrackingStateReason
struct ARTrackingStateReason_t4E957429E93991E43643D4C64AC81F488B71A17C
{
public:
// System.Int32 UnityEngine.XR.iOS.ARTrackingStateReason::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ARTrackingStateReason_t4E957429E93991E43643D4C64AC81F488B71A17C, ___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.XR.iOS.ARUserAnchor
struct ARUserAnchor_tD992F8EA1A8A17856CE43420E6A9F07F3C55F452
{
public:
// System.String UnityEngine.XR.iOS.ARUserAnchor::identifier
String_t* ___identifier_0;
// UnityEngine.Matrix4x4 UnityEngine.XR.iOS.ARUserAnchor::transform
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___transform_1;
public:
inline static int32_t get_offset_of_identifier_0() { return static_cast<int32_t>(offsetof(ARUserAnchor_tD992F8EA1A8A17856CE43420E6A9F07F3C55F452, ___identifier_0)); }
inline String_t* get_identifier_0() const { return ___identifier_0; }
inline String_t** get_address_of_identifier_0() { return &___identifier_0; }
inline void set_identifier_0(String_t* value)
{
___identifier_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___identifier_0), (void*)value);
}
inline static int32_t get_offset_of_transform_1() { return static_cast<int32_t>(offsetof(ARUserAnchor_tD992F8EA1A8A17856CE43420E6A9F07F3C55F452, ___transform_1)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_transform_1() const { return ___transform_1; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_transform_1() { return &___transform_1; }
inline void set_transform_1(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___transform_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.iOS.ARUserAnchor
struct ARUserAnchor_tD992F8EA1A8A17856CE43420E6A9F07F3C55F452_marshaled_pinvoke
{
char* ___identifier_0;
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___transform_1;
};
// Native definition for COM marshalling of UnityEngine.XR.iOS.ARUserAnchor
struct ARUserAnchor_tD992F8EA1A8A17856CE43420E6A9F07F3C55F452_marshaled_com
{
Il2CppChar* ___identifier_0;
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___transform_1;
};
// UnityEngine.XR.iOS.ARWorldMap
struct ARWorldMap_tA5B42053DEC105A7BDEB0AB2E6DB3200BC2C397A : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.XR.iOS.ARWorldMap::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(ARWorldMap_tA5B42053DEC105A7BDEB0AB2E6DB3200BC2C397A, ___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;
}
};
// UnityEngine.XR.iOS.ARWorldMappingStatus
struct ARWorldMappingStatus_t1924A56B168ED7DDAA8FB935E53E56E56A893834
{
public:
// System.Int32 UnityEngine.XR.iOS.ARWorldMappingStatus::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ARWorldMappingStatus_t1924A56B168ED7DDAA8FB935E53E56E56A893834, ___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.XR.iOS.LightDataType
struct LightDataType_tA5D0C6CF82D21E2FC4D91A139ABEF4A2E4FB3553
{
public:
// System.Int32 UnityEngine.XR.iOS.LightDataType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LightDataType_tA5D0C6CF82D21E2FC4D91A139ABEF4A2E4FB3553, ___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.XR.iOS.MarshalDirectionalLightEstimate
struct MarshalDirectionalLightEstimate_t7BC98B612AADA17BDB3050D34DE74696570F5760
{
public:
// UnityEngine.Vector4 UnityEngine.XR.iOS.MarshalDirectionalLightEstimate::primaryDirAndIntensity
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___primaryDirAndIntensity_0;
// System.IntPtr UnityEngine.XR.iOS.MarshalDirectionalLightEstimate::sphericalHarmonicCoefficientsPtr
intptr_t ___sphericalHarmonicCoefficientsPtr_1;
public:
inline static int32_t get_offset_of_primaryDirAndIntensity_0() { return static_cast<int32_t>(offsetof(MarshalDirectionalLightEstimate_t7BC98B612AADA17BDB3050D34DE74696570F5760, ___primaryDirAndIntensity_0)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_primaryDirAndIntensity_0() const { return ___primaryDirAndIntensity_0; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_primaryDirAndIntensity_0() { return &___primaryDirAndIntensity_0; }
inline void set_primaryDirAndIntensity_0(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___primaryDirAndIntensity_0 = value;
}
inline static int32_t get_offset_of_sphericalHarmonicCoefficientsPtr_1() { return static_cast<int32_t>(offsetof(MarshalDirectionalLightEstimate_t7BC98B612AADA17BDB3050D34DE74696570F5760, ___sphericalHarmonicCoefficientsPtr_1)); }
inline intptr_t get_sphericalHarmonicCoefficientsPtr_1() const { return ___sphericalHarmonicCoefficientsPtr_1; }
inline intptr_t* get_address_of_sphericalHarmonicCoefficientsPtr_1() { return &___sphericalHarmonicCoefficientsPtr_1; }
inline void set_sphericalHarmonicCoefficientsPtr_1(intptr_t value)
{
___sphericalHarmonicCoefficientsPtr_1 = value;
}
};
// UnityEngine.XR.iOS.PickBoundingBox_HitType
struct HitType_t2FBB88E2877587CB4CB557811E924007CFCFCCEB
{
public:
// System.Int32 UnityEngine.XR.iOS.PickBoundingBox_HitType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(HitType_t2FBB88E2877587CB4CB557811E924007CFCFCCEB, ___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.XR.iOS.UnityARAlignment
struct UnityARAlignment_tBF31DEB8CE1A352963601C233FC63CBAA562054F
{
public:
// System.Int32 UnityEngine.XR.iOS.UnityARAlignment::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UnityARAlignment_tBF31DEB8CE1A352963601C233FC63CBAA562054F, ___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.XR.iOS.UnityARDirectionalLightEstimate
struct UnityARDirectionalLightEstimate_tF5324C28AA41BAADD17EBBCF55EEC46DC8B43AB9 : public RuntimeObject
{
public:
// UnityEngine.Vector3 UnityEngine.XR.iOS.UnityARDirectionalLightEstimate::primaryLightDirection
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___primaryLightDirection_0;
// System.Single UnityEngine.XR.iOS.UnityARDirectionalLightEstimate::primaryLightIntensity
float ___primaryLightIntensity_1;
// System.Single[] UnityEngine.XR.iOS.UnityARDirectionalLightEstimate::sphericalHarmonicsCoefficients
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ___sphericalHarmonicsCoefficients_2;
public:
inline static int32_t get_offset_of_primaryLightDirection_0() { return static_cast<int32_t>(offsetof(UnityARDirectionalLightEstimate_tF5324C28AA41BAADD17EBBCF55EEC46DC8B43AB9, ___primaryLightDirection_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_primaryLightDirection_0() const { return ___primaryLightDirection_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_primaryLightDirection_0() { return &___primaryLightDirection_0; }
inline void set_primaryLightDirection_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___primaryLightDirection_0 = value;
}
inline static int32_t get_offset_of_primaryLightIntensity_1() { return static_cast<int32_t>(offsetof(UnityARDirectionalLightEstimate_tF5324C28AA41BAADD17EBBCF55EEC46DC8B43AB9, ___primaryLightIntensity_1)); }
inline float get_primaryLightIntensity_1() const { return ___primaryLightIntensity_1; }
inline float* get_address_of_primaryLightIntensity_1() { return &___primaryLightIntensity_1; }
inline void set_primaryLightIntensity_1(float value)
{
___primaryLightIntensity_1 = value;
}
inline static int32_t get_offset_of_sphericalHarmonicsCoefficients_2() { return static_cast<int32_t>(offsetof(UnityARDirectionalLightEstimate_tF5324C28AA41BAADD17EBBCF55EEC46DC8B43AB9, ___sphericalHarmonicsCoefficients_2)); }
inline SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* get_sphericalHarmonicsCoefficients_2() const { return ___sphericalHarmonicsCoefficients_2; }
inline SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5** get_address_of_sphericalHarmonicsCoefficients_2() { return &___sphericalHarmonicsCoefficients_2; }
inline void set_sphericalHarmonicsCoefficients_2(SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* value)
{
___sphericalHarmonicsCoefficients_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sphericalHarmonicsCoefficients_2), (void*)value);
}
};
// UnityEngine.XR.iOS.UnityAREnvironmentTextureFormat
struct UnityAREnvironmentTextureFormat_t07FF6BFA0EC9E3AA27514C2BD1C6FE64DF8B13BA
{
public:
// System.Int64 UnityEngine.XR.iOS.UnityAREnvironmentTextureFormat::value__
int64_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UnityAREnvironmentTextureFormat_t07FF6BFA0EC9E3AA27514C2BD1C6FE64DF8B13BA, ___value___2)); }
inline int64_t get_value___2() const { return ___value___2; }
inline int64_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int64_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.iOS.UnityAREnvironmentTexturing
struct UnityAREnvironmentTexturing_tBDFAE61111F5224E58F7445C52AA83ABD7AFFE38
{
public:
// System.Int32 UnityEngine.XR.iOS.UnityAREnvironmentTexturing::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UnityAREnvironmentTexturing_tBDFAE61111F5224E58F7445C52AA83ABD7AFFE38, ___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.XR.iOS.UnityARFaceGeometry
struct UnityARFaceGeometry_t15F03281F3361400331718DF03DF7DA0DD5501E5
{
public:
// System.Int32 UnityEngine.XR.iOS.UnityARFaceGeometry::vertexCount
int32_t ___vertexCount_0;
// System.IntPtr UnityEngine.XR.iOS.UnityARFaceGeometry::vertices
intptr_t ___vertices_1;
// System.Int32 UnityEngine.XR.iOS.UnityARFaceGeometry::textureCoordinateCount
int32_t ___textureCoordinateCount_2;
// System.IntPtr UnityEngine.XR.iOS.UnityARFaceGeometry::textureCoordinates
intptr_t ___textureCoordinates_3;
// System.Int32 UnityEngine.XR.iOS.UnityARFaceGeometry::triangleCount
int32_t ___triangleCount_4;
// System.IntPtr UnityEngine.XR.iOS.UnityARFaceGeometry::triangleIndices
intptr_t ___triangleIndices_5;
public:
inline static int32_t get_offset_of_vertexCount_0() { return static_cast<int32_t>(offsetof(UnityARFaceGeometry_t15F03281F3361400331718DF03DF7DA0DD5501E5, ___vertexCount_0)); }
inline int32_t get_vertexCount_0() const { return ___vertexCount_0; }
inline int32_t* get_address_of_vertexCount_0() { return &___vertexCount_0; }
inline void set_vertexCount_0(int32_t value)
{
___vertexCount_0 = value;
}
inline static int32_t get_offset_of_vertices_1() { return static_cast<int32_t>(offsetof(UnityARFaceGeometry_t15F03281F3361400331718DF03DF7DA0DD5501E5, ___vertices_1)); }
inline intptr_t get_vertices_1() const { return ___vertices_1; }
inline intptr_t* get_address_of_vertices_1() { return &___vertices_1; }
inline void set_vertices_1(intptr_t value)
{
___vertices_1 = value;
}
inline static int32_t get_offset_of_textureCoordinateCount_2() { return static_cast<int32_t>(offsetof(UnityARFaceGeometry_t15F03281F3361400331718DF03DF7DA0DD5501E5, ___textureCoordinateCount_2)); }
inline int32_t get_textureCoordinateCount_2() const { return ___textureCoordinateCount_2; }
inline int32_t* get_address_of_textureCoordinateCount_2() { return &___textureCoordinateCount_2; }
inline void set_textureCoordinateCount_2(int32_t value)
{
___textureCoordinateCount_2 = value;
}
inline static int32_t get_offset_of_textureCoordinates_3() { return static_cast<int32_t>(offsetof(UnityARFaceGeometry_t15F03281F3361400331718DF03DF7DA0DD5501E5, ___textureCoordinates_3)); }
inline intptr_t get_textureCoordinates_3() const { return ___textureCoordinates_3; }
inline intptr_t* get_address_of_textureCoordinates_3() { return &___textureCoordinates_3; }
inline void set_textureCoordinates_3(intptr_t value)
{
___textureCoordinates_3 = value;
}
inline static int32_t get_offset_of_triangleCount_4() { return static_cast<int32_t>(offsetof(UnityARFaceGeometry_t15F03281F3361400331718DF03DF7DA0DD5501E5, ___triangleCount_4)); }
inline int32_t get_triangleCount_4() const { return ___triangleCount_4; }
inline int32_t* get_address_of_triangleCount_4() { return &___triangleCount_4; }
inline void set_triangleCount_4(int32_t value)
{
___triangleCount_4 = value;
}
inline static int32_t get_offset_of_triangleIndices_5() { return static_cast<int32_t>(offsetof(UnityARFaceGeometry_t15F03281F3361400331718DF03DF7DA0DD5501E5, ___triangleIndices_5)); }
inline intptr_t get_triangleIndices_5() const { return ___triangleIndices_5; }
inline intptr_t* get_address_of_triangleIndices_5() { return &___triangleIndices_5; }
inline void set_triangleIndices_5(intptr_t value)
{
___triangleIndices_5 = value;
}
};
// UnityEngine.XR.iOS.UnityARMatrix4x4
struct UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3
{
public:
// UnityEngine.Vector4 UnityEngine.XR.iOS.UnityARMatrix4x4::column0
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___column0_0;
// UnityEngine.Vector4 UnityEngine.XR.iOS.UnityARMatrix4x4::column1
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___column1_1;
// UnityEngine.Vector4 UnityEngine.XR.iOS.UnityARMatrix4x4::column2
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___column2_2;
// UnityEngine.Vector4 UnityEngine.XR.iOS.UnityARMatrix4x4::column3
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___column3_3;
public:
inline static int32_t get_offset_of_column0_0() { return static_cast<int32_t>(offsetof(UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3, ___column0_0)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_column0_0() const { return ___column0_0; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_column0_0() { return &___column0_0; }
inline void set_column0_0(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___column0_0 = value;
}
inline static int32_t get_offset_of_column1_1() { return static_cast<int32_t>(offsetof(UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3, ___column1_1)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_column1_1() const { return ___column1_1; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_column1_1() { return &___column1_1; }
inline void set_column1_1(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___column1_1 = value;
}
inline static int32_t get_offset_of_column2_2() { return static_cast<int32_t>(offsetof(UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3, ___column2_2)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_column2_2() const { return ___column2_2; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_column2_2() { return &___column2_2; }
inline void set_column2_2(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___column2_2 = value;
}
inline static int32_t get_offset_of_column3_3() { return static_cast<int32_t>(offsetof(UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3, ___column3_3)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_column3_3() const { return ___column3_3; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_column3_3() { return &___column3_3; }
inline void set_column3_3(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___column3_3 = value;
}
};
// UnityEngine.XR.iOS.UnityARPlaneDetection
struct UnityARPlaneDetection_t2B0A97EC1392ACCE7B07E691202B9CD10C972A22
{
public:
// System.Int32 UnityEngine.XR.iOS.UnityARPlaneDetection::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UnityARPlaneDetection_t2B0A97EC1392ACCE7B07E691202B9CD10C972A22, ___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.XR.iOS.UnityARPlaneGeometry
struct UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026
{
public:
// System.Int32 UnityEngine.XR.iOS.UnityARPlaneGeometry::vertexCount
int32_t ___vertexCount_0;
// System.IntPtr UnityEngine.XR.iOS.UnityARPlaneGeometry::vertices
intptr_t ___vertices_1;
// System.Int32 UnityEngine.XR.iOS.UnityARPlaneGeometry::textureCoordinateCount
int32_t ___textureCoordinateCount_2;
// System.IntPtr UnityEngine.XR.iOS.UnityARPlaneGeometry::textureCoordinates
intptr_t ___textureCoordinates_3;
// System.Int32 UnityEngine.XR.iOS.UnityARPlaneGeometry::triangleCount
int32_t ___triangleCount_4;
// System.IntPtr UnityEngine.XR.iOS.UnityARPlaneGeometry::triangleIndices
intptr_t ___triangleIndices_5;
// System.Int32 UnityEngine.XR.iOS.UnityARPlaneGeometry::boundaryVertexCount
int32_t ___boundaryVertexCount_6;
// System.IntPtr UnityEngine.XR.iOS.UnityARPlaneGeometry::boundaryVertices
intptr_t ___boundaryVertices_7;
public:
inline static int32_t get_offset_of_vertexCount_0() { return static_cast<int32_t>(offsetof(UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026, ___vertexCount_0)); }
inline int32_t get_vertexCount_0() const { return ___vertexCount_0; }
inline int32_t* get_address_of_vertexCount_0() { return &___vertexCount_0; }
inline void set_vertexCount_0(int32_t value)
{
___vertexCount_0 = value;
}
inline static int32_t get_offset_of_vertices_1() { return static_cast<int32_t>(offsetof(UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026, ___vertices_1)); }
inline intptr_t get_vertices_1() const { return ___vertices_1; }
inline intptr_t* get_address_of_vertices_1() { return &___vertices_1; }
inline void set_vertices_1(intptr_t value)
{
___vertices_1 = value;
}
inline static int32_t get_offset_of_textureCoordinateCount_2() { return static_cast<int32_t>(offsetof(UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026, ___textureCoordinateCount_2)); }
inline int32_t get_textureCoordinateCount_2() const { return ___textureCoordinateCount_2; }
inline int32_t* get_address_of_textureCoordinateCount_2() { return &___textureCoordinateCount_2; }
inline void set_textureCoordinateCount_2(int32_t value)
{
___textureCoordinateCount_2 = value;
}
inline static int32_t get_offset_of_textureCoordinates_3() { return static_cast<int32_t>(offsetof(UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026, ___textureCoordinates_3)); }
inline intptr_t get_textureCoordinates_3() const { return ___textureCoordinates_3; }
inline intptr_t* get_address_of_textureCoordinates_3() { return &___textureCoordinates_3; }
inline void set_textureCoordinates_3(intptr_t value)
{
___textureCoordinates_3 = value;
}
inline static int32_t get_offset_of_triangleCount_4() { return static_cast<int32_t>(offsetof(UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026, ___triangleCount_4)); }
inline int32_t get_triangleCount_4() const { return ___triangleCount_4; }
inline int32_t* get_address_of_triangleCount_4() { return &___triangleCount_4; }
inline void set_triangleCount_4(int32_t value)
{
___triangleCount_4 = value;
}
inline static int32_t get_offset_of_triangleIndices_5() { return static_cast<int32_t>(offsetof(UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026, ___triangleIndices_5)); }
inline intptr_t get_triangleIndices_5() const { return ___triangleIndices_5; }
inline intptr_t* get_address_of_triangleIndices_5() { return &___triangleIndices_5; }
inline void set_triangleIndices_5(intptr_t value)
{
___triangleIndices_5 = value;
}
inline static int32_t get_offset_of_boundaryVertexCount_6() { return static_cast<int32_t>(offsetof(UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026, ___boundaryVertexCount_6)); }
inline int32_t get_boundaryVertexCount_6() const { return ___boundaryVertexCount_6; }
inline int32_t* get_address_of_boundaryVertexCount_6() { return &___boundaryVertexCount_6; }
inline void set_boundaryVertexCount_6(int32_t value)
{
___boundaryVertexCount_6 = value;
}
inline static int32_t get_offset_of_boundaryVertices_7() { return static_cast<int32_t>(offsetof(UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026, ___boundaryVertices_7)); }
inline intptr_t get_boundaryVertices_7() const { return ___boundaryVertices_7; }
inline intptr_t* get_address_of_boundaryVertices_7() { return &___boundaryVertices_7; }
inline void set_boundaryVertices_7(intptr_t value)
{
___boundaryVertices_7 = value;
}
};
// UnityEngine.XR.iOS.UnityARSessionRunOption
struct UnityARSessionRunOption_t727FF292E082186FACC7FF0DB653ACCE553F3247
{
public:
// System.Int32 UnityEngine.XR.iOS.UnityARSessionRunOption::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UnityARSessionRunOption_t727FF292E082186FACC7FF0DB653ACCE553F3247, ___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.XR.iOS.UnityARVideoFormat
struct UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95
{
public:
// System.IntPtr UnityEngine.XR.iOS.UnityARVideoFormat::videoFormatPtr
intptr_t ___videoFormatPtr_0;
// System.Single UnityEngine.XR.iOS.UnityARVideoFormat::imageResolutionWidth
float ___imageResolutionWidth_1;
// System.Single UnityEngine.XR.iOS.UnityARVideoFormat::imageResolutionHeight
float ___imageResolutionHeight_2;
// System.Int32 UnityEngine.XR.iOS.UnityARVideoFormat::framesPerSecond
int32_t ___framesPerSecond_3;
public:
inline static int32_t get_offset_of_videoFormatPtr_0() { return static_cast<int32_t>(offsetof(UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95, ___videoFormatPtr_0)); }
inline intptr_t get_videoFormatPtr_0() const { return ___videoFormatPtr_0; }
inline intptr_t* get_address_of_videoFormatPtr_0() { return &___videoFormatPtr_0; }
inline void set_videoFormatPtr_0(intptr_t value)
{
___videoFormatPtr_0 = value;
}
inline static int32_t get_offset_of_imageResolutionWidth_1() { return static_cast<int32_t>(offsetof(UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95, ___imageResolutionWidth_1)); }
inline float get_imageResolutionWidth_1() const { return ___imageResolutionWidth_1; }
inline float* get_address_of_imageResolutionWidth_1() { return &___imageResolutionWidth_1; }
inline void set_imageResolutionWidth_1(float value)
{
___imageResolutionWidth_1 = value;
}
inline static int32_t get_offset_of_imageResolutionHeight_2() { return static_cast<int32_t>(offsetof(UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95, ___imageResolutionHeight_2)); }
inline float get_imageResolutionHeight_2() const { return ___imageResolutionHeight_2; }
inline float* get_address_of_imageResolutionHeight_2() { return &___imageResolutionHeight_2; }
inline void set_imageResolutionHeight_2(float value)
{
___imageResolutionHeight_2 = value;
}
inline static int32_t get_offset_of_framesPerSecond_3() { return static_cast<int32_t>(offsetof(UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95, ___framesPerSecond_3)); }
inline int32_t get_framesPerSecond_3() const { return ___framesPerSecond_3; }
inline int32_t* get_address_of_framesPerSecond_3() { return &___framesPerSecond_3; }
inline void set_framesPerSecond_3(int32_t value)
{
___framesPerSecond_3 = value;
}
};
struct UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95_StaticFields
{
public:
// System.Collections.Generic.List`1<UnityEngine.XR.iOS.UnityARVideoFormat> UnityEngine.XR.iOS.UnityARVideoFormat::videoFormatsList
List_1_tCF4CFA50F2B730D7C5BBB9EEB7800C3B58380E71 * ___videoFormatsList_4;
public:
inline static int32_t get_offset_of_videoFormatsList_4() { return static_cast<int32_t>(offsetof(UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95_StaticFields, ___videoFormatsList_4)); }
inline List_1_tCF4CFA50F2B730D7C5BBB9EEB7800C3B58380E71 * get_videoFormatsList_4() const { return ___videoFormatsList_4; }
inline List_1_tCF4CFA50F2B730D7C5BBB9EEB7800C3B58380E71 ** get_address_of_videoFormatsList_4() { return &___videoFormatsList_4; }
inline void set_videoFormatsList_4(List_1_tCF4CFA50F2B730D7C5BBB9EEB7800C3B58380E71 * value)
{
___videoFormatsList_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___videoFormatsList_4), (void*)value);
}
};
// UnityEngine.XR.iOS.UnityVideoParams
struct UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1
{
public:
// System.Int32 UnityEngine.XR.iOS.UnityVideoParams::yWidth
int32_t ___yWidth_0;
// System.Int32 UnityEngine.XR.iOS.UnityVideoParams::yHeight
int32_t ___yHeight_1;
// System.Int32 UnityEngine.XR.iOS.UnityVideoParams::screenOrientation
int32_t ___screenOrientation_2;
// System.Single UnityEngine.XR.iOS.UnityVideoParams::texCoordScale
float ___texCoordScale_3;
// System.IntPtr UnityEngine.XR.iOS.UnityVideoParams::cvPixelBufferPtr
intptr_t ___cvPixelBufferPtr_4;
public:
inline static int32_t get_offset_of_yWidth_0() { return static_cast<int32_t>(offsetof(UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1, ___yWidth_0)); }
inline int32_t get_yWidth_0() const { return ___yWidth_0; }
inline int32_t* get_address_of_yWidth_0() { return &___yWidth_0; }
inline void set_yWidth_0(int32_t value)
{
___yWidth_0 = value;
}
inline static int32_t get_offset_of_yHeight_1() { return static_cast<int32_t>(offsetof(UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1, ___yHeight_1)); }
inline int32_t get_yHeight_1() const { return ___yHeight_1; }
inline int32_t* get_address_of_yHeight_1() { return &___yHeight_1; }
inline void set_yHeight_1(int32_t value)
{
___yHeight_1 = value;
}
inline static int32_t get_offset_of_screenOrientation_2() { return static_cast<int32_t>(offsetof(UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1, ___screenOrientation_2)); }
inline int32_t get_screenOrientation_2() const { return ___screenOrientation_2; }
inline int32_t* get_address_of_screenOrientation_2() { return &___screenOrientation_2; }
inline void set_screenOrientation_2(int32_t value)
{
___screenOrientation_2 = value;
}
inline static int32_t get_offset_of_texCoordScale_3() { return static_cast<int32_t>(offsetof(UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1, ___texCoordScale_3)); }
inline float get_texCoordScale_3() const { return ___texCoordScale_3; }
inline float* get_address_of_texCoordScale_3() { return &___texCoordScale_3; }
inline void set_texCoordScale_3(float value)
{
___texCoordScale_3 = value;
}
inline static int32_t get_offset_of_cvPixelBufferPtr_4() { return static_cast<int32_t>(offsetof(UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1, ___cvPixelBufferPtr_4)); }
inline intptr_t get_cvPixelBufferPtr_4() const { return ___cvPixelBufferPtr_4; }
inline intptr_t* get_address_of_cvPixelBufferPtr_4() { return &___cvPixelBufferPtr_4; }
inline void set_cvPixelBufferPtr_4(intptr_t value)
{
___cvPixelBufferPtr_4 = value;
}
};
// UnityEngine.XR.iOS.Utils.serializableFromEditorMessage
struct serializableFromEditorMessage_tB18FB18AC5303D86A3F7EDDD174D5573C9DAC6B3 : public RuntimeObject
{
public:
// System.Guid UnityEngine.XR.iOS.Utils.serializableFromEditorMessage::subMessageId
Guid_t ___subMessageId_0;
// UnityEngine.XR.iOS.Utils.serializableARKitInit UnityEngine.XR.iOS.Utils.serializableFromEditorMessage::arkitConfigMsg
serializableARKitInit_t226FD9E7021E39F06F9F5717116C1688C2D293BF * ___arkitConfigMsg_1;
public:
inline static int32_t get_offset_of_subMessageId_0() { return static_cast<int32_t>(offsetof(serializableFromEditorMessage_tB18FB18AC5303D86A3F7EDDD174D5573C9DAC6B3, ___subMessageId_0)); }
inline Guid_t get_subMessageId_0() const { return ___subMessageId_0; }
inline Guid_t * get_address_of_subMessageId_0() { return &___subMessageId_0; }
inline void set_subMessageId_0(Guid_t value)
{
___subMessageId_0 = value;
}
inline static int32_t get_offset_of_arkitConfigMsg_1() { return static_cast<int32_t>(offsetof(serializableFromEditorMessage_tB18FB18AC5303D86A3F7EDDD174D5573C9DAC6B3, ___arkitConfigMsg_1)); }
inline serializableARKitInit_t226FD9E7021E39F06F9F5717116C1688C2D293BF * get_arkitConfigMsg_1() const { return ___arkitConfigMsg_1; }
inline serializableARKitInit_t226FD9E7021E39F06F9F5717116C1688C2D293BF ** get_address_of_arkitConfigMsg_1() { return &___arkitConfigMsg_1; }
inline void set_arkitConfigMsg_1(serializableARKitInit_t226FD9E7021E39F06F9F5717116C1688C2D293BF * value)
{
___arkitConfigMsg_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___arkitConfigMsg_1), (void*)value);
}
};
// UnityEngineInternal.Input.NativeInputUpdateType
struct NativeInputUpdateType_t744D5594ED044E47F3BAF84F45326948B8930C71
{
public:
// System.Int32 UnityEngineInternal.Input.NativeInputUpdateType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NativeInputUpdateType_t744D5594ED044E47F3BAF84F45326948B8930C71, ___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;
};
// Unity.Collections.NativeArray`1<UnityEngine.Quaternion>
struct NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.Vector2>
struct NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.Vector3>
struct NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Unity.Collections.NativeArray`1<UnityEngine.Vector4>
struct NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Native definition for P/Invoke marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_pinvoke
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// Native definition for COM marshalling of Unity.Collections.NativeArray`1
#ifndef NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
#define NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com_define
struct NativeArray_1_t350F3793D2FE9D9CD5A50725BE978ED846FE3098_marshaled_com
{
void* ___m_Buffer_0;
int32_t ___m_Length_1;
int32_t ___m_AllocatorLabel_2;
};
#endif
// UnityEngine.AnimationEvent
struct AnimationEvent_tEDD4E45FEA5CA4657CBBF1E0CFF657191D90673F : public RuntimeObject
{
public:
// System.Single UnityEngine.AnimationEvent::m_Time
float ___m_Time_0;
// System.String UnityEngine.AnimationEvent::m_FunctionName
String_t* ___m_FunctionName_1;
// System.String UnityEngine.AnimationEvent::m_StringParameter
String_t* ___m_StringParameter_2;
// UnityEngine.Object UnityEngine.AnimationEvent::m_ObjectReferenceParameter
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___m_ObjectReferenceParameter_3;
// System.Single UnityEngine.AnimationEvent::m_FloatParameter
float ___m_FloatParameter_4;
// System.Int32 UnityEngine.AnimationEvent::m_IntParameter
int32_t ___m_IntParameter_5;
// System.Int32 UnityEngine.AnimationEvent::m_MessageOptions
int32_t ___m_MessageOptions_6;
// UnityEngine.AnimationEventSource UnityEngine.AnimationEvent::m_Source
int32_t ___m_Source_7;
// UnityEngine.AnimationState UnityEngine.AnimationEvent::m_StateSender
AnimationState_t48FF4D41FEF3492F8286100BE3758CE3A4656386 * ___m_StateSender_8;
// UnityEngine.AnimatorStateInfo UnityEngine.AnimationEvent::m_AnimatorStateInfo
AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2 ___m_AnimatorStateInfo_9;
// UnityEngine.AnimatorClipInfo UnityEngine.AnimationEvent::m_AnimatorClipInfo
AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180 ___m_AnimatorClipInfo_10;
public:
inline static int32_t get_offset_of_m_Time_0() { return static_cast<int32_t>(offsetof(AnimationEvent_tEDD4E45FEA5CA4657CBBF1E0CFF657191D90673F, ___m_Time_0)); }
inline float get_m_Time_0() const { return ___m_Time_0; }
inline float* get_address_of_m_Time_0() { return &___m_Time_0; }
inline void set_m_Time_0(float value)
{
___m_Time_0 = value;
}
inline static int32_t get_offset_of_m_FunctionName_1() { return static_cast<int32_t>(offsetof(AnimationEvent_tEDD4E45FEA5CA4657CBBF1E0CFF657191D90673F, ___m_FunctionName_1)); }
inline String_t* get_m_FunctionName_1() const { return ___m_FunctionName_1; }
inline String_t** get_address_of_m_FunctionName_1() { return &___m_FunctionName_1; }
inline void set_m_FunctionName_1(String_t* value)
{
___m_FunctionName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_FunctionName_1), (void*)value);
}
inline static int32_t get_offset_of_m_StringParameter_2() { return static_cast<int32_t>(offsetof(AnimationEvent_tEDD4E45FEA5CA4657CBBF1E0CFF657191D90673F, ___m_StringParameter_2)); }
inline String_t* get_m_StringParameter_2() const { return ___m_StringParameter_2; }
inline String_t** get_address_of_m_StringParameter_2() { return &___m_StringParameter_2; }
inline void set_m_StringParameter_2(String_t* value)
{
___m_StringParameter_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_StringParameter_2), (void*)value);
}
inline static int32_t get_offset_of_m_ObjectReferenceParameter_3() { return static_cast<int32_t>(offsetof(AnimationEvent_tEDD4E45FEA5CA4657CBBF1E0CFF657191D90673F, ___m_ObjectReferenceParameter_3)); }
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * get_m_ObjectReferenceParameter_3() const { return ___m_ObjectReferenceParameter_3; }
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 ** get_address_of_m_ObjectReferenceParameter_3() { return &___m_ObjectReferenceParameter_3; }
inline void set_m_ObjectReferenceParameter_3(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * value)
{
___m_ObjectReferenceParameter_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ObjectReferenceParameter_3), (void*)value);
}
inline static int32_t get_offset_of_m_FloatParameter_4() { return static_cast<int32_t>(offsetof(AnimationEvent_tEDD4E45FEA5CA4657CBBF1E0CFF657191D90673F, ___m_FloatParameter_4)); }
inline float get_m_FloatParameter_4() const { return ___m_FloatParameter_4; }
inline float* get_address_of_m_FloatParameter_4() { return &___m_FloatParameter_4; }
inline void set_m_FloatParameter_4(float value)
{
___m_FloatParameter_4 = value;
}
inline static int32_t get_offset_of_m_IntParameter_5() { return static_cast<int32_t>(offsetof(AnimationEvent_tEDD4E45FEA5CA4657CBBF1E0CFF657191D90673F, ___m_IntParameter_5)); }
inline int32_t get_m_IntParameter_5() const { return ___m_IntParameter_5; }
inline int32_t* get_address_of_m_IntParameter_5() { return &___m_IntParameter_5; }
inline void set_m_IntParameter_5(int32_t value)
{
___m_IntParameter_5 = value;
}
inline static int32_t get_offset_of_m_MessageOptions_6() { return static_cast<int32_t>(offsetof(AnimationEvent_tEDD4E45FEA5CA4657CBBF1E0CFF657191D90673F, ___m_MessageOptions_6)); }
inline int32_t get_m_MessageOptions_6() const { return ___m_MessageOptions_6; }
inline int32_t* get_address_of_m_MessageOptions_6() { return &___m_MessageOptions_6; }
inline void set_m_MessageOptions_6(int32_t value)
{
___m_MessageOptions_6 = value;
}
inline static int32_t get_offset_of_m_Source_7() { return static_cast<int32_t>(offsetof(AnimationEvent_tEDD4E45FEA5CA4657CBBF1E0CFF657191D90673F, ___m_Source_7)); }
inline int32_t get_m_Source_7() const { return ___m_Source_7; }
inline int32_t* get_address_of_m_Source_7() { return &___m_Source_7; }
inline void set_m_Source_7(int32_t value)
{
___m_Source_7 = value;
}
inline static int32_t get_offset_of_m_StateSender_8() { return static_cast<int32_t>(offsetof(AnimationEvent_tEDD4E45FEA5CA4657CBBF1E0CFF657191D90673F, ___m_StateSender_8)); }
inline AnimationState_t48FF4D41FEF3492F8286100BE3758CE3A4656386 * get_m_StateSender_8() const { return ___m_StateSender_8; }
inline AnimationState_t48FF4D41FEF3492F8286100BE3758CE3A4656386 ** get_address_of_m_StateSender_8() { return &___m_StateSender_8; }
inline void set_m_StateSender_8(AnimationState_t48FF4D41FEF3492F8286100BE3758CE3A4656386 * value)
{
___m_StateSender_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_StateSender_8), (void*)value);
}
inline static int32_t get_offset_of_m_AnimatorStateInfo_9() { return static_cast<int32_t>(offsetof(AnimationEvent_tEDD4E45FEA5CA4657CBBF1E0CFF657191D90673F, ___m_AnimatorStateInfo_9)); }
inline AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2 get_m_AnimatorStateInfo_9() const { return ___m_AnimatorStateInfo_9; }
inline AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2 * get_address_of_m_AnimatorStateInfo_9() { return &___m_AnimatorStateInfo_9; }
inline void set_m_AnimatorStateInfo_9(AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2 value)
{
___m_AnimatorStateInfo_9 = value;
}
inline static int32_t get_offset_of_m_AnimatorClipInfo_10() { return static_cast<int32_t>(offsetof(AnimationEvent_tEDD4E45FEA5CA4657CBBF1E0CFF657191D90673F, ___m_AnimatorClipInfo_10)); }
inline AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180 get_m_AnimatorClipInfo_10() const { return ___m_AnimatorClipInfo_10; }
inline AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180 * get_address_of_m_AnimatorClipInfo_10() { return &___m_AnimatorClipInfo_10; }
inline void set_m_AnimatorClipInfo_10(AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180 value)
{
___m_AnimatorClipInfo_10 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.AnimationEvent
struct AnimationEvent_tEDD4E45FEA5CA4657CBBF1E0CFF657191D90673F_marshaled_pinvoke
{
float ___m_Time_0;
char* ___m_FunctionName_1;
char* ___m_StringParameter_2;
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke ___m_ObjectReferenceParameter_3;
float ___m_FloatParameter_4;
int32_t ___m_IntParameter_5;
int32_t ___m_MessageOptions_6;
int32_t ___m_Source_7;
AnimationState_t48FF4D41FEF3492F8286100BE3758CE3A4656386 * ___m_StateSender_8;
AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2 ___m_AnimatorStateInfo_9;
AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180 ___m_AnimatorClipInfo_10;
};
// Native definition for COM marshalling of UnityEngine.AnimationEvent
struct AnimationEvent_tEDD4E45FEA5CA4657CBBF1E0CFF657191D90673F_marshaled_com
{
float ___m_Time_0;
Il2CppChar* ___m_FunctionName_1;
Il2CppChar* ___m_StringParameter_2;
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com* ___m_ObjectReferenceParameter_3;
float ___m_FloatParameter_4;
int32_t ___m_IntParameter_5;
int32_t ___m_MessageOptions_6;
int32_t ___m_Source_7;
AnimationState_t48FF4D41FEF3492F8286100BE3758CE3A4656386 * ___m_StateSender_8;
AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2 ___m_AnimatorStateInfo_9;
AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180 ___m_AnimatorClipInfo_10;
};
// UnityEngine.AnimationState
struct AnimationState_t48FF4D41FEF3492F8286100BE3758CE3A4656386 : public TrackedReference_tE93229EF7055CBB35B2A98DD2493947428D06107
{
public:
public:
};
// UnityEngine.Animations.AnimationClipPlayable
struct AnimationClipPlayable_t6EF38F9EED94096D4793638AFC8D11D285B43183
{
public:
// UnityEngine.Playables.PlayableHandle UnityEngine.Animations.AnimationClipPlayable::m_Handle
PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AnimationClipPlayable_t6EF38F9EED94096D4793638AFC8D11D285B43183, ___m_Handle_0)); }
inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; }
inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value)
{
___m_Handle_0 = value;
}
};
// UnityEngine.Animations.AnimationLayerMixerPlayable
struct AnimationLayerMixerPlayable_t699CCDE32ABD6FC79BFC09064E473D785D9F9371
{
public:
// UnityEngine.Playables.PlayableHandle UnityEngine.Animations.AnimationLayerMixerPlayable::m_Handle
PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AnimationLayerMixerPlayable_t699CCDE32ABD6FC79BFC09064E473D785D9F9371, ___m_Handle_0)); }
inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; }
inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value)
{
___m_Handle_0 = value;
}
};
struct AnimationLayerMixerPlayable_t699CCDE32ABD6FC79BFC09064E473D785D9F9371_StaticFields
{
public:
// UnityEngine.Animations.AnimationLayerMixerPlayable UnityEngine.Animations.AnimationLayerMixerPlayable::m_NullPlayable
AnimationLayerMixerPlayable_t699CCDE32ABD6FC79BFC09064E473D785D9F9371 ___m_NullPlayable_1;
public:
inline static int32_t get_offset_of_m_NullPlayable_1() { return static_cast<int32_t>(offsetof(AnimationLayerMixerPlayable_t699CCDE32ABD6FC79BFC09064E473D785D9F9371_StaticFields, ___m_NullPlayable_1)); }
inline AnimationLayerMixerPlayable_t699CCDE32ABD6FC79BFC09064E473D785D9F9371 get_m_NullPlayable_1() const { return ___m_NullPlayable_1; }
inline AnimationLayerMixerPlayable_t699CCDE32ABD6FC79BFC09064E473D785D9F9371 * get_address_of_m_NullPlayable_1() { return &___m_NullPlayable_1; }
inline void set_m_NullPlayable_1(AnimationLayerMixerPlayable_t699CCDE32ABD6FC79BFC09064E473D785D9F9371 value)
{
___m_NullPlayable_1 = value;
}
};
// UnityEngine.Animations.AnimationMixerPlayable
struct AnimationMixerPlayable_tA71C834654979CF92B034B537EE5A3DA9713030A
{
public:
// UnityEngine.Playables.PlayableHandle UnityEngine.Animations.AnimationMixerPlayable::m_Handle
PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AnimationMixerPlayable_tA71C834654979CF92B034B537EE5A3DA9713030A, ___m_Handle_0)); }
inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; }
inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value)
{
___m_Handle_0 = value;
}
};
struct AnimationMixerPlayable_tA71C834654979CF92B034B537EE5A3DA9713030A_StaticFields
{
public:
// UnityEngine.Animations.AnimationMixerPlayable UnityEngine.Animations.AnimationMixerPlayable::m_NullPlayable
AnimationMixerPlayable_tA71C834654979CF92B034B537EE5A3DA9713030A ___m_NullPlayable_1;
public:
inline static int32_t get_offset_of_m_NullPlayable_1() { return static_cast<int32_t>(offsetof(AnimationMixerPlayable_tA71C834654979CF92B034B537EE5A3DA9713030A_StaticFields, ___m_NullPlayable_1)); }
inline AnimationMixerPlayable_tA71C834654979CF92B034B537EE5A3DA9713030A get_m_NullPlayable_1() const { return ___m_NullPlayable_1; }
inline AnimationMixerPlayable_tA71C834654979CF92B034B537EE5A3DA9713030A * get_address_of_m_NullPlayable_1() { return &___m_NullPlayable_1; }
inline void set_m_NullPlayable_1(AnimationMixerPlayable_tA71C834654979CF92B034B537EE5A3DA9713030A value)
{
___m_NullPlayable_1 = value;
}
};
// UnityEngine.Animations.AnimationMotionXToDeltaPlayable
struct AnimationMotionXToDeltaPlayable_tA5F0BE3BA966E1A6661311F185C1544F90302CDC
{
public:
// UnityEngine.Playables.PlayableHandle UnityEngine.Animations.AnimationMotionXToDeltaPlayable::m_Handle
PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AnimationMotionXToDeltaPlayable_tA5F0BE3BA966E1A6661311F185C1544F90302CDC, ___m_Handle_0)); }
inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; }
inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value)
{
___m_Handle_0 = value;
}
};
struct AnimationMotionXToDeltaPlayable_tA5F0BE3BA966E1A6661311F185C1544F90302CDC_StaticFields
{
public:
// UnityEngine.Animations.AnimationMotionXToDeltaPlayable UnityEngine.Animations.AnimationMotionXToDeltaPlayable::m_NullPlayable
AnimationMotionXToDeltaPlayable_tA5F0BE3BA966E1A6661311F185C1544F90302CDC ___m_NullPlayable_1;
public:
inline static int32_t get_offset_of_m_NullPlayable_1() { return static_cast<int32_t>(offsetof(AnimationMotionXToDeltaPlayable_tA5F0BE3BA966E1A6661311F185C1544F90302CDC_StaticFields, ___m_NullPlayable_1)); }
inline AnimationMotionXToDeltaPlayable_tA5F0BE3BA966E1A6661311F185C1544F90302CDC get_m_NullPlayable_1() const { return ___m_NullPlayable_1; }
inline AnimationMotionXToDeltaPlayable_tA5F0BE3BA966E1A6661311F185C1544F90302CDC * get_address_of_m_NullPlayable_1() { return &___m_NullPlayable_1; }
inline void set_m_NullPlayable_1(AnimationMotionXToDeltaPlayable_tA5F0BE3BA966E1A6661311F185C1544F90302CDC value)
{
___m_NullPlayable_1 = value;
}
};
// UnityEngine.Animations.AnimationOffsetPlayable
struct AnimationOffsetPlayable_t1534674D22C39D6ED74F24A108C3475C7301A93E
{
public:
// UnityEngine.Playables.PlayableHandle UnityEngine.Animations.AnimationOffsetPlayable::m_Handle
PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AnimationOffsetPlayable_t1534674D22C39D6ED74F24A108C3475C7301A93E, ___m_Handle_0)); }
inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; }
inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value)
{
___m_Handle_0 = value;
}
};
struct AnimationOffsetPlayable_t1534674D22C39D6ED74F24A108C3475C7301A93E_StaticFields
{
public:
// UnityEngine.Animations.AnimationOffsetPlayable UnityEngine.Animations.AnimationOffsetPlayable::m_NullPlayable
AnimationOffsetPlayable_t1534674D22C39D6ED74F24A108C3475C7301A93E ___m_NullPlayable_1;
public:
inline static int32_t get_offset_of_m_NullPlayable_1() { return static_cast<int32_t>(offsetof(AnimationOffsetPlayable_t1534674D22C39D6ED74F24A108C3475C7301A93E_StaticFields, ___m_NullPlayable_1)); }
inline AnimationOffsetPlayable_t1534674D22C39D6ED74F24A108C3475C7301A93E get_m_NullPlayable_1() const { return ___m_NullPlayable_1; }
inline AnimationOffsetPlayable_t1534674D22C39D6ED74F24A108C3475C7301A93E * get_address_of_m_NullPlayable_1() { return &___m_NullPlayable_1; }
inline void set_m_NullPlayable_1(AnimationOffsetPlayable_t1534674D22C39D6ED74F24A108C3475C7301A93E value)
{
___m_NullPlayable_1 = value;
}
};
// UnityEngine.Animations.AnimationPlayableOutput
struct AnimationPlayableOutput_tA10178429D6528BDB4516F6788CE680E349553E6
{
public:
// UnityEngine.Playables.PlayableOutputHandle UnityEngine.Animations.AnimationPlayableOutput::m_Handle
PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AnimationPlayableOutput_tA10178429D6528BDB4516F6788CE680E349553E6, ___m_Handle_0)); }
inline PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 get_m_Handle_0() const { return ___m_Handle_0; }
inline PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 * get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 value)
{
___m_Handle_0 = value;
}
};
// UnityEngine.Animations.AnimationPosePlayable
struct AnimationPosePlayable_t92EAB5BB4093D236F90ED0242488039EA87AFA07
{
public:
// UnityEngine.Playables.PlayableHandle UnityEngine.Animations.AnimationPosePlayable::m_Handle
PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AnimationPosePlayable_t92EAB5BB4093D236F90ED0242488039EA87AFA07, ___m_Handle_0)); }
inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; }
inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value)
{
___m_Handle_0 = value;
}
};
struct AnimationPosePlayable_t92EAB5BB4093D236F90ED0242488039EA87AFA07_StaticFields
{
public:
// UnityEngine.Animations.AnimationPosePlayable UnityEngine.Animations.AnimationPosePlayable::m_NullPlayable
AnimationPosePlayable_t92EAB5BB4093D236F90ED0242488039EA87AFA07 ___m_NullPlayable_1;
public:
inline static int32_t get_offset_of_m_NullPlayable_1() { return static_cast<int32_t>(offsetof(AnimationPosePlayable_t92EAB5BB4093D236F90ED0242488039EA87AFA07_StaticFields, ___m_NullPlayable_1)); }
inline AnimationPosePlayable_t92EAB5BB4093D236F90ED0242488039EA87AFA07 get_m_NullPlayable_1() const { return ___m_NullPlayable_1; }
inline AnimationPosePlayable_t92EAB5BB4093D236F90ED0242488039EA87AFA07 * get_address_of_m_NullPlayable_1() { return &___m_NullPlayable_1; }
inline void set_m_NullPlayable_1(AnimationPosePlayable_t92EAB5BB4093D236F90ED0242488039EA87AFA07 value)
{
___m_NullPlayable_1 = value;
}
};
// UnityEngine.Animations.AnimationRemoveScalePlayable
struct AnimationRemoveScalePlayable_t02381EE856ADF73C82C1EA6D2AD1878EC5879A7B
{
public:
// UnityEngine.Playables.PlayableHandle UnityEngine.Animations.AnimationRemoveScalePlayable::m_Handle
PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AnimationRemoveScalePlayable_t02381EE856ADF73C82C1EA6D2AD1878EC5879A7B, ___m_Handle_0)); }
inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; }
inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value)
{
___m_Handle_0 = value;
}
};
struct AnimationRemoveScalePlayable_t02381EE856ADF73C82C1EA6D2AD1878EC5879A7B_StaticFields
{
public:
// UnityEngine.Animations.AnimationRemoveScalePlayable UnityEngine.Animations.AnimationRemoveScalePlayable::m_NullPlayable
AnimationRemoveScalePlayable_t02381EE856ADF73C82C1EA6D2AD1878EC5879A7B ___m_NullPlayable_1;
public:
inline static int32_t get_offset_of_m_NullPlayable_1() { return static_cast<int32_t>(offsetof(AnimationRemoveScalePlayable_t02381EE856ADF73C82C1EA6D2AD1878EC5879A7B_StaticFields, ___m_NullPlayable_1)); }
inline AnimationRemoveScalePlayable_t02381EE856ADF73C82C1EA6D2AD1878EC5879A7B get_m_NullPlayable_1() const { return ___m_NullPlayable_1; }
inline AnimationRemoveScalePlayable_t02381EE856ADF73C82C1EA6D2AD1878EC5879A7B * get_address_of_m_NullPlayable_1() { return &___m_NullPlayable_1; }
inline void set_m_NullPlayable_1(AnimationRemoveScalePlayable_t02381EE856ADF73C82C1EA6D2AD1878EC5879A7B value)
{
___m_NullPlayable_1 = value;
}
};
// UnityEngine.Animations.AnimatorControllerPlayable
struct AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B
{
public:
// UnityEngine.Playables.PlayableHandle UnityEngine.Animations.AnimatorControllerPlayable::m_Handle
PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B, ___m_Handle_0)); }
inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; }
inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value)
{
___m_Handle_0 = value;
}
};
struct AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B_StaticFields
{
public:
// UnityEngine.Animations.AnimatorControllerPlayable UnityEngine.Animations.AnimatorControllerPlayable::m_NullPlayable
AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B ___m_NullPlayable_1;
public:
inline static int32_t get_offset_of_m_NullPlayable_1() { return static_cast<int32_t>(offsetof(AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B_StaticFields, ___m_NullPlayable_1)); }
inline AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B get_m_NullPlayable_1() const { return ___m_NullPlayable_1; }
inline AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B * get_address_of_m_NullPlayable_1() { return &___m_NullPlayable_1; }
inline void set_m_NullPlayable_1(AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B value)
{
___m_NullPlayable_1 = value;
}
};
// UnityEngine.Audio.AudioClipPlayable
struct AudioClipPlayable_t6094311F945E65BC29F85B23A81E8426D596553C
{
public:
// UnityEngine.Playables.PlayableHandle UnityEngine.Audio.AudioClipPlayable::m_Handle
PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AudioClipPlayable_t6094311F945E65BC29F85B23A81E8426D596553C, ___m_Handle_0)); }
inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; }
inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value)
{
___m_Handle_0 = value;
}
};
// UnityEngine.Audio.AudioMixerPlayable
struct AudioMixerPlayable_t2C445EB39F9111CCFF7E2E1F813B22007862FA9F
{
public:
// UnityEngine.Playables.PlayableHandle UnityEngine.Audio.AudioMixerPlayable::m_Handle
PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AudioMixerPlayable_t2C445EB39F9111CCFF7E2E1F813B22007862FA9F, ___m_Handle_0)); }
inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; }
inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value)
{
___m_Handle_0 = value;
}
};
// UnityEngine.Audio.AudioPlayableOutput
struct AudioPlayableOutput_tD2671908FEE2832112E8A3B611089A2558A4DA6B
{
public:
// UnityEngine.Playables.PlayableOutputHandle UnityEngine.Audio.AudioPlayableOutput::m_Handle
PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AudioPlayableOutput_tD2671908FEE2832112E8A3B611089A2558A4DA6B, ___m_Handle_0)); }
inline PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 get_m_Handle_0() const { return ___m_Handle_0; }
inline PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 * get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(PlayableOutputHandle_t0D0C9D8ACC1A4061BD4EAEB61F3EE0357052F922 value)
{
___m_Handle_0 = value;
}
};
// UnityEngine.AudioClip
struct AudioClip_tCC3C35F579203CE2601243585AB3D6953C3BA051 : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
// UnityEngine.AudioClip_PCMReaderCallback UnityEngine.AudioClip::m_PCMReaderCallback
PCMReaderCallback_t9B87AB13DCD37957B045554BF28A57697E6B8EFB * ___m_PCMReaderCallback_4;
// UnityEngine.AudioClip_PCMSetPositionCallback UnityEngine.AudioClip::m_PCMSetPositionCallback
PCMSetPositionCallback_t092ED33043C0279B5E4D343EBCBD516CEF260801 * ___m_PCMSetPositionCallback_5;
public:
inline static int32_t get_offset_of_m_PCMReaderCallback_4() { return static_cast<int32_t>(offsetof(AudioClip_tCC3C35F579203CE2601243585AB3D6953C3BA051, ___m_PCMReaderCallback_4)); }
inline PCMReaderCallback_t9B87AB13DCD37957B045554BF28A57697E6B8EFB * get_m_PCMReaderCallback_4() const { return ___m_PCMReaderCallback_4; }
inline PCMReaderCallback_t9B87AB13DCD37957B045554BF28A57697E6B8EFB ** get_address_of_m_PCMReaderCallback_4() { return &___m_PCMReaderCallback_4; }
inline void set_m_PCMReaderCallback_4(PCMReaderCallback_t9B87AB13DCD37957B045554BF28A57697E6B8EFB * value)
{
___m_PCMReaderCallback_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PCMReaderCallback_4), (void*)value);
}
inline static int32_t get_offset_of_m_PCMSetPositionCallback_5() { return static_cast<int32_t>(offsetof(AudioClip_tCC3C35F579203CE2601243585AB3D6953C3BA051, ___m_PCMSetPositionCallback_5)); }
inline PCMSetPositionCallback_t092ED33043C0279B5E4D343EBCBD516CEF260801 * get_m_PCMSetPositionCallback_5() const { return ___m_PCMSetPositionCallback_5; }
inline PCMSetPositionCallback_t092ED33043C0279B5E4D343EBCBD516CEF260801 ** get_address_of_m_PCMSetPositionCallback_5() { return &___m_PCMSetPositionCallback_5; }
inline void set_m_PCMSetPositionCallback_5(PCMSetPositionCallback_t092ED33043C0279B5E4D343EBCBD516CEF260801 * value)
{
___m_PCMSetPositionCallback_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PCMSetPositionCallback_5), (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.ExitGUIException
struct ExitGUIException_t6AD1987AE1D23E0E774F9BEA41F30AE4CE378F07 : public Exception_t
{
public:
public:
};
// UnityEngine.Experimental.Animations.AnimationScriptPlayable
struct AnimationScriptPlayable_t73DEE79FEABE593A01BC5B5FC403DD19CEC38F5F
{
public:
// UnityEngine.Playables.PlayableHandle UnityEngine.Experimental.Animations.AnimationScriptPlayable::m_Handle
PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AnimationScriptPlayable_t73DEE79FEABE593A01BC5B5FC403DD19CEC38F5F, ___m_Handle_0)); }
inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; }
inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value)
{
___m_Handle_0 = value;
}
};
struct AnimationScriptPlayable_t73DEE79FEABE593A01BC5B5FC403DD19CEC38F5F_StaticFields
{
public:
// UnityEngine.Experimental.Animations.AnimationScriptPlayable UnityEngine.Experimental.Animations.AnimationScriptPlayable::m_NullPlayable
AnimationScriptPlayable_t73DEE79FEABE593A01BC5B5FC403DD19CEC38F5F ___m_NullPlayable_1;
public:
inline static int32_t get_offset_of_m_NullPlayable_1() { return static_cast<int32_t>(offsetof(AnimationScriptPlayable_t73DEE79FEABE593A01BC5B5FC403DD19CEC38F5F_StaticFields, ___m_NullPlayable_1)); }
inline AnimationScriptPlayable_t73DEE79FEABE593A01BC5B5FC403DD19CEC38F5F get_m_NullPlayable_1() const { return ___m_NullPlayable_1; }
inline AnimationScriptPlayable_t73DEE79FEABE593A01BC5B5FC403DD19CEC38F5F * get_address_of_m_NullPlayable_1() { return &___m_NullPlayable_1; }
inline void set_m_NullPlayable_1(AnimationScriptPlayable_t73DEE79FEABE593A01BC5B5FC403DD19CEC38F5F value)
{
___m_NullPlayable_1 = value;
}
};
// UnityEngine.Experimental.XR.BoundedPlane
struct BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9
{
public:
// System.UInt32 UnityEngine.Experimental.XR.BoundedPlane::m_InstanceId
uint32_t ___m_InstanceId_0;
// UnityEngine.Experimental.XR.TrackableId UnityEngine.Experimental.XR.BoundedPlane::<Id>k__BackingField
TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B ___U3CIdU3Ek__BackingField_1;
// UnityEngine.Experimental.XR.TrackableId UnityEngine.Experimental.XR.BoundedPlane::<SubsumedById>k__BackingField
TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B ___U3CSubsumedByIdU3Ek__BackingField_2;
// UnityEngine.Pose UnityEngine.Experimental.XR.BoundedPlane::<Pose>k__BackingField
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___U3CPoseU3Ek__BackingField_3;
// UnityEngine.Vector3 UnityEngine.Experimental.XR.BoundedPlane::<Center>k__BackingField
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___U3CCenterU3Ek__BackingField_4;
// UnityEngine.Vector2 UnityEngine.Experimental.XR.BoundedPlane::<Size>k__BackingField
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___U3CSizeU3Ek__BackingField_5;
// UnityEngine.Experimental.XR.PlaneAlignment UnityEngine.Experimental.XR.BoundedPlane::<Alignment>k__BackingField
int32_t ___U3CAlignmentU3Ek__BackingField_6;
public:
inline static int32_t get_offset_of_m_InstanceId_0() { return static_cast<int32_t>(offsetof(BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9, ___m_InstanceId_0)); }
inline uint32_t get_m_InstanceId_0() const { return ___m_InstanceId_0; }
inline uint32_t* get_address_of_m_InstanceId_0() { return &___m_InstanceId_0; }
inline void set_m_InstanceId_0(uint32_t value)
{
___m_InstanceId_0 = value;
}
inline static int32_t get_offset_of_U3CIdU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9, ___U3CIdU3Ek__BackingField_1)); }
inline TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B get_U3CIdU3Ek__BackingField_1() const { return ___U3CIdU3Ek__BackingField_1; }
inline TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B * get_address_of_U3CIdU3Ek__BackingField_1() { return &___U3CIdU3Ek__BackingField_1; }
inline void set_U3CIdU3Ek__BackingField_1(TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B value)
{
___U3CIdU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CSubsumedByIdU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9, ___U3CSubsumedByIdU3Ek__BackingField_2)); }
inline TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B get_U3CSubsumedByIdU3Ek__BackingField_2() const { return ___U3CSubsumedByIdU3Ek__BackingField_2; }
inline TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B * get_address_of_U3CSubsumedByIdU3Ek__BackingField_2() { return &___U3CSubsumedByIdU3Ek__BackingField_2; }
inline void set_U3CSubsumedByIdU3Ek__BackingField_2(TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B value)
{
___U3CSubsumedByIdU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CPoseU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9, ___U3CPoseU3Ek__BackingField_3)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_U3CPoseU3Ek__BackingField_3() const { return ___U3CPoseU3Ek__BackingField_3; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_U3CPoseU3Ek__BackingField_3() { return &___U3CPoseU3Ek__BackingField_3; }
inline void set_U3CPoseU3Ek__BackingField_3(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___U3CPoseU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CCenterU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9, ___U3CCenterU3Ek__BackingField_4)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_U3CCenterU3Ek__BackingField_4() const { return ___U3CCenterU3Ek__BackingField_4; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_U3CCenterU3Ek__BackingField_4() { return &___U3CCenterU3Ek__BackingField_4; }
inline void set_U3CCenterU3Ek__BackingField_4(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___U3CCenterU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CSizeU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9, ___U3CSizeU3Ek__BackingField_5)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_U3CSizeU3Ek__BackingField_5() const { return ___U3CSizeU3Ek__BackingField_5; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_U3CSizeU3Ek__BackingField_5() { return &___U3CSizeU3Ek__BackingField_5; }
inline void set_U3CSizeU3Ek__BackingField_5(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___U3CSizeU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CAlignmentU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9, ___U3CAlignmentU3Ek__BackingField_6)); }
inline int32_t get_U3CAlignmentU3Ek__BackingField_6() const { return ___U3CAlignmentU3Ek__BackingField_6; }
inline int32_t* get_address_of_U3CAlignmentU3Ek__BackingField_6() { return &___U3CAlignmentU3Ek__BackingField_6; }
inline void set_U3CAlignmentU3Ek__BackingField_6(int32_t value)
{
___U3CAlignmentU3Ek__BackingField_6 = value;
}
};
// UnityEngine.Experimental.XR.MeshGenerationResult
struct MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056
{
public:
// UnityEngine.Experimental.XR.TrackableId UnityEngine.Experimental.XR.MeshGenerationResult::<MeshId>k__BackingField
TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B ___U3CMeshIdU3Ek__BackingField_0;
// UnityEngine.Mesh UnityEngine.Experimental.XR.MeshGenerationResult::<Mesh>k__BackingField
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___U3CMeshU3Ek__BackingField_1;
// UnityEngine.MeshCollider UnityEngine.Experimental.XR.MeshGenerationResult::<MeshCollider>k__BackingField
MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * ___U3CMeshColliderU3Ek__BackingField_2;
// UnityEngine.Experimental.XR.MeshGenerationStatus UnityEngine.Experimental.XR.MeshGenerationResult::<Status>k__BackingField
int32_t ___U3CStatusU3Ek__BackingField_3;
// UnityEngine.Experimental.XR.MeshVertexAttributes UnityEngine.Experimental.XR.MeshGenerationResult::<Attributes>k__BackingField
int32_t ___U3CAttributesU3Ek__BackingField_4;
public:
inline static int32_t get_offset_of_U3CMeshIdU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056, ___U3CMeshIdU3Ek__BackingField_0)); }
inline TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B get_U3CMeshIdU3Ek__BackingField_0() const { return ___U3CMeshIdU3Ek__BackingField_0; }
inline TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B * get_address_of_U3CMeshIdU3Ek__BackingField_0() { return &___U3CMeshIdU3Ek__BackingField_0; }
inline void set_U3CMeshIdU3Ek__BackingField_0(TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B value)
{
___U3CMeshIdU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CMeshU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056, ___U3CMeshU3Ek__BackingField_1)); }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * get_U3CMeshU3Ek__BackingField_1() const { return ___U3CMeshU3Ek__BackingField_1; }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C ** get_address_of_U3CMeshU3Ek__BackingField_1() { return &___U3CMeshU3Ek__BackingField_1; }
inline void set_U3CMeshU3Ek__BackingField_1(Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * value)
{
___U3CMeshU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CMeshU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CMeshColliderU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056, ___U3CMeshColliderU3Ek__BackingField_2)); }
inline MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * get_U3CMeshColliderU3Ek__BackingField_2() const { return ___U3CMeshColliderU3Ek__BackingField_2; }
inline MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE ** get_address_of_U3CMeshColliderU3Ek__BackingField_2() { return &___U3CMeshColliderU3Ek__BackingField_2; }
inline void set_U3CMeshColliderU3Ek__BackingField_2(MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * value)
{
___U3CMeshColliderU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CMeshColliderU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CStatusU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056, ___U3CStatusU3Ek__BackingField_3)); }
inline int32_t get_U3CStatusU3Ek__BackingField_3() const { return ___U3CStatusU3Ek__BackingField_3; }
inline int32_t* get_address_of_U3CStatusU3Ek__BackingField_3() { return &___U3CStatusU3Ek__BackingField_3; }
inline void set_U3CStatusU3Ek__BackingField_3(int32_t value)
{
___U3CStatusU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CAttributesU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056, ___U3CAttributesU3Ek__BackingField_4)); }
inline int32_t get_U3CAttributesU3Ek__BackingField_4() const { return ___U3CAttributesU3Ek__BackingField_4; }
inline int32_t* get_address_of_U3CAttributesU3Ek__BackingField_4() { return &___U3CAttributesU3Ek__BackingField_4; }
inline void set_U3CAttributesU3Ek__BackingField_4(int32_t value)
{
___U3CAttributesU3Ek__BackingField_4 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Experimental.XR.MeshGenerationResult
struct MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056_marshaled_pinvoke
{
TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B ___U3CMeshIdU3Ek__BackingField_0;
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___U3CMeshU3Ek__BackingField_1;
MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * ___U3CMeshColliderU3Ek__BackingField_2;
int32_t ___U3CStatusU3Ek__BackingField_3;
int32_t ___U3CAttributesU3Ek__BackingField_4;
};
// Native definition for COM marshalling of UnityEngine.Experimental.XR.MeshGenerationResult
struct MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056_marshaled_com
{
TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B ___U3CMeshIdU3Ek__BackingField_0;
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___U3CMeshU3Ek__BackingField_1;
MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * ___U3CMeshColliderU3Ek__BackingField_2;
int32_t ___U3CStatusU3Ek__BackingField_3;
int32_t ___U3CAttributesU3Ek__BackingField_4;
};
// UnityEngine.Experimental.XR.NativeGestureHoldEvent
struct NativeGestureHoldEvent_t730220DBDB536EA39C176DF1AEDA918E180472DD
{
public:
// UnityEngine.Experimental.XR.GestureEventState UnityEngine.Experimental.XR.NativeGestureHoldEvent::<eventState>k__BackingField
uint32_t ___U3CeventStateU3Ek__BackingField_0;
// System.Int64 UnityEngine.Experimental.XR.NativeGestureHoldEvent::<time>k__BackingField
int64_t ___U3CtimeU3Ek__BackingField_1;
// System.UInt32 UnityEngine.Experimental.XR.NativeGestureHoldEvent::<internalDeviceId>k__BackingField
uint32_t ___U3CinternalDeviceIdU3Ek__BackingField_2;
// UnityEngine.Pose UnityEngine.Experimental.XR.NativeGestureHoldEvent::<pointerPose>k__BackingField
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___U3CpointerPoseU3Ek__BackingField_3;
// UnityEngine.Experimental.XR.GestureHoldValidFields UnityEngine.Experimental.XR.NativeGestureHoldEvent::<validFields>k__BackingField
uint32_t ___U3CvalidFieldsU3Ek__BackingField_4;
public:
inline static int32_t get_offset_of_U3CeventStateU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(NativeGestureHoldEvent_t730220DBDB536EA39C176DF1AEDA918E180472DD, ___U3CeventStateU3Ek__BackingField_0)); }
inline uint32_t get_U3CeventStateU3Ek__BackingField_0() const { return ___U3CeventStateU3Ek__BackingField_0; }
inline uint32_t* get_address_of_U3CeventStateU3Ek__BackingField_0() { return &___U3CeventStateU3Ek__BackingField_0; }
inline void set_U3CeventStateU3Ek__BackingField_0(uint32_t value)
{
___U3CeventStateU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CtimeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(NativeGestureHoldEvent_t730220DBDB536EA39C176DF1AEDA918E180472DD, ___U3CtimeU3Ek__BackingField_1)); }
inline int64_t get_U3CtimeU3Ek__BackingField_1() const { return ___U3CtimeU3Ek__BackingField_1; }
inline int64_t* get_address_of_U3CtimeU3Ek__BackingField_1() { return &___U3CtimeU3Ek__BackingField_1; }
inline void set_U3CtimeU3Ek__BackingField_1(int64_t value)
{
___U3CtimeU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CinternalDeviceIdU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(NativeGestureHoldEvent_t730220DBDB536EA39C176DF1AEDA918E180472DD, ___U3CinternalDeviceIdU3Ek__BackingField_2)); }
inline uint32_t get_U3CinternalDeviceIdU3Ek__BackingField_2() const { return ___U3CinternalDeviceIdU3Ek__BackingField_2; }
inline uint32_t* get_address_of_U3CinternalDeviceIdU3Ek__BackingField_2() { return &___U3CinternalDeviceIdU3Ek__BackingField_2; }
inline void set_U3CinternalDeviceIdU3Ek__BackingField_2(uint32_t value)
{
___U3CinternalDeviceIdU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CpointerPoseU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(NativeGestureHoldEvent_t730220DBDB536EA39C176DF1AEDA918E180472DD, ___U3CpointerPoseU3Ek__BackingField_3)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_U3CpointerPoseU3Ek__BackingField_3() const { return ___U3CpointerPoseU3Ek__BackingField_3; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_U3CpointerPoseU3Ek__BackingField_3() { return &___U3CpointerPoseU3Ek__BackingField_3; }
inline void set_U3CpointerPoseU3Ek__BackingField_3(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___U3CpointerPoseU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CvalidFieldsU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(NativeGestureHoldEvent_t730220DBDB536EA39C176DF1AEDA918E180472DD, ___U3CvalidFieldsU3Ek__BackingField_4)); }
inline uint32_t get_U3CvalidFieldsU3Ek__BackingField_4() const { return ___U3CvalidFieldsU3Ek__BackingField_4; }
inline uint32_t* get_address_of_U3CvalidFieldsU3Ek__BackingField_4() { return &___U3CvalidFieldsU3Ek__BackingField_4; }
inline void set_U3CvalidFieldsU3Ek__BackingField_4(uint32_t value)
{
___U3CvalidFieldsU3Ek__BackingField_4 = value;
}
};
// UnityEngine.Experimental.XR.NativeGestureManipulationEvent
struct NativeGestureManipulationEvent_t89FDDF7354D6EAB482DC00A9B0ED9205E82E4321
{
public:
// UnityEngine.Experimental.XR.GestureEventState UnityEngine.Experimental.XR.NativeGestureManipulationEvent::<eventState>k__BackingField
uint32_t ___U3CeventStateU3Ek__BackingField_0;
// System.Int64 UnityEngine.Experimental.XR.NativeGestureManipulationEvent::<time>k__BackingField
int64_t ___U3CtimeU3Ek__BackingField_1;
// System.UInt32 UnityEngine.Experimental.XR.NativeGestureManipulationEvent::<internalDeviceId>k__BackingField
uint32_t ___U3CinternalDeviceIdU3Ek__BackingField_2;
// UnityEngine.Vector3 UnityEngine.Experimental.XR.NativeGestureManipulationEvent::<translation>k__BackingField
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___U3CtranslationU3Ek__BackingField_3;
// UnityEngine.Pose UnityEngine.Experimental.XR.NativeGestureManipulationEvent::<pointerPose>k__BackingField
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___U3CpointerPoseU3Ek__BackingField_4;
// UnityEngine.Experimental.XR.GestureManipulationValidFields UnityEngine.Experimental.XR.NativeGestureManipulationEvent::<validFields>k__BackingField
uint32_t ___U3CvalidFieldsU3Ek__BackingField_5;
public:
inline static int32_t get_offset_of_U3CeventStateU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(NativeGestureManipulationEvent_t89FDDF7354D6EAB482DC00A9B0ED9205E82E4321, ___U3CeventStateU3Ek__BackingField_0)); }
inline uint32_t get_U3CeventStateU3Ek__BackingField_0() const { return ___U3CeventStateU3Ek__BackingField_0; }
inline uint32_t* get_address_of_U3CeventStateU3Ek__BackingField_0() { return &___U3CeventStateU3Ek__BackingField_0; }
inline void set_U3CeventStateU3Ek__BackingField_0(uint32_t value)
{
___U3CeventStateU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CtimeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(NativeGestureManipulationEvent_t89FDDF7354D6EAB482DC00A9B0ED9205E82E4321, ___U3CtimeU3Ek__BackingField_1)); }
inline int64_t get_U3CtimeU3Ek__BackingField_1() const { return ___U3CtimeU3Ek__BackingField_1; }
inline int64_t* get_address_of_U3CtimeU3Ek__BackingField_1() { return &___U3CtimeU3Ek__BackingField_1; }
inline void set_U3CtimeU3Ek__BackingField_1(int64_t value)
{
___U3CtimeU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CinternalDeviceIdU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(NativeGestureManipulationEvent_t89FDDF7354D6EAB482DC00A9B0ED9205E82E4321, ___U3CinternalDeviceIdU3Ek__BackingField_2)); }
inline uint32_t get_U3CinternalDeviceIdU3Ek__BackingField_2() const { return ___U3CinternalDeviceIdU3Ek__BackingField_2; }
inline uint32_t* get_address_of_U3CinternalDeviceIdU3Ek__BackingField_2() { return &___U3CinternalDeviceIdU3Ek__BackingField_2; }
inline void set_U3CinternalDeviceIdU3Ek__BackingField_2(uint32_t value)
{
___U3CinternalDeviceIdU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CtranslationU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(NativeGestureManipulationEvent_t89FDDF7354D6EAB482DC00A9B0ED9205E82E4321, ___U3CtranslationU3Ek__BackingField_3)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_U3CtranslationU3Ek__BackingField_3() const { return ___U3CtranslationU3Ek__BackingField_3; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_U3CtranslationU3Ek__BackingField_3() { return &___U3CtranslationU3Ek__BackingField_3; }
inline void set_U3CtranslationU3Ek__BackingField_3(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___U3CtranslationU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CpointerPoseU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(NativeGestureManipulationEvent_t89FDDF7354D6EAB482DC00A9B0ED9205E82E4321, ___U3CpointerPoseU3Ek__BackingField_4)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_U3CpointerPoseU3Ek__BackingField_4() const { return ___U3CpointerPoseU3Ek__BackingField_4; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_U3CpointerPoseU3Ek__BackingField_4() { return &___U3CpointerPoseU3Ek__BackingField_4; }
inline void set_U3CpointerPoseU3Ek__BackingField_4(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___U3CpointerPoseU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CvalidFieldsU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(NativeGestureManipulationEvent_t89FDDF7354D6EAB482DC00A9B0ED9205E82E4321, ___U3CvalidFieldsU3Ek__BackingField_5)); }
inline uint32_t get_U3CvalidFieldsU3Ek__BackingField_5() const { return ___U3CvalidFieldsU3Ek__BackingField_5; }
inline uint32_t* get_address_of_U3CvalidFieldsU3Ek__BackingField_5() { return &___U3CvalidFieldsU3Ek__BackingField_5; }
inline void set_U3CvalidFieldsU3Ek__BackingField_5(uint32_t value)
{
___U3CvalidFieldsU3Ek__BackingField_5 = value;
}
};
// UnityEngine.Experimental.XR.NativeGestureNavigationEvent
struct NativeGestureNavigationEvent_t7A61BC08AC1387B9A0F756E471D7FE47B7834890
{
public:
// UnityEngine.Experimental.XR.GestureEventState UnityEngine.Experimental.XR.NativeGestureNavigationEvent::<eventState>k__BackingField
uint32_t ___U3CeventStateU3Ek__BackingField_0;
// System.Int64 UnityEngine.Experimental.XR.NativeGestureNavigationEvent::<time>k__BackingField
int64_t ___U3CtimeU3Ek__BackingField_1;
// System.UInt32 UnityEngine.Experimental.XR.NativeGestureNavigationEvent::<internalDeviceId>k__BackingField
uint32_t ___U3CinternalDeviceIdU3Ek__BackingField_2;
// UnityEngine.Experimental.XR.GestureTrackingCoordinates UnityEngine.Experimental.XR.NativeGestureNavigationEvent::<gestureTrackingCoordinates>k__BackingField
uint32_t ___U3CgestureTrackingCoordinatesU3Ek__BackingField_3;
// UnityEngine.Vector3 UnityEngine.Experimental.XR.NativeGestureNavigationEvent::<normalizedOffset>k__BackingField
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___U3CnormalizedOffsetU3Ek__BackingField_4;
// UnityEngine.Pose UnityEngine.Experimental.XR.NativeGestureNavigationEvent::<pointerPose>k__BackingField
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___U3CpointerPoseU3Ek__BackingField_5;
// UnityEngine.Experimental.XR.GestureNavigationValidFields UnityEngine.Experimental.XR.NativeGestureNavigationEvent::<validFields>k__BackingField
uint32_t ___U3CvalidFieldsU3Ek__BackingField_6;
public:
inline static int32_t get_offset_of_U3CeventStateU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(NativeGestureNavigationEvent_t7A61BC08AC1387B9A0F756E471D7FE47B7834890, ___U3CeventStateU3Ek__BackingField_0)); }
inline uint32_t get_U3CeventStateU3Ek__BackingField_0() const { return ___U3CeventStateU3Ek__BackingField_0; }
inline uint32_t* get_address_of_U3CeventStateU3Ek__BackingField_0() { return &___U3CeventStateU3Ek__BackingField_0; }
inline void set_U3CeventStateU3Ek__BackingField_0(uint32_t value)
{
___U3CeventStateU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CtimeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(NativeGestureNavigationEvent_t7A61BC08AC1387B9A0F756E471D7FE47B7834890, ___U3CtimeU3Ek__BackingField_1)); }
inline int64_t get_U3CtimeU3Ek__BackingField_1() const { return ___U3CtimeU3Ek__BackingField_1; }
inline int64_t* get_address_of_U3CtimeU3Ek__BackingField_1() { return &___U3CtimeU3Ek__BackingField_1; }
inline void set_U3CtimeU3Ek__BackingField_1(int64_t value)
{
___U3CtimeU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CinternalDeviceIdU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(NativeGestureNavigationEvent_t7A61BC08AC1387B9A0F756E471D7FE47B7834890, ___U3CinternalDeviceIdU3Ek__BackingField_2)); }
inline uint32_t get_U3CinternalDeviceIdU3Ek__BackingField_2() const { return ___U3CinternalDeviceIdU3Ek__BackingField_2; }
inline uint32_t* get_address_of_U3CinternalDeviceIdU3Ek__BackingField_2() { return &___U3CinternalDeviceIdU3Ek__BackingField_2; }
inline void set_U3CinternalDeviceIdU3Ek__BackingField_2(uint32_t value)
{
___U3CinternalDeviceIdU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CgestureTrackingCoordinatesU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(NativeGestureNavigationEvent_t7A61BC08AC1387B9A0F756E471D7FE47B7834890, ___U3CgestureTrackingCoordinatesU3Ek__BackingField_3)); }
inline uint32_t get_U3CgestureTrackingCoordinatesU3Ek__BackingField_3() const { return ___U3CgestureTrackingCoordinatesU3Ek__BackingField_3; }
inline uint32_t* get_address_of_U3CgestureTrackingCoordinatesU3Ek__BackingField_3() { return &___U3CgestureTrackingCoordinatesU3Ek__BackingField_3; }
inline void set_U3CgestureTrackingCoordinatesU3Ek__BackingField_3(uint32_t value)
{
___U3CgestureTrackingCoordinatesU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CnormalizedOffsetU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(NativeGestureNavigationEvent_t7A61BC08AC1387B9A0F756E471D7FE47B7834890, ___U3CnormalizedOffsetU3Ek__BackingField_4)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_U3CnormalizedOffsetU3Ek__BackingField_4() const { return ___U3CnormalizedOffsetU3Ek__BackingField_4; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_U3CnormalizedOffsetU3Ek__BackingField_4() { return &___U3CnormalizedOffsetU3Ek__BackingField_4; }
inline void set_U3CnormalizedOffsetU3Ek__BackingField_4(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___U3CnormalizedOffsetU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CpointerPoseU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(NativeGestureNavigationEvent_t7A61BC08AC1387B9A0F756E471D7FE47B7834890, ___U3CpointerPoseU3Ek__BackingField_5)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_U3CpointerPoseU3Ek__BackingField_5() const { return ___U3CpointerPoseU3Ek__BackingField_5; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_U3CpointerPoseU3Ek__BackingField_5() { return &___U3CpointerPoseU3Ek__BackingField_5; }
inline void set_U3CpointerPoseU3Ek__BackingField_5(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___U3CpointerPoseU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CvalidFieldsU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(NativeGestureNavigationEvent_t7A61BC08AC1387B9A0F756E471D7FE47B7834890, ___U3CvalidFieldsU3Ek__BackingField_6)); }
inline uint32_t get_U3CvalidFieldsU3Ek__BackingField_6() const { return ___U3CvalidFieldsU3Ek__BackingField_6; }
inline uint32_t* get_address_of_U3CvalidFieldsU3Ek__BackingField_6() { return &___U3CvalidFieldsU3Ek__BackingField_6; }
inline void set_U3CvalidFieldsU3Ek__BackingField_6(uint32_t value)
{
___U3CvalidFieldsU3Ek__BackingField_6 = value;
}
};
// UnityEngine.Experimental.XR.NativeGestureRecognitionEvent
struct NativeGestureRecognitionEvent_t14CAF4301F20BCE91B9E879F6A1605D14DD42519
{
public:
// UnityEngine.Experimental.XR.GestureEventState UnityEngine.Experimental.XR.NativeGestureRecognitionEvent::<eventState>k__BackingField
uint32_t ___U3CeventStateU3Ek__BackingField_0;
// System.Int64 UnityEngine.Experimental.XR.NativeGestureRecognitionEvent::<time>k__BackingField
int64_t ___U3CtimeU3Ek__BackingField_1;
// System.UInt32 UnityEngine.Experimental.XR.NativeGestureRecognitionEvent::<internalDeviceId>k__BackingField
uint32_t ___U3CinternalDeviceIdU3Ek__BackingField_2;
// UnityEngine.Pose UnityEngine.Experimental.XR.NativeGestureRecognitionEvent::<pointerPose>k__BackingField
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___U3CpointerPoseU3Ek__BackingField_3;
// UnityEngine.Experimental.XR.GestureRecognitionValidFields UnityEngine.Experimental.XR.NativeGestureRecognitionEvent::<validFields>k__BackingField
uint32_t ___U3CvalidFieldsU3Ek__BackingField_4;
public:
inline static int32_t get_offset_of_U3CeventStateU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(NativeGestureRecognitionEvent_t14CAF4301F20BCE91B9E879F6A1605D14DD42519, ___U3CeventStateU3Ek__BackingField_0)); }
inline uint32_t get_U3CeventStateU3Ek__BackingField_0() const { return ___U3CeventStateU3Ek__BackingField_0; }
inline uint32_t* get_address_of_U3CeventStateU3Ek__BackingField_0() { return &___U3CeventStateU3Ek__BackingField_0; }
inline void set_U3CeventStateU3Ek__BackingField_0(uint32_t value)
{
___U3CeventStateU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CtimeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(NativeGestureRecognitionEvent_t14CAF4301F20BCE91B9E879F6A1605D14DD42519, ___U3CtimeU3Ek__BackingField_1)); }
inline int64_t get_U3CtimeU3Ek__BackingField_1() const { return ___U3CtimeU3Ek__BackingField_1; }
inline int64_t* get_address_of_U3CtimeU3Ek__BackingField_1() { return &___U3CtimeU3Ek__BackingField_1; }
inline void set_U3CtimeU3Ek__BackingField_1(int64_t value)
{
___U3CtimeU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CinternalDeviceIdU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(NativeGestureRecognitionEvent_t14CAF4301F20BCE91B9E879F6A1605D14DD42519, ___U3CinternalDeviceIdU3Ek__BackingField_2)); }
inline uint32_t get_U3CinternalDeviceIdU3Ek__BackingField_2() const { return ___U3CinternalDeviceIdU3Ek__BackingField_2; }
inline uint32_t* get_address_of_U3CinternalDeviceIdU3Ek__BackingField_2() { return &___U3CinternalDeviceIdU3Ek__BackingField_2; }
inline void set_U3CinternalDeviceIdU3Ek__BackingField_2(uint32_t value)
{
___U3CinternalDeviceIdU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CpointerPoseU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(NativeGestureRecognitionEvent_t14CAF4301F20BCE91B9E879F6A1605D14DD42519, ___U3CpointerPoseU3Ek__BackingField_3)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_U3CpointerPoseU3Ek__BackingField_3() const { return ___U3CpointerPoseU3Ek__BackingField_3; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_U3CpointerPoseU3Ek__BackingField_3() { return &___U3CpointerPoseU3Ek__BackingField_3; }
inline void set_U3CpointerPoseU3Ek__BackingField_3(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___U3CpointerPoseU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CvalidFieldsU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(NativeGestureRecognitionEvent_t14CAF4301F20BCE91B9E879F6A1605D14DD42519, ___U3CvalidFieldsU3Ek__BackingField_4)); }
inline uint32_t get_U3CvalidFieldsU3Ek__BackingField_4() const { return ___U3CvalidFieldsU3Ek__BackingField_4; }
inline uint32_t* get_address_of_U3CvalidFieldsU3Ek__BackingField_4() { return &___U3CvalidFieldsU3Ek__BackingField_4; }
inline void set_U3CvalidFieldsU3Ek__BackingField_4(uint32_t value)
{
___U3CvalidFieldsU3Ek__BackingField_4 = value;
}
};
// UnityEngine.Experimental.XR.NativeGestureTappedEvent
struct NativeGestureTappedEvent_tBC0278D6741BF5A2EFEA94AE6F13B94BB8F27E97
{
public:
// UnityEngine.Experimental.XR.GestureEventState UnityEngine.Experimental.XR.NativeGestureTappedEvent::<eventState>k__BackingField
uint32_t ___U3CeventStateU3Ek__BackingField_0;
// System.Int64 UnityEngine.Experimental.XR.NativeGestureTappedEvent::<time>k__BackingField
int64_t ___U3CtimeU3Ek__BackingField_1;
// System.UInt32 UnityEngine.Experimental.XR.NativeGestureTappedEvent::<internalDeviceId>k__BackingField
uint32_t ___U3CinternalDeviceIdU3Ek__BackingField_2;
// System.UInt32 UnityEngine.Experimental.XR.NativeGestureTappedEvent::<tappedCount>k__BackingField
uint32_t ___U3CtappedCountU3Ek__BackingField_3;
// UnityEngine.Pose UnityEngine.Experimental.XR.NativeGestureTappedEvent::<pointerPose>k__BackingField
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___U3CpointerPoseU3Ek__BackingField_4;
// UnityEngine.Experimental.XR.GestureTappedValidFields UnityEngine.Experimental.XR.NativeGestureTappedEvent::<validFields>k__BackingField
uint32_t ___U3CvalidFieldsU3Ek__BackingField_5;
public:
inline static int32_t get_offset_of_U3CeventStateU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(NativeGestureTappedEvent_tBC0278D6741BF5A2EFEA94AE6F13B94BB8F27E97, ___U3CeventStateU3Ek__BackingField_0)); }
inline uint32_t get_U3CeventStateU3Ek__BackingField_0() const { return ___U3CeventStateU3Ek__BackingField_0; }
inline uint32_t* get_address_of_U3CeventStateU3Ek__BackingField_0() { return &___U3CeventStateU3Ek__BackingField_0; }
inline void set_U3CeventStateU3Ek__BackingField_0(uint32_t value)
{
___U3CeventStateU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CtimeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(NativeGestureTappedEvent_tBC0278D6741BF5A2EFEA94AE6F13B94BB8F27E97, ___U3CtimeU3Ek__BackingField_1)); }
inline int64_t get_U3CtimeU3Ek__BackingField_1() const { return ___U3CtimeU3Ek__BackingField_1; }
inline int64_t* get_address_of_U3CtimeU3Ek__BackingField_1() { return &___U3CtimeU3Ek__BackingField_1; }
inline void set_U3CtimeU3Ek__BackingField_1(int64_t value)
{
___U3CtimeU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CinternalDeviceIdU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(NativeGestureTappedEvent_tBC0278D6741BF5A2EFEA94AE6F13B94BB8F27E97, ___U3CinternalDeviceIdU3Ek__BackingField_2)); }
inline uint32_t get_U3CinternalDeviceIdU3Ek__BackingField_2() const { return ___U3CinternalDeviceIdU3Ek__BackingField_2; }
inline uint32_t* get_address_of_U3CinternalDeviceIdU3Ek__BackingField_2() { return &___U3CinternalDeviceIdU3Ek__BackingField_2; }
inline void set_U3CinternalDeviceIdU3Ek__BackingField_2(uint32_t value)
{
___U3CinternalDeviceIdU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CtappedCountU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(NativeGestureTappedEvent_tBC0278D6741BF5A2EFEA94AE6F13B94BB8F27E97, ___U3CtappedCountU3Ek__BackingField_3)); }
inline uint32_t get_U3CtappedCountU3Ek__BackingField_3() const { return ___U3CtappedCountU3Ek__BackingField_3; }
inline uint32_t* get_address_of_U3CtappedCountU3Ek__BackingField_3() { return &___U3CtappedCountU3Ek__BackingField_3; }
inline void set_U3CtappedCountU3Ek__BackingField_3(uint32_t value)
{
___U3CtappedCountU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CpointerPoseU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(NativeGestureTappedEvent_tBC0278D6741BF5A2EFEA94AE6F13B94BB8F27E97, ___U3CpointerPoseU3Ek__BackingField_4)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_U3CpointerPoseU3Ek__BackingField_4() const { return ___U3CpointerPoseU3Ek__BackingField_4; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_U3CpointerPoseU3Ek__BackingField_4() { return &___U3CpointerPoseU3Ek__BackingField_4; }
inline void set_U3CpointerPoseU3Ek__BackingField_4(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___U3CpointerPoseU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CvalidFieldsU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(NativeGestureTappedEvent_tBC0278D6741BF5A2EFEA94AE6F13B94BB8F27E97, ___U3CvalidFieldsU3Ek__BackingField_5)); }
inline uint32_t get_U3CvalidFieldsU3Ek__BackingField_5() const { return ___U3CvalidFieldsU3Ek__BackingField_5; }
inline uint32_t* get_address_of_U3CvalidFieldsU3Ek__BackingField_5() { return &___U3CvalidFieldsU3Ek__BackingField_5; }
inline void set_U3CvalidFieldsU3Ek__BackingField_5(uint32_t value)
{
___U3CvalidFieldsU3Ek__BackingField_5 = value;
}
};
// UnityEngine.Experimental.XR.ReferencePoint
struct ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E
{
public:
// UnityEngine.Experimental.XR.TrackableId UnityEngine.Experimental.XR.ReferencePoint::<Id>k__BackingField
TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B ___U3CIdU3Ek__BackingField_0;
// UnityEngine.Experimental.XR.TrackingState UnityEngine.Experimental.XR.ReferencePoint::<TrackingState>k__BackingField
int32_t ___U3CTrackingStateU3Ek__BackingField_1;
// UnityEngine.Pose UnityEngine.Experimental.XR.ReferencePoint::<Pose>k__BackingField
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___U3CPoseU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3CIdU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E, ___U3CIdU3Ek__BackingField_0)); }
inline TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B get_U3CIdU3Ek__BackingField_0() const { return ___U3CIdU3Ek__BackingField_0; }
inline TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B * get_address_of_U3CIdU3Ek__BackingField_0() { return &___U3CIdU3Ek__BackingField_0; }
inline void set_U3CIdU3Ek__BackingField_0(TrackableId_tA539F57E82A04D410FE11E10ACC830CF7CD71F7B value)
{
___U3CIdU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CTrackingStateU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E, ___U3CTrackingStateU3Ek__BackingField_1)); }
inline int32_t get_U3CTrackingStateU3Ek__BackingField_1() const { return ___U3CTrackingStateU3Ek__BackingField_1; }
inline int32_t* get_address_of_U3CTrackingStateU3Ek__BackingField_1() { return &___U3CTrackingStateU3Ek__BackingField_1; }
inline void set_U3CTrackingStateU3Ek__BackingField_1(int32_t value)
{
___U3CTrackingStateU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CPoseU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E, ___U3CPoseU3Ek__BackingField_2)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_U3CPoseU3Ek__BackingField_2() const { return ___U3CPoseU3Ek__BackingField_2; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_U3CPoseU3Ek__BackingField_2() { return &___U3CPoseU3Ek__BackingField_2; }
inline void set_U3CPoseU3Ek__BackingField_2(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___U3CPoseU3Ek__BackingField_2 = value;
}
};
// UnityEngine.Experimental.XR.SessionTrackingStateChangedEventArgs
struct SessionTrackingStateChangedEventArgs_tE4B00077E5AAE143593A0BB3FA2C57237525E7BA
{
public:
// UnityEngine.Experimental.XR.XRSessionSubsystem UnityEngine.Experimental.XR.SessionTrackingStateChangedEventArgs::m_Session
XRSessionSubsystem_t75B8ED54B2BF4876D83B93780A7E13D6A9F32B8F * ___m_Session_0;
// UnityEngine.Experimental.XR.TrackingState UnityEngine.Experimental.XR.SessionTrackingStateChangedEventArgs::<NewState>k__BackingField
int32_t ___U3CNewStateU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_m_Session_0() { return static_cast<int32_t>(offsetof(SessionTrackingStateChangedEventArgs_tE4B00077E5AAE143593A0BB3FA2C57237525E7BA, ___m_Session_0)); }
inline XRSessionSubsystem_t75B8ED54B2BF4876D83B93780A7E13D6A9F32B8F * get_m_Session_0() const { return ___m_Session_0; }
inline XRSessionSubsystem_t75B8ED54B2BF4876D83B93780A7E13D6A9F32B8F ** get_address_of_m_Session_0() { return &___m_Session_0; }
inline void set_m_Session_0(XRSessionSubsystem_t75B8ED54B2BF4876D83B93780A7E13D6A9F32B8F * value)
{
___m_Session_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Session_0), (void*)value);
}
inline static int32_t get_offset_of_U3CNewStateU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(SessionTrackingStateChangedEventArgs_tE4B00077E5AAE143593A0BB3FA2C57237525E7BA, ___U3CNewStateU3Ek__BackingField_1)); }
inline int32_t get_U3CNewStateU3Ek__BackingField_1() const { return ___U3CNewStateU3Ek__BackingField_1; }
inline int32_t* get_address_of_U3CNewStateU3Ek__BackingField_1() { return &___U3CNewStateU3Ek__BackingField_1; }
inline void set_U3CNewStateU3Ek__BackingField_1(int32_t value)
{
___U3CNewStateU3Ek__BackingField_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Experimental.XR.SessionTrackingStateChangedEventArgs
struct SessionTrackingStateChangedEventArgs_tE4B00077E5AAE143593A0BB3FA2C57237525E7BA_marshaled_pinvoke
{
XRSessionSubsystem_t75B8ED54B2BF4876D83B93780A7E13D6A9F32B8F * ___m_Session_0;
int32_t ___U3CNewStateU3Ek__BackingField_1;
};
// Native definition for COM marshalling of UnityEngine.Experimental.XR.SessionTrackingStateChangedEventArgs
struct SessionTrackingStateChangedEventArgs_tE4B00077E5AAE143593A0BB3FA2C57237525E7BA_marshaled_com
{
XRSessionSubsystem_t75B8ED54B2BF4876D83B93780A7E13D6A9F32B8F * ___m_Session_0;
int32_t ___U3CNewStateU3Ek__BackingField_1;
};
// UnityEngine.GUILayoutGroup
struct GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 : public GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845
{
public:
// System.Collections.Generic.List`1<UnityEngine.GUILayoutEntry> UnityEngine.GUILayoutGroup::entries
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * ___entries_11;
// System.Boolean UnityEngine.GUILayoutGroup::isVertical
bool ___isVertical_12;
// System.Boolean UnityEngine.GUILayoutGroup::resetCoords
bool ___resetCoords_13;
// System.Single UnityEngine.GUILayoutGroup::spacing
float ___spacing_14;
// System.Boolean UnityEngine.GUILayoutGroup::sameSize
bool ___sameSize_15;
// System.Boolean UnityEngine.GUILayoutGroup::isWindow
bool ___isWindow_16;
// System.Int32 UnityEngine.GUILayoutGroup::windowID
int32_t ___windowID_17;
// System.Int32 UnityEngine.GUILayoutGroup::m_Cursor
int32_t ___m_Cursor_18;
// System.Int32 UnityEngine.GUILayoutGroup::m_StretchableCountX
int32_t ___m_StretchableCountX_19;
// System.Int32 UnityEngine.GUILayoutGroup::m_StretchableCountY
int32_t ___m_StretchableCountY_20;
// System.Boolean UnityEngine.GUILayoutGroup::m_UserSpecifiedWidth
bool ___m_UserSpecifiedWidth_21;
// System.Boolean UnityEngine.GUILayoutGroup::m_UserSpecifiedHeight
bool ___m_UserSpecifiedHeight_22;
// System.Single UnityEngine.GUILayoutGroup::m_ChildMinWidth
float ___m_ChildMinWidth_23;
// System.Single UnityEngine.GUILayoutGroup::m_ChildMaxWidth
float ___m_ChildMaxWidth_24;
// System.Single UnityEngine.GUILayoutGroup::m_ChildMinHeight
float ___m_ChildMinHeight_25;
// System.Single UnityEngine.GUILayoutGroup::m_ChildMaxHeight
float ___m_ChildMaxHeight_26;
// System.Int32 UnityEngine.GUILayoutGroup::m_MarginLeft
int32_t ___m_MarginLeft_27;
// System.Int32 UnityEngine.GUILayoutGroup::m_MarginRight
int32_t ___m_MarginRight_28;
// System.Int32 UnityEngine.GUILayoutGroup::m_MarginTop
int32_t ___m_MarginTop_29;
// System.Int32 UnityEngine.GUILayoutGroup::m_MarginBottom
int32_t ___m_MarginBottom_30;
public:
inline static int32_t get_offset_of_entries_11() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___entries_11)); }
inline List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * get_entries_11() const { return ___entries_11; }
inline List_1_t046427F3923444CF746C550FD96A3D0E4189D273 ** get_address_of_entries_11() { return &___entries_11; }
inline void set_entries_11(List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * value)
{
___entries_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_11), (void*)value);
}
inline static int32_t get_offset_of_isVertical_12() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___isVertical_12)); }
inline bool get_isVertical_12() const { return ___isVertical_12; }
inline bool* get_address_of_isVertical_12() { return &___isVertical_12; }
inline void set_isVertical_12(bool value)
{
___isVertical_12 = value;
}
inline static int32_t get_offset_of_resetCoords_13() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___resetCoords_13)); }
inline bool get_resetCoords_13() const { return ___resetCoords_13; }
inline bool* get_address_of_resetCoords_13() { return &___resetCoords_13; }
inline void set_resetCoords_13(bool value)
{
___resetCoords_13 = value;
}
inline static int32_t get_offset_of_spacing_14() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___spacing_14)); }
inline float get_spacing_14() const { return ___spacing_14; }
inline float* get_address_of_spacing_14() { return &___spacing_14; }
inline void set_spacing_14(float value)
{
___spacing_14 = value;
}
inline static int32_t get_offset_of_sameSize_15() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___sameSize_15)); }
inline bool get_sameSize_15() const { return ___sameSize_15; }
inline bool* get_address_of_sameSize_15() { return &___sameSize_15; }
inline void set_sameSize_15(bool value)
{
___sameSize_15 = value;
}
inline static int32_t get_offset_of_isWindow_16() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___isWindow_16)); }
inline bool get_isWindow_16() const { return ___isWindow_16; }
inline bool* get_address_of_isWindow_16() { return &___isWindow_16; }
inline void set_isWindow_16(bool value)
{
___isWindow_16 = value;
}
inline static int32_t get_offset_of_windowID_17() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___windowID_17)); }
inline int32_t get_windowID_17() const { return ___windowID_17; }
inline int32_t* get_address_of_windowID_17() { return &___windowID_17; }
inline void set_windowID_17(int32_t value)
{
___windowID_17 = value;
}
inline static int32_t get_offset_of_m_Cursor_18() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___m_Cursor_18)); }
inline int32_t get_m_Cursor_18() const { return ___m_Cursor_18; }
inline int32_t* get_address_of_m_Cursor_18() { return &___m_Cursor_18; }
inline void set_m_Cursor_18(int32_t value)
{
___m_Cursor_18 = value;
}
inline static int32_t get_offset_of_m_StretchableCountX_19() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___m_StretchableCountX_19)); }
inline int32_t get_m_StretchableCountX_19() const { return ___m_StretchableCountX_19; }
inline int32_t* get_address_of_m_StretchableCountX_19() { return &___m_StretchableCountX_19; }
inline void set_m_StretchableCountX_19(int32_t value)
{
___m_StretchableCountX_19 = value;
}
inline static int32_t get_offset_of_m_StretchableCountY_20() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___m_StretchableCountY_20)); }
inline int32_t get_m_StretchableCountY_20() const { return ___m_StretchableCountY_20; }
inline int32_t* get_address_of_m_StretchableCountY_20() { return &___m_StretchableCountY_20; }
inline void set_m_StretchableCountY_20(int32_t value)
{
___m_StretchableCountY_20 = value;
}
inline static int32_t get_offset_of_m_UserSpecifiedWidth_21() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___m_UserSpecifiedWidth_21)); }
inline bool get_m_UserSpecifiedWidth_21() const { return ___m_UserSpecifiedWidth_21; }
inline bool* get_address_of_m_UserSpecifiedWidth_21() { return &___m_UserSpecifiedWidth_21; }
inline void set_m_UserSpecifiedWidth_21(bool value)
{
___m_UserSpecifiedWidth_21 = value;
}
inline static int32_t get_offset_of_m_UserSpecifiedHeight_22() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___m_UserSpecifiedHeight_22)); }
inline bool get_m_UserSpecifiedHeight_22() const { return ___m_UserSpecifiedHeight_22; }
inline bool* get_address_of_m_UserSpecifiedHeight_22() { return &___m_UserSpecifiedHeight_22; }
inline void set_m_UserSpecifiedHeight_22(bool value)
{
___m_UserSpecifiedHeight_22 = value;
}
inline static int32_t get_offset_of_m_ChildMinWidth_23() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___m_ChildMinWidth_23)); }
inline float get_m_ChildMinWidth_23() const { return ___m_ChildMinWidth_23; }
inline float* get_address_of_m_ChildMinWidth_23() { return &___m_ChildMinWidth_23; }
inline void set_m_ChildMinWidth_23(float value)
{
___m_ChildMinWidth_23 = value;
}
inline static int32_t get_offset_of_m_ChildMaxWidth_24() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___m_ChildMaxWidth_24)); }
inline float get_m_ChildMaxWidth_24() const { return ___m_ChildMaxWidth_24; }
inline float* get_address_of_m_ChildMaxWidth_24() { return &___m_ChildMaxWidth_24; }
inline void set_m_ChildMaxWidth_24(float value)
{
___m_ChildMaxWidth_24 = value;
}
inline static int32_t get_offset_of_m_ChildMinHeight_25() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___m_ChildMinHeight_25)); }
inline float get_m_ChildMinHeight_25() const { return ___m_ChildMinHeight_25; }
inline float* get_address_of_m_ChildMinHeight_25() { return &___m_ChildMinHeight_25; }
inline void set_m_ChildMinHeight_25(float value)
{
___m_ChildMinHeight_25 = value;
}
inline static int32_t get_offset_of_m_ChildMaxHeight_26() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___m_ChildMaxHeight_26)); }
inline float get_m_ChildMaxHeight_26() const { return ___m_ChildMaxHeight_26; }
inline float* get_address_of_m_ChildMaxHeight_26() { return &___m_ChildMaxHeight_26; }
inline void set_m_ChildMaxHeight_26(float value)
{
___m_ChildMaxHeight_26 = value;
}
inline static int32_t get_offset_of_m_MarginLeft_27() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___m_MarginLeft_27)); }
inline int32_t get_m_MarginLeft_27() const { return ___m_MarginLeft_27; }
inline int32_t* get_address_of_m_MarginLeft_27() { return &___m_MarginLeft_27; }
inline void set_m_MarginLeft_27(int32_t value)
{
___m_MarginLeft_27 = value;
}
inline static int32_t get_offset_of_m_MarginRight_28() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___m_MarginRight_28)); }
inline int32_t get_m_MarginRight_28() const { return ___m_MarginRight_28; }
inline int32_t* get_address_of_m_MarginRight_28() { return &___m_MarginRight_28; }
inline void set_m_MarginRight_28(int32_t value)
{
___m_MarginRight_28 = value;
}
inline static int32_t get_offset_of_m_MarginTop_29() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___m_MarginTop_29)); }
inline int32_t get_m_MarginTop_29() const { return ___m_MarginTop_29; }
inline int32_t* get_address_of_m_MarginTop_29() { return &___m_MarginTop_29; }
inline void set_m_MarginTop_29(int32_t value)
{
___m_MarginTop_29 = value;
}
inline static int32_t get_offset_of_m_MarginBottom_30() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___m_MarginBottom_30)); }
inline int32_t get_m_MarginBottom_30() const { return ___m_MarginBottom_30; }
inline int32_t* get_address_of_m_MarginBottom_30() { return &___m_MarginBottom_30; }
inline void set_m_MarginBottom_30(int32_t value)
{
___m_MarginBottom_30 = value;
}
};
// UnityEngine.GUILayoutOption
struct GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 : public RuntimeObject
{
public:
// UnityEngine.GUILayoutOption_Type UnityEngine.GUILayoutOption::type
int32_t ___type_0;
// System.Object UnityEngine.GUILayoutOption::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6, ___type_0)); }
inline int32_t get_type_0() const { return ___type_0; }
inline int32_t* get_address_of_type_0() { return &___type_0; }
inline void set_type_0(int32_t value)
{
___type_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6, ___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);
}
};
// UnityEngine.GUIStyle
struct GUIStyle_t671F175A201A19166385EE3392292A5F50070572 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.GUIStyle::m_Ptr
intptr_t ___m_Ptr_0;
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_Normal
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * ___m_Normal_1;
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_Hover
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * ___m_Hover_2;
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_Active
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * ___m_Active_3;
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_Focused
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * ___m_Focused_4;
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_OnNormal
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * ___m_OnNormal_5;
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_OnHover
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * ___m_OnHover_6;
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_OnActive
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * ___m_OnActive_7;
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_OnFocused
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * ___m_OnFocused_8;
// UnityEngine.RectOffset UnityEngine.GUIStyle::m_Border
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * ___m_Border_9;
// UnityEngine.RectOffset UnityEngine.GUIStyle::m_Padding
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * ___m_Padding_10;
// UnityEngine.RectOffset UnityEngine.GUIStyle::m_Margin
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * ___m_Margin_11;
// UnityEngine.RectOffset UnityEngine.GUIStyle::m_Overflow
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * ___m_Overflow_12;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___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;
}
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Normal_1)); }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * get_m_Normal_1() const { return ___m_Normal_1; }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 ** get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * value)
{
___m_Normal_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Normal_1), (void*)value);
}
inline static int32_t get_offset_of_m_Hover_2() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Hover_2)); }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * get_m_Hover_2() const { return ___m_Hover_2; }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 ** get_address_of_m_Hover_2() { return &___m_Hover_2; }
inline void set_m_Hover_2(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * value)
{
___m_Hover_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Hover_2), (void*)value);
}
inline static int32_t get_offset_of_m_Active_3() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Active_3)); }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * get_m_Active_3() const { return ___m_Active_3; }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 ** get_address_of_m_Active_3() { return &___m_Active_3; }
inline void set_m_Active_3(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * value)
{
___m_Active_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Active_3), (void*)value);
}
inline static int32_t get_offset_of_m_Focused_4() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Focused_4)); }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * get_m_Focused_4() const { return ___m_Focused_4; }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 ** get_address_of_m_Focused_4() { return &___m_Focused_4; }
inline void set_m_Focused_4(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * value)
{
___m_Focused_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Focused_4), (void*)value);
}
inline static int32_t get_offset_of_m_OnNormal_5() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_OnNormal_5)); }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * get_m_OnNormal_5() const { return ___m_OnNormal_5; }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 ** get_address_of_m_OnNormal_5() { return &___m_OnNormal_5; }
inline void set_m_OnNormal_5(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * value)
{
___m_OnNormal_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnNormal_5), (void*)value);
}
inline static int32_t get_offset_of_m_OnHover_6() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_OnHover_6)); }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * get_m_OnHover_6() const { return ___m_OnHover_6; }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 ** get_address_of_m_OnHover_6() { return &___m_OnHover_6; }
inline void set_m_OnHover_6(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * value)
{
___m_OnHover_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnHover_6), (void*)value);
}
inline static int32_t get_offset_of_m_OnActive_7() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_OnActive_7)); }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * get_m_OnActive_7() const { return ___m_OnActive_7; }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 ** get_address_of_m_OnActive_7() { return &___m_OnActive_7; }
inline void set_m_OnActive_7(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * value)
{
___m_OnActive_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnActive_7), (void*)value);
}
inline static int32_t get_offset_of_m_OnFocused_8() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_OnFocused_8)); }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * get_m_OnFocused_8() const { return ___m_OnFocused_8; }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 ** get_address_of_m_OnFocused_8() { return &___m_OnFocused_8; }
inline void set_m_OnFocused_8(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * value)
{
___m_OnFocused_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnFocused_8), (void*)value);
}
inline static int32_t get_offset_of_m_Border_9() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Border_9)); }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * get_m_Border_9() const { return ___m_Border_9; }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A ** get_address_of_m_Border_9() { return &___m_Border_9; }
inline void set_m_Border_9(RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * value)
{
___m_Border_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Border_9), (void*)value);
}
inline static int32_t get_offset_of_m_Padding_10() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Padding_10)); }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * get_m_Padding_10() const { return ___m_Padding_10; }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A ** get_address_of_m_Padding_10() { return &___m_Padding_10; }
inline void set_m_Padding_10(RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * value)
{
___m_Padding_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Padding_10), (void*)value);
}
inline static int32_t get_offset_of_m_Margin_11() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Margin_11)); }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * get_m_Margin_11() const { return ___m_Margin_11; }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A ** get_address_of_m_Margin_11() { return &___m_Margin_11; }
inline void set_m_Margin_11(RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * value)
{
___m_Margin_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Margin_11), (void*)value);
}
inline static int32_t get_offset_of_m_Overflow_12() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Overflow_12)); }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * get_m_Overflow_12() const { return ___m_Overflow_12; }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A ** get_address_of_m_Overflow_12() { return &___m_Overflow_12; }
inline void set_m_Overflow_12(RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * value)
{
___m_Overflow_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Overflow_12), (void*)value);
}
};
struct GUIStyle_t671F175A201A19166385EE3392292A5F50070572_StaticFields
{
public:
// System.Boolean UnityEngine.GUIStyle::showKeyboardFocus
bool ___showKeyboardFocus_13;
// UnityEngine.GUIStyle UnityEngine.GUIStyle::s_None
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___s_None_14;
public:
inline static int32_t get_offset_of_showKeyboardFocus_13() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_StaticFields, ___showKeyboardFocus_13)); }
inline bool get_showKeyboardFocus_13() const { return ___showKeyboardFocus_13; }
inline bool* get_address_of_showKeyboardFocus_13() { return &___showKeyboardFocus_13; }
inline void set_showKeyboardFocus_13(bool value)
{
___showKeyboardFocus_13 = value;
}
inline static int32_t get_offset_of_s_None_14() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_StaticFields, ___s_None_14)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_s_None_14() const { return ___s_None_14; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_s_None_14() { return &___s_None_14; }
inline void set_s_None_14(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___s_None_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_None_14), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.GUIStyle
struct GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke* ___m_Normal_1;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke* ___m_Hover_2;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke* ___m_Active_3;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke* ___m_Focused_4;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke* ___m_OnNormal_5;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke* ___m_OnHover_6;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke* ___m_OnActive_7;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke* ___m_OnFocused_8;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_pinvoke ___m_Border_9;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_pinvoke ___m_Padding_10;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_pinvoke ___m_Margin_11;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_pinvoke ___m_Overflow_12;
};
// Native definition for COM marshalling of UnityEngine.GUIStyle
struct GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_com
{
intptr_t ___m_Ptr_0;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com* ___m_Normal_1;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com* ___m_Hover_2;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com* ___m_Active_3;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com* ___m_Focused_4;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com* ___m_OnNormal_5;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com* ___m_OnHover_6;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com* ___m_OnActive_7;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com* ___m_OnFocused_8;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_com* ___m_Border_9;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_com* ___m_Padding_10;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_com* ___m_Margin_11;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_com* ___m_Overflow_12;
};
// UnityEngine.GUIWordWrapSizer
struct GUIWordWrapSizer_tC17A8FB8EE28BDCFEE27C7E7000BA8215E76CFD0 : public GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845
{
public:
// UnityEngine.GUIContent UnityEngine.GUIWordWrapSizer::m_Content
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * ___m_Content_11;
// System.Single UnityEngine.GUIWordWrapSizer::m_ForcedMinHeight
float ___m_ForcedMinHeight_12;
// System.Single UnityEngine.GUIWordWrapSizer::m_ForcedMaxHeight
float ___m_ForcedMaxHeight_13;
public:
inline static int32_t get_offset_of_m_Content_11() { return static_cast<int32_t>(offsetof(GUIWordWrapSizer_tC17A8FB8EE28BDCFEE27C7E7000BA8215E76CFD0, ___m_Content_11)); }
inline GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * get_m_Content_11() const { return ___m_Content_11; }
inline GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 ** get_address_of_m_Content_11() { return &___m_Content_11; }
inline void set_m_Content_11(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * value)
{
___m_Content_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Content_11), (void*)value);
}
inline static int32_t get_offset_of_m_ForcedMinHeight_12() { return static_cast<int32_t>(offsetof(GUIWordWrapSizer_tC17A8FB8EE28BDCFEE27C7E7000BA8215E76CFD0, ___m_ForcedMinHeight_12)); }
inline float get_m_ForcedMinHeight_12() const { return ___m_ForcedMinHeight_12; }
inline float* get_address_of_m_ForcedMinHeight_12() { return &___m_ForcedMinHeight_12; }
inline void set_m_ForcedMinHeight_12(float value)
{
___m_ForcedMinHeight_12 = value;
}
inline static int32_t get_offset_of_m_ForcedMaxHeight_13() { return static_cast<int32_t>(offsetof(GUIWordWrapSizer_tC17A8FB8EE28BDCFEE27C7E7000BA8215E76CFD0, ___m_ForcedMaxHeight_13)); }
inline float get_m_ForcedMaxHeight_13() const { return ___m_ForcedMaxHeight_13; }
inline float* get_address_of_m_ForcedMaxHeight_13() { return &___m_ForcedMaxHeight_13; }
inline void set_m_ForcedMaxHeight_13(float value)
{
___m_ForcedMaxHeight_13 = value;
}
};
// UnityEngine.HumanBone
struct HumanBone_t2CE168CF8638CEABF48FB7B7CCF77BBE0CECF995
{
public:
// System.String UnityEngine.HumanBone::m_BoneName
String_t* ___m_BoneName_0;
// System.String UnityEngine.HumanBone::m_HumanName
String_t* ___m_HumanName_1;
// UnityEngine.HumanLimit UnityEngine.HumanBone::limit
HumanLimit_t6AB2A599FC9E1F7E1598954FA9A0E568ECA5B6F3 ___limit_2;
public:
inline static int32_t get_offset_of_m_BoneName_0() { return static_cast<int32_t>(offsetof(HumanBone_t2CE168CF8638CEABF48FB7B7CCF77BBE0CECF995, ___m_BoneName_0)); }
inline String_t* get_m_BoneName_0() const { return ___m_BoneName_0; }
inline String_t** get_address_of_m_BoneName_0() { return &___m_BoneName_0; }
inline void set_m_BoneName_0(String_t* value)
{
___m_BoneName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_BoneName_0), (void*)value);
}
inline static int32_t get_offset_of_m_HumanName_1() { return static_cast<int32_t>(offsetof(HumanBone_t2CE168CF8638CEABF48FB7B7CCF77BBE0CECF995, ___m_HumanName_1)); }
inline String_t* get_m_HumanName_1() const { return ___m_HumanName_1; }
inline String_t** get_address_of_m_HumanName_1() { return &___m_HumanName_1; }
inline void set_m_HumanName_1(String_t* value)
{
___m_HumanName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HumanName_1), (void*)value);
}
inline static int32_t get_offset_of_limit_2() { return static_cast<int32_t>(offsetof(HumanBone_t2CE168CF8638CEABF48FB7B7CCF77BBE0CECF995, ___limit_2)); }
inline HumanLimit_t6AB2A599FC9E1F7E1598954FA9A0E568ECA5B6F3 get_limit_2() const { return ___limit_2; }
inline HumanLimit_t6AB2A599FC9E1F7E1598954FA9A0E568ECA5B6F3 * get_address_of_limit_2() { return &___limit_2; }
inline void set_limit_2(HumanLimit_t6AB2A599FC9E1F7E1598954FA9A0E568ECA5B6F3 value)
{
___limit_2 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.HumanBone
struct HumanBone_t2CE168CF8638CEABF48FB7B7CCF77BBE0CECF995_marshaled_pinvoke
{
char* ___m_BoneName_0;
char* ___m_HumanName_1;
HumanLimit_t6AB2A599FC9E1F7E1598954FA9A0E568ECA5B6F3 ___limit_2;
};
// Native definition for COM marshalling of UnityEngine.HumanBone
struct HumanBone_t2CE168CF8638CEABF48FB7B7CCF77BBE0CECF995_marshaled_com
{
Il2CppChar* ___m_BoneName_0;
Il2CppChar* ___m_HumanName_1;
HumanLimit_t6AB2A599FC9E1F7E1598954FA9A0E568ECA5B6F3 ___limit_2;
};
// UnityEngine.IntegratedSubsystemDescriptor`1<UnityEngine.Experimental.XR.XRCameraSubsystem>
struct IntegratedSubsystemDescriptor_1_tE9F16178C14797992304DE9EE0396280DB8E77E1 : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812
{
public:
public:
};
// Native definition for P/Invoke marshalling of UnityEngine.IntegratedSubsystemDescriptor`1
#ifndef IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke_define
#define IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke_define
struct IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812_marshaled_pinvoke
{
};
#endif
// Native definition for COM marshalling of UnityEngine.IntegratedSubsystemDescriptor`1
#ifndef IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com_define
#define IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com_define
struct IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812_marshaled_com
{
};
#endif
// UnityEngine.IntegratedSubsystemDescriptor`1<UnityEngine.Experimental.XR.XRDepthSubsystem>
struct IntegratedSubsystemDescriptor_1_tD1D58FF107588D72C58C3AA7127439F03C9EEC06 : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812
{
public:
public:
};
// Native definition for P/Invoke marshalling of UnityEngine.IntegratedSubsystemDescriptor`1
#ifndef IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke_define
#define IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke_define
struct IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812_marshaled_pinvoke
{
};
#endif
// Native definition for COM marshalling of UnityEngine.IntegratedSubsystemDescriptor`1
#ifndef IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com_define
#define IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com_define
struct IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812_marshaled_com
{
};
#endif
// UnityEngine.IntegratedSubsystemDescriptor`1<UnityEngine.Experimental.XR.XRDisplaySubsystem>
struct IntegratedSubsystemDescriptor_1_tECEA77D16FCFCCE204709250CD387B003B86B871 : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812
{
public:
public:
};
// Native definition for P/Invoke marshalling of UnityEngine.IntegratedSubsystemDescriptor`1
#ifndef IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke_define
#define IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke_define
struct IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812_marshaled_pinvoke
{
};
#endif
// Native definition for COM marshalling of UnityEngine.IntegratedSubsystemDescriptor`1
#ifndef IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com_define
#define IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com_define
struct IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812_marshaled_com
{
};
#endif
// UnityEngine.IntegratedSubsystemDescriptor`1<UnityEngine.Experimental.XR.XRExperienceSubsystem>
struct IntegratedSubsystemDescriptor_1_t8BFAD0533529D58C49C50090ECE62E8BBAF44423 : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812
{
public:
public:
};
// Native definition for P/Invoke marshalling of UnityEngine.IntegratedSubsystemDescriptor`1
#ifndef IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke_define
#define IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke_define
struct IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812_marshaled_pinvoke
{
};
#endif
// Native definition for COM marshalling of UnityEngine.IntegratedSubsystemDescriptor`1
#ifndef IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com_define
#define IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com_define
struct IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812_marshaled_com
{
};
#endif
// UnityEngine.IntegratedSubsystemDescriptor`1<UnityEngine.Experimental.XR.XRGestureSubsystem>
struct IntegratedSubsystemDescriptor_1_t6587AB301B1E5916F184E9CF71A3E81083DC9683 : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812
{
public:
public:
};
// Native definition for P/Invoke marshalling of UnityEngine.IntegratedSubsystemDescriptor`1
#ifndef IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke_define
#define IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke_define
struct IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812_marshaled_pinvoke
{
};
#endif
// Native definition for COM marshalling of UnityEngine.IntegratedSubsystemDescriptor`1
#ifndef IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com_define
#define IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com_define
struct IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812_marshaled_com
{
};
#endif
// UnityEngine.IntegratedSubsystemDescriptor`1<UnityEngine.Experimental.XR.XRMeshSubsystem>
struct IntegratedSubsystemDescriptor_1_tFF108C78252FF43BD3DF4646DABA7531F402C957 : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812
{
public:
public:
};
// Native definition for P/Invoke marshalling of UnityEngine.IntegratedSubsystemDescriptor`1
#ifndef IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke_define
#define IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke_define
struct IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812_marshaled_pinvoke
{
};
#endif
// Native definition for COM marshalling of UnityEngine.IntegratedSubsystemDescriptor`1
#ifndef IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com_define
#define IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com_define
struct IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812_marshaled_com
{
};
#endif
// UnityEngine.IntegratedSubsystemDescriptor`1<UnityEngine.Experimental.XR.XRPlaneSubsystem>
struct IntegratedSubsystemDescriptor_1_t85BEA6ABFA714969AD7D295981D3A5F8BD82A383 : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812
{
public:
public:
};
// Native definition for P/Invoke marshalling of UnityEngine.IntegratedSubsystemDescriptor`1
#ifndef IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke_define
#define IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke_define
struct IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812_marshaled_pinvoke
{
};
#endif
// Native definition for COM marshalling of UnityEngine.IntegratedSubsystemDescriptor`1
#ifndef IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com_define
#define IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com_define
struct IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812_marshaled_com
{
};
#endif
// UnityEngine.IntegratedSubsystemDescriptor`1<UnityEngine.Experimental.XR.XRReferencePointSubsystem>
struct IntegratedSubsystemDescriptor_1_t299607E05679F7C2B9CEC0C28C89336EF798776D : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812
{
public:
public:
};
// Native definition for P/Invoke marshalling of UnityEngine.IntegratedSubsystemDescriptor`1
#ifndef IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke_define
#define IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke_define
struct IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812_marshaled_pinvoke
{
};
#endif
// Native definition for COM marshalling of UnityEngine.IntegratedSubsystemDescriptor`1
#ifndef IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com_define
#define IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com_define
struct IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812_marshaled_com
{
};
#endif
// UnityEngine.IntegratedSubsystemDescriptor`1<UnityEngine.Experimental.XR.XRSessionSubsystem>
struct IntegratedSubsystemDescriptor_1_t0C91735E460ED713B69E3B2CFB36F9FF3EF82E25 : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812
{
public:
public:
};
// Native definition for P/Invoke marshalling of UnityEngine.IntegratedSubsystemDescriptor`1
#ifndef IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke_define
#define IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke_define
struct IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_pinvoke : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812_marshaled_pinvoke
{
};
#endif
// Native definition for COM marshalling of UnityEngine.IntegratedSubsystemDescriptor`1
#ifndef IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com_define
#define IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com_define
struct IntegratedSubsystemDescriptor_1_tC67E18878A7A77F8FDCD3286C4EDD50CD96FEF73_marshaled_com : public IntegratedSubsystemDescriptor_tCC675C388E8A720B9467FCE039B00E7BE7693812_marshaled_com
{
};
#endif
// UnityEngine.IntegratedSubsystem`1<UnityEngine.Experimental.XR.XRCameraSubsystemDescriptor>
struct IntegratedSubsystem_1_t7895B27006AD89A2D0A37800E5E72D929802A8FD : public IntegratedSubsystem_t3DA4A857E71E63A49B52353DBD88FA880196117E
{
public:
public:
};
// UnityEngine.IntegratedSubsystem`1<UnityEngine.Experimental.XR.XRDepthSubsystemDescriptor>
struct IntegratedSubsystem_1_tC2625D3A168CA7974356810CC886C705C730BDFF : public IntegratedSubsystem_t3DA4A857E71E63A49B52353DBD88FA880196117E
{
public:
public:
};
// UnityEngine.IntegratedSubsystem`1<UnityEngine.Experimental.XR.XRDisplaySubsystemDescriptor>
struct IntegratedSubsystem_1_t7A42467FCEE4F6DCFAE1C7A0617050DB64FA0C04 : public IntegratedSubsystem_t3DA4A857E71E63A49B52353DBD88FA880196117E
{
public:
public:
};
// UnityEngine.IntegratedSubsystem`1<UnityEngine.Experimental.XR.XRExperienceSubsystemDescriptor>
struct IntegratedSubsystem_1_tDDA9D44F58C5536E8283488112D8D4B7F478DE72 : public IntegratedSubsystem_t3DA4A857E71E63A49B52353DBD88FA880196117E
{
public:
public:
};
// UnityEngine.IntegratedSubsystem`1<UnityEngine.Experimental.XR.XRGestureSubsystemDescriptor>
struct IntegratedSubsystem_1_t963E815D9428F94B70FECD776077C2A88C5467D9 : public IntegratedSubsystem_t3DA4A857E71E63A49B52353DBD88FA880196117E
{
public:
public:
};
// UnityEngine.IntegratedSubsystem`1<UnityEngine.Experimental.XR.XRMeshSubsystemDescriptor>
struct IntegratedSubsystem_1_tBBB499872BCB8136D689313D449486599F65184B : public IntegratedSubsystem_t3DA4A857E71E63A49B52353DBD88FA880196117E
{
public:
public:
};
// UnityEngine.IntegratedSubsystem`1<UnityEngine.Experimental.XR.XRPlaneSubsystemDescriptor>
struct IntegratedSubsystem_1_tA0CDA6F41285252BAC7B1C847C06E6A174C2A726 : public IntegratedSubsystem_t3DA4A857E71E63A49B52353DBD88FA880196117E
{
public:
public:
};
// UnityEngine.IntegratedSubsystem`1<UnityEngine.Experimental.XR.XRReferencePointSubsystemDescriptor>
struct IntegratedSubsystem_1_t48FB8540AD0BEB39E04B6521F76EADF9ACB5F794 : public IntegratedSubsystem_t3DA4A857E71E63A49B52353DBD88FA880196117E
{
public:
public:
};
// UnityEngine.IntegratedSubsystem`1<UnityEngine.Experimental.XR.XRSessionSubsystemDescriptor>
struct IntegratedSubsystem_1_tB3B8A0259908C7FE09F3D2231645B5CA251A2B5C : public IntegratedSubsystem_t3DA4A857E71E63A49B52353DBD88FA880196117E
{
public:
public:
};
// UnityEngine.Motion
struct Motion_t497BF9244B6A769D1AE925C3876B187C56C8CF8F : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
// UnityEngine.ParticleSystem_EmitParams
struct EmitParams_t03557E552852EC6B71876CD05C4098733702A219
{
public:
// UnityEngine.ParticleSystem_Particle UnityEngine.ParticleSystem_EmitParams::m_Particle
Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E ___m_Particle_0;
// System.Boolean UnityEngine.ParticleSystem_EmitParams::m_PositionSet
bool ___m_PositionSet_1;
// System.Boolean UnityEngine.ParticleSystem_EmitParams::m_VelocitySet
bool ___m_VelocitySet_2;
// System.Boolean UnityEngine.ParticleSystem_EmitParams::m_AxisOfRotationSet
bool ___m_AxisOfRotationSet_3;
// System.Boolean UnityEngine.ParticleSystem_EmitParams::m_RotationSet
bool ___m_RotationSet_4;
// System.Boolean UnityEngine.ParticleSystem_EmitParams::m_AngularVelocitySet
bool ___m_AngularVelocitySet_5;
// System.Boolean UnityEngine.ParticleSystem_EmitParams::m_StartSizeSet
bool ___m_StartSizeSet_6;
// System.Boolean UnityEngine.ParticleSystem_EmitParams::m_StartColorSet
bool ___m_StartColorSet_7;
// System.Boolean UnityEngine.ParticleSystem_EmitParams::m_RandomSeedSet
bool ___m_RandomSeedSet_8;
// System.Boolean UnityEngine.ParticleSystem_EmitParams::m_StartLifetimeSet
bool ___m_StartLifetimeSet_9;
// System.Boolean UnityEngine.ParticleSystem_EmitParams::m_MeshIndexSet
bool ___m_MeshIndexSet_10;
// System.Boolean UnityEngine.ParticleSystem_EmitParams::m_ApplyShapeToPosition
bool ___m_ApplyShapeToPosition_11;
public:
inline static int32_t get_offset_of_m_Particle_0() { return static_cast<int32_t>(offsetof(EmitParams_t03557E552852EC6B71876CD05C4098733702A219, ___m_Particle_0)); }
inline Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E get_m_Particle_0() const { return ___m_Particle_0; }
inline Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E * get_address_of_m_Particle_0() { return &___m_Particle_0; }
inline void set_m_Particle_0(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E value)
{
___m_Particle_0 = value;
}
inline static int32_t get_offset_of_m_PositionSet_1() { return static_cast<int32_t>(offsetof(EmitParams_t03557E552852EC6B71876CD05C4098733702A219, ___m_PositionSet_1)); }
inline bool get_m_PositionSet_1() const { return ___m_PositionSet_1; }
inline bool* get_address_of_m_PositionSet_1() { return &___m_PositionSet_1; }
inline void set_m_PositionSet_1(bool value)
{
___m_PositionSet_1 = value;
}
inline static int32_t get_offset_of_m_VelocitySet_2() { return static_cast<int32_t>(offsetof(EmitParams_t03557E552852EC6B71876CD05C4098733702A219, ___m_VelocitySet_2)); }
inline bool get_m_VelocitySet_2() const { return ___m_VelocitySet_2; }
inline bool* get_address_of_m_VelocitySet_2() { return &___m_VelocitySet_2; }
inline void set_m_VelocitySet_2(bool value)
{
___m_VelocitySet_2 = value;
}
inline static int32_t get_offset_of_m_AxisOfRotationSet_3() { return static_cast<int32_t>(offsetof(EmitParams_t03557E552852EC6B71876CD05C4098733702A219, ___m_AxisOfRotationSet_3)); }
inline bool get_m_AxisOfRotationSet_3() const { return ___m_AxisOfRotationSet_3; }
inline bool* get_address_of_m_AxisOfRotationSet_3() { return &___m_AxisOfRotationSet_3; }
inline void set_m_AxisOfRotationSet_3(bool value)
{
___m_AxisOfRotationSet_3 = value;
}
inline static int32_t get_offset_of_m_RotationSet_4() { return static_cast<int32_t>(offsetof(EmitParams_t03557E552852EC6B71876CD05C4098733702A219, ___m_RotationSet_4)); }
inline bool get_m_RotationSet_4() const { return ___m_RotationSet_4; }
inline bool* get_address_of_m_RotationSet_4() { return &___m_RotationSet_4; }
inline void set_m_RotationSet_4(bool value)
{
___m_RotationSet_4 = value;
}
inline static int32_t get_offset_of_m_AngularVelocitySet_5() { return static_cast<int32_t>(offsetof(EmitParams_t03557E552852EC6B71876CD05C4098733702A219, ___m_AngularVelocitySet_5)); }
inline bool get_m_AngularVelocitySet_5() const { return ___m_AngularVelocitySet_5; }
inline bool* get_address_of_m_AngularVelocitySet_5() { return &___m_AngularVelocitySet_5; }
inline void set_m_AngularVelocitySet_5(bool value)
{
___m_AngularVelocitySet_5 = value;
}
inline static int32_t get_offset_of_m_StartSizeSet_6() { return static_cast<int32_t>(offsetof(EmitParams_t03557E552852EC6B71876CD05C4098733702A219, ___m_StartSizeSet_6)); }
inline bool get_m_StartSizeSet_6() const { return ___m_StartSizeSet_6; }
inline bool* get_address_of_m_StartSizeSet_6() { return &___m_StartSizeSet_6; }
inline void set_m_StartSizeSet_6(bool value)
{
___m_StartSizeSet_6 = value;
}
inline static int32_t get_offset_of_m_StartColorSet_7() { return static_cast<int32_t>(offsetof(EmitParams_t03557E552852EC6B71876CD05C4098733702A219, ___m_StartColorSet_7)); }
inline bool get_m_StartColorSet_7() const { return ___m_StartColorSet_7; }
inline bool* get_address_of_m_StartColorSet_7() { return &___m_StartColorSet_7; }
inline void set_m_StartColorSet_7(bool value)
{
___m_StartColorSet_7 = value;
}
inline static int32_t get_offset_of_m_RandomSeedSet_8() { return static_cast<int32_t>(offsetof(EmitParams_t03557E552852EC6B71876CD05C4098733702A219, ___m_RandomSeedSet_8)); }
inline bool get_m_RandomSeedSet_8() const { return ___m_RandomSeedSet_8; }
inline bool* get_address_of_m_RandomSeedSet_8() { return &___m_RandomSeedSet_8; }
inline void set_m_RandomSeedSet_8(bool value)
{
___m_RandomSeedSet_8 = value;
}
inline static int32_t get_offset_of_m_StartLifetimeSet_9() { return static_cast<int32_t>(offsetof(EmitParams_t03557E552852EC6B71876CD05C4098733702A219, ___m_StartLifetimeSet_9)); }
inline bool get_m_StartLifetimeSet_9() const { return ___m_StartLifetimeSet_9; }
inline bool* get_address_of_m_StartLifetimeSet_9() { return &___m_StartLifetimeSet_9; }
inline void set_m_StartLifetimeSet_9(bool value)
{
___m_StartLifetimeSet_9 = value;
}
inline static int32_t get_offset_of_m_MeshIndexSet_10() { return static_cast<int32_t>(offsetof(EmitParams_t03557E552852EC6B71876CD05C4098733702A219, ___m_MeshIndexSet_10)); }
inline bool get_m_MeshIndexSet_10() const { return ___m_MeshIndexSet_10; }
inline bool* get_address_of_m_MeshIndexSet_10() { return &___m_MeshIndexSet_10; }
inline void set_m_MeshIndexSet_10(bool value)
{
___m_MeshIndexSet_10 = value;
}
inline static int32_t get_offset_of_m_ApplyShapeToPosition_11() { return static_cast<int32_t>(offsetof(EmitParams_t03557E552852EC6B71876CD05C4098733702A219, ___m_ApplyShapeToPosition_11)); }
inline bool get_m_ApplyShapeToPosition_11() const { return ___m_ApplyShapeToPosition_11; }
inline bool* get_address_of_m_ApplyShapeToPosition_11() { return &___m_ApplyShapeToPosition_11; }
inline void set_m_ApplyShapeToPosition_11(bool value)
{
___m_ApplyShapeToPosition_11 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/EmitParams
struct EmitParams_t03557E552852EC6B71876CD05C4098733702A219_marshaled_pinvoke
{
Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E ___m_Particle_0;
int32_t ___m_PositionSet_1;
int32_t ___m_VelocitySet_2;
int32_t ___m_AxisOfRotationSet_3;
int32_t ___m_RotationSet_4;
int32_t ___m_AngularVelocitySet_5;
int32_t ___m_StartSizeSet_6;
int32_t ___m_StartColorSet_7;
int32_t ___m_RandomSeedSet_8;
int32_t ___m_StartLifetimeSet_9;
int32_t ___m_MeshIndexSet_10;
int32_t ___m_ApplyShapeToPosition_11;
};
// Native definition for COM marshalling of UnityEngine.ParticleSystem/EmitParams
struct EmitParams_t03557E552852EC6B71876CD05C4098733702A219_marshaled_com
{
Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E ___m_Particle_0;
int32_t ___m_PositionSet_1;
int32_t ___m_VelocitySet_2;
int32_t ___m_AxisOfRotationSet_3;
int32_t ___m_RotationSet_4;
int32_t ___m_AngularVelocitySet_5;
int32_t ___m_StartSizeSet_6;
int32_t ___m_StartColorSet_7;
int32_t ___m_RandomSeedSet_8;
int32_t ___m_StartLifetimeSet_9;
int32_t ___m_MeshIndexSet_10;
int32_t ___m_ApplyShapeToPosition_11;
};
// UnityEngine.ParticleSystem_MinMaxCurve
struct MinMaxCurve_tDB335EDEBEBD4CFA753081D7C3A2FE2EECFA6D71
{
public:
// UnityEngine.ParticleSystemCurveMode UnityEngine.ParticleSystem_MinMaxCurve::m_Mode
int32_t ___m_Mode_0;
// System.Single UnityEngine.ParticleSystem_MinMaxCurve::m_CurveMultiplier
float ___m_CurveMultiplier_1;
// UnityEngine.AnimationCurve UnityEngine.ParticleSystem_MinMaxCurve::m_CurveMin
AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C * ___m_CurveMin_2;
// UnityEngine.AnimationCurve UnityEngine.ParticleSystem_MinMaxCurve::m_CurveMax
AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C * ___m_CurveMax_3;
// System.Single UnityEngine.ParticleSystem_MinMaxCurve::m_ConstantMin
float ___m_ConstantMin_4;
// System.Single UnityEngine.ParticleSystem_MinMaxCurve::m_ConstantMax
float ___m_ConstantMax_5;
public:
inline static int32_t get_offset_of_m_Mode_0() { return static_cast<int32_t>(offsetof(MinMaxCurve_tDB335EDEBEBD4CFA753081D7C3A2FE2EECFA6D71, ___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_CurveMultiplier_1() { return static_cast<int32_t>(offsetof(MinMaxCurve_tDB335EDEBEBD4CFA753081D7C3A2FE2EECFA6D71, ___m_CurveMultiplier_1)); }
inline float get_m_CurveMultiplier_1() const { return ___m_CurveMultiplier_1; }
inline float* get_address_of_m_CurveMultiplier_1() { return &___m_CurveMultiplier_1; }
inline void set_m_CurveMultiplier_1(float value)
{
___m_CurveMultiplier_1 = value;
}
inline static int32_t get_offset_of_m_CurveMin_2() { return static_cast<int32_t>(offsetof(MinMaxCurve_tDB335EDEBEBD4CFA753081D7C3A2FE2EECFA6D71, ___m_CurveMin_2)); }
inline AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C * get_m_CurveMin_2() const { return ___m_CurveMin_2; }
inline AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C ** get_address_of_m_CurveMin_2() { return &___m_CurveMin_2; }
inline void set_m_CurveMin_2(AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C * value)
{
___m_CurveMin_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CurveMin_2), (void*)value);
}
inline static int32_t get_offset_of_m_CurveMax_3() { return static_cast<int32_t>(offsetof(MinMaxCurve_tDB335EDEBEBD4CFA753081D7C3A2FE2EECFA6D71, ___m_CurveMax_3)); }
inline AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C * get_m_CurveMax_3() const { return ___m_CurveMax_3; }
inline AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C ** get_address_of_m_CurveMax_3() { return &___m_CurveMax_3; }
inline void set_m_CurveMax_3(AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C * value)
{
___m_CurveMax_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CurveMax_3), (void*)value);
}
inline static int32_t get_offset_of_m_ConstantMin_4() { return static_cast<int32_t>(offsetof(MinMaxCurve_tDB335EDEBEBD4CFA753081D7C3A2FE2EECFA6D71, ___m_ConstantMin_4)); }
inline float get_m_ConstantMin_4() const { return ___m_ConstantMin_4; }
inline float* get_address_of_m_ConstantMin_4() { return &___m_ConstantMin_4; }
inline void set_m_ConstantMin_4(float value)
{
___m_ConstantMin_4 = value;
}
inline static int32_t get_offset_of_m_ConstantMax_5() { return static_cast<int32_t>(offsetof(MinMaxCurve_tDB335EDEBEBD4CFA753081D7C3A2FE2EECFA6D71, ___m_ConstantMax_5)); }
inline float get_m_ConstantMax_5() const { return ___m_ConstantMax_5; }
inline float* get_address_of_m_ConstantMax_5() { return &___m_ConstantMax_5; }
inline void set_m_ConstantMax_5(float value)
{
___m_ConstantMax_5 = value;
}
};
// UnityEngine.RuntimeAnimatorController
struct RuntimeAnimatorController_tDA6672C8194522C2F60F8F2F241657E57C3520BD : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
// UnityEngine.ScriptableObject
struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734 : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
// Native definition for P/Invoke marshalling of UnityEngine.ScriptableObject
struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734_marshaled_pinvoke : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke
{
};
// Native definition for COM marshalling of UnityEngine.ScriptableObject
struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734_marshaled_com : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com
{
};
// UnityEngine.SocialPlatforms.Impl.Leaderboard
struct Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE : public RuntimeObject
{
public:
// System.Boolean UnityEngine.SocialPlatforms.Impl.Leaderboard::m_Loading
bool ___m_Loading_0;
// UnityEngine.SocialPlatforms.IScore UnityEngine.SocialPlatforms.Impl.Leaderboard::m_LocalUserScore
RuntimeObject* ___m_LocalUserScore_1;
// System.UInt32 UnityEngine.SocialPlatforms.Impl.Leaderboard::m_MaxRange
uint32_t ___m_MaxRange_2;
// UnityEngine.SocialPlatforms.IScore[] UnityEngine.SocialPlatforms.Impl.Leaderboard::m_Scores
IScoreU5BU5D_t64BCFED7B59BE0D35420A0A92BEC5140C035952C* ___m_Scores_3;
// System.String UnityEngine.SocialPlatforms.Impl.Leaderboard::m_Title
String_t* ___m_Title_4;
// System.String[] UnityEngine.SocialPlatforms.Impl.Leaderboard::m_UserIDs
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_UserIDs_5;
// System.String UnityEngine.SocialPlatforms.Impl.Leaderboard::<id>k__BackingField
String_t* ___U3CidU3Ek__BackingField_6;
// UnityEngine.SocialPlatforms.UserScope UnityEngine.SocialPlatforms.Impl.Leaderboard::<userScope>k__BackingField
int32_t ___U3CuserScopeU3Ek__BackingField_7;
// UnityEngine.SocialPlatforms.Range UnityEngine.SocialPlatforms.Impl.Leaderboard::<range>k__BackingField
Range_t2332F6C6E1E19A355F5C1A93FF4434B92FBDBABC ___U3CrangeU3Ek__BackingField_8;
// UnityEngine.SocialPlatforms.TimeScope UnityEngine.SocialPlatforms.Impl.Leaderboard::<timeScope>k__BackingField
int32_t ___U3CtimeScopeU3Ek__BackingField_9;
public:
inline static int32_t get_offset_of_m_Loading_0() { return static_cast<int32_t>(offsetof(Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE, ___m_Loading_0)); }
inline bool get_m_Loading_0() const { return ___m_Loading_0; }
inline bool* get_address_of_m_Loading_0() { return &___m_Loading_0; }
inline void set_m_Loading_0(bool value)
{
___m_Loading_0 = value;
}
inline static int32_t get_offset_of_m_LocalUserScore_1() { return static_cast<int32_t>(offsetof(Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE, ___m_LocalUserScore_1)); }
inline RuntimeObject* get_m_LocalUserScore_1() const { return ___m_LocalUserScore_1; }
inline RuntimeObject** get_address_of_m_LocalUserScore_1() { return &___m_LocalUserScore_1; }
inline void set_m_LocalUserScore_1(RuntimeObject* value)
{
___m_LocalUserScore_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_LocalUserScore_1), (void*)value);
}
inline static int32_t get_offset_of_m_MaxRange_2() { return static_cast<int32_t>(offsetof(Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE, ___m_MaxRange_2)); }
inline uint32_t get_m_MaxRange_2() const { return ___m_MaxRange_2; }
inline uint32_t* get_address_of_m_MaxRange_2() { return &___m_MaxRange_2; }
inline void set_m_MaxRange_2(uint32_t value)
{
___m_MaxRange_2 = value;
}
inline static int32_t get_offset_of_m_Scores_3() { return static_cast<int32_t>(offsetof(Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE, ___m_Scores_3)); }
inline IScoreU5BU5D_t64BCFED7B59BE0D35420A0A92BEC5140C035952C* get_m_Scores_3() const { return ___m_Scores_3; }
inline IScoreU5BU5D_t64BCFED7B59BE0D35420A0A92BEC5140C035952C** get_address_of_m_Scores_3() { return &___m_Scores_3; }
inline void set_m_Scores_3(IScoreU5BU5D_t64BCFED7B59BE0D35420A0A92BEC5140C035952C* value)
{
___m_Scores_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Scores_3), (void*)value);
}
inline static int32_t get_offset_of_m_Title_4() { return static_cast<int32_t>(offsetof(Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE, ___m_Title_4)); }
inline String_t* get_m_Title_4() const { return ___m_Title_4; }
inline String_t** get_address_of_m_Title_4() { return &___m_Title_4; }
inline void set_m_Title_4(String_t* value)
{
___m_Title_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Title_4), (void*)value);
}
inline static int32_t get_offset_of_m_UserIDs_5() { return static_cast<int32_t>(offsetof(Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE, ___m_UserIDs_5)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_UserIDs_5() const { return ___m_UserIDs_5; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_UserIDs_5() { return &___m_UserIDs_5; }
inline void set_m_UserIDs_5(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___m_UserIDs_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_UserIDs_5), (void*)value);
}
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE, ___U3CidU3Ek__BackingField_6)); }
inline String_t* get_U3CidU3Ek__BackingField_6() const { return ___U3CidU3Ek__BackingField_6; }
inline String_t** get_address_of_U3CidU3Ek__BackingField_6() { return &___U3CidU3Ek__BackingField_6; }
inline void set_U3CidU3Ek__BackingField_6(String_t* value)
{
___U3CidU3Ek__BackingField_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CidU3Ek__BackingField_6), (void*)value);
}
inline static int32_t get_offset_of_U3CuserScopeU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE, ___U3CuserScopeU3Ek__BackingField_7)); }
inline int32_t get_U3CuserScopeU3Ek__BackingField_7() const { return ___U3CuserScopeU3Ek__BackingField_7; }
inline int32_t* get_address_of_U3CuserScopeU3Ek__BackingField_7() { return &___U3CuserScopeU3Ek__BackingField_7; }
inline void set_U3CuserScopeU3Ek__BackingField_7(int32_t value)
{
___U3CuserScopeU3Ek__BackingField_7 = value;
}
inline static int32_t get_offset_of_U3CrangeU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE, ___U3CrangeU3Ek__BackingField_8)); }
inline Range_t2332F6C6E1E19A355F5C1A93FF4434B92FBDBABC get_U3CrangeU3Ek__BackingField_8() const { return ___U3CrangeU3Ek__BackingField_8; }
inline Range_t2332F6C6E1E19A355F5C1A93FF4434B92FBDBABC * get_address_of_U3CrangeU3Ek__BackingField_8() { return &___U3CrangeU3Ek__BackingField_8; }
inline void set_U3CrangeU3Ek__BackingField_8(Range_t2332F6C6E1E19A355F5C1A93FF4434B92FBDBABC value)
{
___U3CrangeU3Ek__BackingField_8 = value;
}
inline static int32_t get_offset_of_U3CtimeScopeU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE, ___U3CtimeScopeU3Ek__BackingField_9)); }
inline int32_t get_U3CtimeScopeU3Ek__BackingField_9() const { return ___U3CtimeScopeU3Ek__BackingField_9; }
inline int32_t* get_address_of_U3CtimeScopeU3Ek__BackingField_9() { return &___U3CtimeScopeU3Ek__BackingField_9; }
inline void set_U3CtimeScopeU3Ek__BackingField_9(int32_t value)
{
___U3CtimeScopeU3Ek__BackingField_9 = value;
}
};
// UnityEngine.SocialPlatforms.Impl.UserProfile
struct UserProfile_tB1F9D8E54F0480240196974DCCAF2742F8F0A51E : public RuntimeObject
{
public:
// System.String UnityEngine.SocialPlatforms.Impl.UserProfile::m_UserName
String_t* ___m_UserName_0;
// System.String UnityEngine.SocialPlatforms.Impl.UserProfile::m_ID
String_t* ___m_ID_1;
// System.Boolean UnityEngine.SocialPlatforms.Impl.UserProfile::m_IsFriend
bool ___m_IsFriend_2;
// UnityEngine.SocialPlatforms.UserState UnityEngine.SocialPlatforms.Impl.UserProfile::m_State
int32_t ___m_State_3;
// UnityEngine.Texture2D UnityEngine.SocialPlatforms.Impl.UserProfile::m_Image
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___m_Image_4;
public:
inline static int32_t get_offset_of_m_UserName_0() { return static_cast<int32_t>(offsetof(UserProfile_tB1F9D8E54F0480240196974DCCAF2742F8F0A51E, ___m_UserName_0)); }
inline String_t* get_m_UserName_0() const { return ___m_UserName_0; }
inline String_t** get_address_of_m_UserName_0() { return &___m_UserName_0; }
inline void set_m_UserName_0(String_t* value)
{
___m_UserName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_UserName_0), (void*)value);
}
inline static int32_t get_offset_of_m_ID_1() { return static_cast<int32_t>(offsetof(UserProfile_tB1F9D8E54F0480240196974DCCAF2742F8F0A51E, ___m_ID_1)); }
inline String_t* get_m_ID_1() const { return ___m_ID_1; }
inline String_t** get_address_of_m_ID_1() { return &___m_ID_1; }
inline void set_m_ID_1(String_t* value)
{
___m_ID_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ID_1), (void*)value);
}
inline static int32_t get_offset_of_m_IsFriend_2() { return static_cast<int32_t>(offsetof(UserProfile_tB1F9D8E54F0480240196974DCCAF2742F8F0A51E, ___m_IsFriend_2)); }
inline bool get_m_IsFriend_2() const { return ___m_IsFriend_2; }
inline bool* get_address_of_m_IsFriend_2() { return &___m_IsFriend_2; }
inline void set_m_IsFriend_2(bool value)
{
___m_IsFriend_2 = value;
}
inline static int32_t get_offset_of_m_State_3() { return static_cast<int32_t>(offsetof(UserProfile_tB1F9D8E54F0480240196974DCCAF2742F8F0A51E, ___m_State_3)); }
inline int32_t get_m_State_3() const { return ___m_State_3; }
inline int32_t* get_address_of_m_State_3() { return &___m_State_3; }
inline void set_m_State_3(int32_t value)
{
___m_State_3 = value;
}
inline static int32_t get_offset_of_m_Image_4() { return static_cast<int32_t>(offsetof(UserProfile_tB1F9D8E54F0480240196974DCCAF2742F8F0A51E, ___m_Image_4)); }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * get_m_Image_4() const { return ___m_Image_4; }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C ** get_address_of_m_Image_4() { return &___m_Image_4; }
inline void set_m_Image_4(Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * value)
{
___m_Image_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Image_4), (void*)value);
}
};
// UnityEngine.TextEditor
struct TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440 : public RuntimeObject
{
public:
// UnityEngine.TouchScreenKeyboard UnityEngine.TextEditor::keyboardOnScreen
TouchScreenKeyboard_t2A69F85698E9780470181532D3F2BC903623FD90 * ___keyboardOnScreen_0;
// System.Int32 UnityEngine.TextEditor::controlID
int32_t ___controlID_1;
// UnityEngine.GUIStyle UnityEngine.TextEditor::style
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___style_2;
// System.Boolean UnityEngine.TextEditor::multiline
bool ___multiline_3;
// System.Boolean UnityEngine.TextEditor::hasHorizontalCursorPos
bool ___hasHorizontalCursorPos_4;
// System.Boolean UnityEngine.TextEditor::isPasswordField
bool ___isPasswordField_5;
// UnityEngine.Vector2 UnityEngine.TextEditor::scrollOffset
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___scrollOffset_6;
// UnityEngine.GUIContent UnityEngine.TextEditor::m_Content
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * ___m_Content_7;
// System.Int32 UnityEngine.TextEditor::m_CursorIndex
int32_t ___m_CursorIndex_8;
// System.Int32 UnityEngine.TextEditor::m_SelectIndex
int32_t ___m_SelectIndex_9;
// System.Boolean UnityEngine.TextEditor::m_RevealCursor
bool ___m_RevealCursor_10;
// System.Boolean UnityEngine.TextEditor::m_MouseDragSelectsWholeWords
bool ___m_MouseDragSelectsWholeWords_11;
// System.Int32 UnityEngine.TextEditor::m_DblClickInitPos
int32_t ___m_DblClickInitPos_12;
// UnityEngine.TextEditor_DblClickSnapping UnityEngine.TextEditor::m_DblClickSnap
uint8_t ___m_DblClickSnap_13;
// System.Boolean UnityEngine.TextEditor::m_bJustSelected
bool ___m_bJustSelected_14;
// System.Int32 UnityEngine.TextEditor::m_iAltCursorPos
int32_t ___m_iAltCursorPos_15;
public:
inline static int32_t get_offset_of_keyboardOnScreen_0() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___keyboardOnScreen_0)); }
inline TouchScreenKeyboard_t2A69F85698E9780470181532D3F2BC903623FD90 * get_keyboardOnScreen_0() const { return ___keyboardOnScreen_0; }
inline TouchScreenKeyboard_t2A69F85698E9780470181532D3F2BC903623FD90 ** get_address_of_keyboardOnScreen_0() { return &___keyboardOnScreen_0; }
inline void set_keyboardOnScreen_0(TouchScreenKeyboard_t2A69F85698E9780470181532D3F2BC903623FD90 * value)
{
___keyboardOnScreen_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keyboardOnScreen_0), (void*)value);
}
inline static int32_t get_offset_of_controlID_1() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___controlID_1)); }
inline int32_t get_controlID_1() const { return ___controlID_1; }
inline int32_t* get_address_of_controlID_1() { return &___controlID_1; }
inline void set_controlID_1(int32_t value)
{
___controlID_1 = value;
}
inline static int32_t get_offset_of_style_2() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___style_2)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_style_2() const { return ___style_2; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_style_2() { return &___style_2; }
inline void set_style_2(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___style_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___style_2), (void*)value);
}
inline static int32_t get_offset_of_multiline_3() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___multiline_3)); }
inline bool get_multiline_3() const { return ___multiline_3; }
inline bool* get_address_of_multiline_3() { return &___multiline_3; }
inline void set_multiline_3(bool value)
{
___multiline_3 = value;
}
inline static int32_t get_offset_of_hasHorizontalCursorPos_4() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___hasHorizontalCursorPos_4)); }
inline bool get_hasHorizontalCursorPos_4() const { return ___hasHorizontalCursorPos_4; }
inline bool* get_address_of_hasHorizontalCursorPos_4() { return &___hasHorizontalCursorPos_4; }
inline void set_hasHorizontalCursorPos_4(bool value)
{
___hasHorizontalCursorPos_4 = value;
}
inline static int32_t get_offset_of_isPasswordField_5() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___isPasswordField_5)); }
inline bool get_isPasswordField_5() const { return ___isPasswordField_5; }
inline bool* get_address_of_isPasswordField_5() { return &___isPasswordField_5; }
inline void set_isPasswordField_5(bool value)
{
___isPasswordField_5 = value;
}
inline static int32_t get_offset_of_scrollOffset_6() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___scrollOffset_6)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_scrollOffset_6() const { return ___scrollOffset_6; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_scrollOffset_6() { return &___scrollOffset_6; }
inline void set_scrollOffset_6(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___scrollOffset_6 = value;
}
inline static int32_t get_offset_of_m_Content_7() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___m_Content_7)); }
inline GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * get_m_Content_7() const { return ___m_Content_7; }
inline GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 ** get_address_of_m_Content_7() { return &___m_Content_7; }
inline void set_m_Content_7(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * value)
{
___m_Content_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Content_7), (void*)value);
}
inline static int32_t get_offset_of_m_CursorIndex_8() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___m_CursorIndex_8)); }
inline int32_t get_m_CursorIndex_8() const { return ___m_CursorIndex_8; }
inline int32_t* get_address_of_m_CursorIndex_8() { return &___m_CursorIndex_8; }
inline void set_m_CursorIndex_8(int32_t value)
{
___m_CursorIndex_8 = value;
}
inline static int32_t get_offset_of_m_SelectIndex_9() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___m_SelectIndex_9)); }
inline int32_t get_m_SelectIndex_9() const { return ___m_SelectIndex_9; }
inline int32_t* get_address_of_m_SelectIndex_9() { return &___m_SelectIndex_9; }
inline void set_m_SelectIndex_9(int32_t value)
{
___m_SelectIndex_9 = value;
}
inline static int32_t get_offset_of_m_RevealCursor_10() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___m_RevealCursor_10)); }
inline bool get_m_RevealCursor_10() const { return ___m_RevealCursor_10; }
inline bool* get_address_of_m_RevealCursor_10() { return &___m_RevealCursor_10; }
inline void set_m_RevealCursor_10(bool value)
{
___m_RevealCursor_10 = value;
}
inline static int32_t get_offset_of_m_MouseDragSelectsWholeWords_11() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___m_MouseDragSelectsWholeWords_11)); }
inline bool get_m_MouseDragSelectsWholeWords_11() const { return ___m_MouseDragSelectsWholeWords_11; }
inline bool* get_address_of_m_MouseDragSelectsWholeWords_11() { return &___m_MouseDragSelectsWholeWords_11; }
inline void set_m_MouseDragSelectsWholeWords_11(bool value)
{
___m_MouseDragSelectsWholeWords_11 = value;
}
inline static int32_t get_offset_of_m_DblClickInitPos_12() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___m_DblClickInitPos_12)); }
inline int32_t get_m_DblClickInitPos_12() const { return ___m_DblClickInitPos_12; }
inline int32_t* get_address_of_m_DblClickInitPos_12() { return &___m_DblClickInitPos_12; }
inline void set_m_DblClickInitPos_12(int32_t value)
{
___m_DblClickInitPos_12 = value;
}
inline static int32_t get_offset_of_m_DblClickSnap_13() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___m_DblClickSnap_13)); }
inline uint8_t get_m_DblClickSnap_13() const { return ___m_DblClickSnap_13; }
inline uint8_t* get_address_of_m_DblClickSnap_13() { return &___m_DblClickSnap_13; }
inline void set_m_DblClickSnap_13(uint8_t value)
{
___m_DblClickSnap_13 = value;
}
inline static int32_t get_offset_of_m_bJustSelected_14() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___m_bJustSelected_14)); }
inline bool get_m_bJustSelected_14() const { return ___m_bJustSelected_14; }
inline bool* get_address_of_m_bJustSelected_14() { return &___m_bJustSelected_14; }
inline void set_m_bJustSelected_14(bool value)
{
___m_bJustSelected_14 = value;
}
inline static int32_t get_offset_of_m_iAltCursorPos_15() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___m_iAltCursorPos_15)); }
inline int32_t get_m_iAltCursorPos_15() const { return ___m_iAltCursorPos_15; }
inline int32_t* get_address_of_m_iAltCursorPos_15() { return &___m_iAltCursorPos_15; }
inline void set_m_iAltCursorPos_15(int32_t value)
{
___m_iAltCursorPos_15 = value;
}
};
// 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.FontData
struct FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494 : public RuntimeObject
{
public:
// UnityEngine.Font UnityEngine.UI.FontData::m_Font
Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * ___m_Font_0;
// System.Int32 UnityEngine.UI.FontData::m_FontSize
int32_t ___m_FontSize_1;
// UnityEngine.FontStyle UnityEngine.UI.FontData::m_FontStyle
int32_t ___m_FontStyle_2;
// System.Boolean UnityEngine.UI.FontData::m_BestFit
bool ___m_BestFit_3;
// System.Int32 UnityEngine.UI.FontData::m_MinSize
int32_t ___m_MinSize_4;
// System.Int32 UnityEngine.UI.FontData::m_MaxSize
int32_t ___m_MaxSize_5;
// UnityEngine.TextAnchor UnityEngine.UI.FontData::m_Alignment
int32_t ___m_Alignment_6;
// System.Boolean UnityEngine.UI.FontData::m_AlignByGeometry
bool ___m_AlignByGeometry_7;
// System.Boolean UnityEngine.UI.FontData::m_RichText
bool ___m_RichText_8;
// UnityEngine.HorizontalWrapMode UnityEngine.UI.FontData::m_HorizontalOverflow
int32_t ___m_HorizontalOverflow_9;
// UnityEngine.VerticalWrapMode UnityEngine.UI.FontData::m_VerticalOverflow
int32_t ___m_VerticalOverflow_10;
// System.Single UnityEngine.UI.FontData::m_LineSpacing
float ___m_LineSpacing_11;
public:
inline static int32_t get_offset_of_m_Font_0() { return static_cast<int32_t>(offsetof(FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494, ___m_Font_0)); }
inline Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * get_m_Font_0() const { return ___m_Font_0; }
inline Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 ** get_address_of_m_Font_0() { return &___m_Font_0; }
inline void set_m_Font_0(Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * value)
{
___m_Font_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Font_0), (void*)value);
}
inline static int32_t get_offset_of_m_FontSize_1() { return static_cast<int32_t>(offsetof(FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494, ___m_FontSize_1)); }
inline int32_t get_m_FontSize_1() const { return ___m_FontSize_1; }
inline int32_t* get_address_of_m_FontSize_1() { return &___m_FontSize_1; }
inline void set_m_FontSize_1(int32_t value)
{
___m_FontSize_1 = value;
}
inline static int32_t get_offset_of_m_FontStyle_2() { return static_cast<int32_t>(offsetof(FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494, ___m_FontStyle_2)); }
inline int32_t get_m_FontStyle_2() const { return ___m_FontStyle_2; }
inline int32_t* get_address_of_m_FontStyle_2() { return &___m_FontStyle_2; }
inline void set_m_FontStyle_2(int32_t value)
{
___m_FontStyle_2 = value;
}
inline static int32_t get_offset_of_m_BestFit_3() { return static_cast<int32_t>(offsetof(FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494, ___m_BestFit_3)); }
inline bool get_m_BestFit_3() const { return ___m_BestFit_3; }
inline bool* get_address_of_m_BestFit_3() { return &___m_BestFit_3; }
inline void set_m_BestFit_3(bool value)
{
___m_BestFit_3 = value;
}
inline static int32_t get_offset_of_m_MinSize_4() { return static_cast<int32_t>(offsetof(FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494, ___m_MinSize_4)); }
inline int32_t get_m_MinSize_4() const { return ___m_MinSize_4; }
inline int32_t* get_address_of_m_MinSize_4() { return &___m_MinSize_4; }
inline void set_m_MinSize_4(int32_t value)
{
___m_MinSize_4 = value;
}
inline static int32_t get_offset_of_m_MaxSize_5() { return static_cast<int32_t>(offsetof(FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494, ___m_MaxSize_5)); }
inline int32_t get_m_MaxSize_5() const { return ___m_MaxSize_5; }
inline int32_t* get_address_of_m_MaxSize_5() { return &___m_MaxSize_5; }
inline void set_m_MaxSize_5(int32_t value)
{
___m_MaxSize_5 = value;
}
inline static int32_t get_offset_of_m_Alignment_6() { return static_cast<int32_t>(offsetof(FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494, ___m_Alignment_6)); }
inline int32_t get_m_Alignment_6() const { return ___m_Alignment_6; }
inline int32_t* get_address_of_m_Alignment_6() { return &___m_Alignment_6; }
inline void set_m_Alignment_6(int32_t value)
{
___m_Alignment_6 = value;
}
inline static int32_t get_offset_of_m_AlignByGeometry_7() { return static_cast<int32_t>(offsetof(FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494, ___m_AlignByGeometry_7)); }
inline bool get_m_AlignByGeometry_7() const { return ___m_AlignByGeometry_7; }
inline bool* get_address_of_m_AlignByGeometry_7() { return &___m_AlignByGeometry_7; }
inline void set_m_AlignByGeometry_7(bool value)
{
___m_AlignByGeometry_7 = value;
}
inline static int32_t get_offset_of_m_RichText_8() { return static_cast<int32_t>(offsetof(FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494, ___m_RichText_8)); }
inline bool get_m_RichText_8() const { return ___m_RichText_8; }
inline bool* get_address_of_m_RichText_8() { return &___m_RichText_8; }
inline void set_m_RichText_8(bool value)
{
___m_RichText_8 = value;
}
inline static int32_t get_offset_of_m_HorizontalOverflow_9() { return static_cast<int32_t>(offsetof(FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494, ___m_HorizontalOverflow_9)); }
inline int32_t get_m_HorizontalOverflow_9() const { return ___m_HorizontalOverflow_9; }
inline int32_t* get_address_of_m_HorizontalOverflow_9() { return &___m_HorizontalOverflow_9; }
inline void set_m_HorizontalOverflow_9(int32_t value)
{
___m_HorizontalOverflow_9 = value;
}
inline static int32_t get_offset_of_m_VerticalOverflow_10() { return static_cast<int32_t>(offsetof(FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494, ___m_VerticalOverflow_10)); }
inline int32_t get_m_VerticalOverflow_10() const { return ___m_VerticalOverflow_10; }
inline int32_t* get_address_of_m_VerticalOverflow_10() { return &___m_VerticalOverflow_10; }
inline void set_m_VerticalOverflow_10(int32_t value)
{
___m_VerticalOverflow_10 = value;
}
inline static int32_t get_offset_of_m_LineSpacing_11() { return static_cast<int32_t>(offsetof(FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494, ___m_LineSpacing_11)); }
inline float get_m_LineSpacing_11() const { return ___m_LineSpacing_11; }
inline float* get_address_of_m_LineSpacing_11() { return &___m_LineSpacing_11; }
inline void set_m_LineSpacing_11(float value)
{
___m_LineSpacing_11 = value;
}
};
// 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;
};
// UnityEngine.UI.StencilMaterial_MatEntry
struct MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701 : public RuntimeObject
{
public:
// UnityEngine.Material UnityEngine.UI.StencilMaterial_MatEntry::baseMat
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___baseMat_0;
// UnityEngine.Material UnityEngine.UI.StencilMaterial_MatEntry::customMat
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___customMat_1;
// System.Int32 UnityEngine.UI.StencilMaterial_MatEntry::count
int32_t ___count_2;
// System.Int32 UnityEngine.UI.StencilMaterial_MatEntry::stencilId
int32_t ___stencilId_3;
// UnityEngine.Rendering.StencilOp UnityEngine.UI.StencilMaterial_MatEntry::operation
int32_t ___operation_4;
// UnityEngine.Rendering.CompareFunction UnityEngine.UI.StencilMaterial_MatEntry::compareFunction
int32_t ___compareFunction_5;
// System.Int32 UnityEngine.UI.StencilMaterial_MatEntry::readMask
int32_t ___readMask_6;
// System.Int32 UnityEngine.UI.StencilMaterial_MatEntry::writeMask
int32_t ___writeMask_7;
// System.Boolean UnityEngine.UI.StencilMaterial_MatEntry::useAlphaClip
bool ___useAlphaClip_8;
// UnityEngine.Rendering.ColorWriteMask UnityEngine.UI.StencilMaterial_MatEntry::colorMask
int32_t ___colorMask_9;
public:
inline static int32_t get_offset_of_baseMat_0() { return static_cast<int32_t>(offsetof(MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701, ___baseMat_0)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_baseMat_0() const { return ___baseMat_0; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_baseMat_0() { return &___baseMat_0; }
inline void set_baseMat_0(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___baseMat_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___baseMat_0), (void*)value);
}
inline static int32_t get_offset_of_customMat_1() { return static_cast<int32_t>(offsetof(MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701, ___customMat_1)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_customMat_1() const { return ___customMat_1; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_customMat_1() { return &___customMat_1; }
inline void set_customMat_1(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___customMat_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___customMat_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701, ___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_stencilId_3() { return static_cast<int32_t>(offsetof(MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701, ___stencilId_3)); }
inline int32_t get_stencilId_3() const { return ___stencilId_3; }
inline int32_t* get_address_of_stencilId_3() { return &___stencilId_3; }
inline void set_stencilId_3(int32_t value)
{
___stencilId_3 = value;
}
inline static int32_t get_offset_of_operation_4() { return static_cast<int32_t>(offsetof(MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701, ___operation_4)); }
inline int32_t get_operation_4() const { return ___operation_4; }
inline int32_t* get_address_of_operation_4() { return &___operation_4; }
inline void set_operation_4(int32_t value)
{
___operation_4 = value;
}
inline static int32_t get_offset_of_compareFunction_5() { return static_cast<int32_t>(offsetof(MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701, ___compareFunction_5)); }
inline int32_t get_compareFunction_5() const { return ___compareFunction_5; }
inline int32_t* get_address_of_compareFunction_5() { return &___compareFunction_5; }
inline void set_compareFunction_5(int32_t value)
{
___compareFunction_5 = value;
}
inline static int32_t get_offset_of_readMask_6() { return static_cast<int32_t>(offsetof(MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701, ___readMask_6)); }
inline int32_t get_readMask_6() const { return ___readMask_6; }
inline int32_t* get_address_of_readMask_6() { return &___readMask_6; }
inline void set_readMask_6(int32_t value)
{
___readMask_6 = value;
}
inline static int32_t get_offset_of_writeMask_7() { return static_cast<int32_t>(offsetof(MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701, ___writeMask_7)); }
inline int32_t get_writeMask_7() const { return ___writeMask_7; }
inline int32_t* get_address_of_writeMask_7() { return &___writeMask_7; }
inline void set_writeMask_7(int32_t value)
{
___writeMask_7 = value;
}
inline static int32_t get_offset_of_useAlphaClip_8() { return static_cast<int32_t>(offsetof(MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701, ___useAlphaClip_8)); }
inline bool get_useAlphaClip_8() const { return ___useAlphaClip_8; }
inline bool* get_address_of_useAlphaClip_8() { return &___useAlphaClip_8; }
inline void set_useAlphaClip_8(bool value)
{
___useAlphaClip_8 = value;
}
inline static int32_t get_offset_of_colorMask_9() { return static_cast<int32_t>(offsetof(MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701, ___colorMask_9)); }
inline int32_t get_colorMask_9() const { return ___colorMask_9; }
inline int32_t* get_address_of_colorMask_9() { return &___colorMask_9; }
inline void set_colorMask_9(int32_t value)
{
___colorMask_9 = value;
}
};
// UnityEngine.XR.ARKit.ARKitCameraSubsystem
struct ARKitCameraSubsystem_t60568A6D41C4421316052C06185DC95BA291F614 : public XRCameraSubsystem_t60344763BCE87679E570A4AD0BB068B74DBF20AF
{
public:
public:
};
// UnityEngine.XR.ARKit.ARKitSessionSubsystem
struct ARKitSessionSubsystem_tD9267F6454E65E2C795C8CAF65C9CCB0BBE1636A : public XRSessionSubsystem_t9B9C16B4BDB611559FB6FA728BE399001E47EFF0
{
public:
public:
};
struct ARKitSessionSubsystem_tD9267F6454E65E2C795C8CAF65C9CCB0BBE1636A_StaticFields
{
public:
// UnityEngine.XR.ARKit.ARKitSessionSubsystem_NativeApi_OnAsyncConversionCompleteDelegate UnityEngine.XR.ARKit.ARKitSessionSubsystem::s_OnAsyncWorldMapCompleted
OnAsyncConversionCompleteDelegate_t841FB5BE19010FE3AFBEDEA37C52A468755B19FF * ___s_OnAsyncWorldMapCompleted_1;
public:
inline static int32_t get_offset_of_s_OnAsyncWorldMapCompleted_1() { return static_cast<int32_t>(offsetof(ARKitSessionSubsystem_tD9267F6454E65E2C795C8CAF65C9CCB0BBE1636A_StaticFields, ___s_OnAsyncWorldMapCompleted_1)); }
inline OnAsyncConversionCompleteDelegate_t841FB5BE19010FE3AFBEDEA37C52A468755B19FF * get_s_OnAsyncWorldMapCompleted_1() const { return ___s_OnAsyncWorldMapCompleted_1; }
inline OnAsyncConversionCompleteDelegate_t841FB5BE19010FE3AFBEDEA37C52A468755B19FF ** get_address_of_s_OnAsyncWorldMapCompleted_1() { return &___s_OnAsyncWorldMapCompleted_1; }
inline void set_s_OnAsyncWorldMapCompleted_1(OnAsyncConversionCompleteDelegate_t841FB5BE19010FE3AFBEDEA37C52A468755B19FF * value)
{
___s_OnAsyncWorldMapCompleted_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_OnAsyncWorldMapCompleted_1), (void*)value);
}
};
// UnityEngine.XR.ARSubsystems.BoundedPlane
struct BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.BoundedPlane::m_TrackableId
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 ___m_TrackableId_0;
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.BoundedPlane::m_SubsumedById
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 ___m_SubsumedById_1;
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.BoundedPlane::m_Center
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Center_2;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.BoundedPlane::m_Pose
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_Pose_3;
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.BoundedPlane::m_Size
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Size_4;
// UnityEngine.XR.ARSubsystems.PlaneAlignment UnityEngine.XR.ARSubsystems.BoundedPlane::m_Alignment
int32_t ___m_Alignment_5;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.BoundedPlane::m_TrackingState
int32_t ___m_TrackingState_6;
// System.IntPtr UnityEngine.XR.ARSubsystems.BoundedPlane::m_NativePtr
intptr_t ___m_NativePtr_7;
public:
inline static int32_t get_offset_of_m_TrackableId_0() { return static_cast<int32_t>(offsetof(BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227, ___m_TrackableId_0)); }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 get_m_TrackableId_0() const { return ___m_TrackableId_0; }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 * get_address_of_m_TrackableId_0() { return &___m_TrackableId_0; }
inline void set_m_TrackableId_0(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 value)
{
___m_TrackableId_0 = value;
}
inline static int32_t get_offset_of_m_SubsumedById_1() { return static_cast<int32_t>(offsetof(BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227, ___m_SubsumedById_1)); }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 get_m_SubsumedById_1() const { return ___m_SubsumedById_1; }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 * get_address_of_m_SubsumedById_1() { return &___m_SubsumedById_1; }
inline void set_m_SubsumedById_1(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 value)
{
___m_SubsumedById_1 = value;
}
inline static int32_t get_offset_of_m_Center_2() { return static_cast<int32_t>(offsetof(BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227, ___m_Center_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Center_2() const { return ___m_Center_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Center_2() { return &___m_Center_2; }
inline void set_m_Center_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Center_2 = value;
}
inline static int32_t get_offset_of_m_Pose_3() { return static_cast<int32_t>(offsetof(BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227, ___m_Pose_3)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_Pose_3() const { return ___m_Pose_3; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_Pose_3() { return &___m_Pose_3; }
inline void set_m_Pose_3(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___m_Pose_3 = value;
}
inline static int32_t get_offset_of_m_Size_4() { return static_cast<int32_t>(offsetof(BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227, ___m_Size_4)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Size_4() const { return ___m_Size_4; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Size_4() { return &___m_Size_4; }
inline void set_m_Size_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Size_4 = value;
}
inline static int32_t get_offset_of_m_Alignment_5() { return static_cast<int32_t>(offsetof(BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227, ___m_Alignment_5)); }
inline int32_t get_m_Alignment_5() const { return ___m_Alignment_5; }
inline int32_t* get_address_of_m_Alignment_5() { return &___m_Alignment_5; }
inline void set_m_Alignment_5(int32_t value)
{
___m_Alignment_5 = value;
}
inline static int32_t get_offset_of_m_TrackingState_6() { return static_cast<int32_t>(offsetof(BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227, ___m_TrackingState_6)); }
inline int32_t get_m_TrackingState_6() const { return ___m_TrackingState_6; }
inline int32_t* get_address_of_m_TrackingState_6() { return &___m_TrackingState_6; }
inline void set_m_TrackingState_6(int32_t value)
{
___m_TrackingState_6 = value;
}
inline static int32_t get_offset_of_m_NativePtr_7() { return static_cast<int32_t>(offsetof(BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227, ___m_NativePtr_7)); }
inline intptr_t get_m_NativePtr_7() const { return ___m_NativePtr_7; }
inline intptr_t* get_address_of_m_NativePtr_7() { return &___m_NativePtr_7; }
inline void set_m_NativePtr_7(intptr_t value)
{
___m_NativePtr_7 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor_Cinfo
struct Cinfo_t1EA8BEDEF7B4AF8E7065D4173F829D5C3C09F913
{
public:
// System.String UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor_Cinfo::id
String_t* ___id_0;
// System.Type UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor_Cinfo::implementationType
Type_t * ___implementationType_1;
// UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor_Capabilities UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor_Cinfo::<capabilities>k__BackingField
int32_t ___U3CcapabilitiesU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_id_0() { return static_cast<int32_t>(offsetof(Cinfo_t1EA8BEDEF7B4AF8E7065D4173F829D5C3C09F913, ___id_0)); }
inline String_t* get_id_0() const { return ___id_0; }
inline String_t** get_address_of_id_0() { return &___id_0; }
inline void set_id_0(String_t* value)
{
___id_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___id_0), (void*)value);
}
inline static int32_t get_offset_of_implementationType_1() { return static_cast<int32_t>(offsetof(Cinfo_t1EA8BEDEF7B4AF8E7065D4173F829D5C3C09F913, ___implementationType_1)); }
inline Type_t * get_implementationType_1() const { return ___implementationType_1; }
inline Type_t ** get_address_of_implementationType_1() { return &___implementationType_1; }
inline void set_implementationType_1(Type_t * value)
{
___implementationType_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___implementationType_1), (void*)value);
}
inline static int32_t get_offset_of_U3CcapabilitiesU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(Cinfo_t1EA8BEDEF7B4AF8E7065D4173F829D5C3C09F913, ___U3CcapabilitiesU3Ek__BackingField_2)); }
inline int32_t get_U3CcapabilitiesU3Ek__BackingField_2() const { return ___U3CcapabilitiesU3Ek__BackingField_2; }
inline int32_t* get_address_of_U3CcapabilitiesU3Ek__BackingField_2() { return &___U3CcapabilitiesU3Ek__BackingField_2; }
inline void set_U3CcapabilitiesU3Ek__BackingField_2(int32_t value)
{
___U3CcapabilitiesU3Ek__BackingField_2 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo
struct Cinfo_t1EA8BEDEF7B4AF8E7065D4173F829D5C3C09F913_marshaled_pinvoke
{
char* ___id_0;
Type_t * ___implementationType_1;
int32_t ___U3CcapabilitiesU3Ek__BackingField_2;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo
struct Cinfo_t1EA8BEDEF7B4AF8E7065D4173F829D5C3C09F913_marshaled_com
{
Il2CppChar* ___id_0;
Type_t * ___implementationType_1;
int32_t ___U3CcapabilitiesU3Ek__BackingField_2;
};
// UnityEngine.XR.ARSubsystems.XRPointCloud
struct XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRPointCloud::m_TrackableId
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 ___m_TrackableId_0;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRPointCloud::m_Pose
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_Pose_1;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRPointCloud::m_TrackingState
int32_t ___m_TrackingState_2;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRPointCloud::m_NativePtr
intptr_t ___m_NativePtr_3;
public:
inline static int32_t get_offset_of_m_TrackableId_0() { return static_cast<int32_t>(offsetof(XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0, ___m_TrackableId_0)); }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 get_m_TrackableId_0() const { return ___m_TrackableId_0; }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 * get_address_of_m_TrackableId_0() { return &___m_TrackableId_0; }
inline void set_m_TrackableId_0(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 value)
{
___m_TrackableId_0 = value;
}
inline static int32_t get_offset_of_m_Pose_1() { return static_cast<int32_t>(offsetof(XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0, ___m_Pose_1)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_Pose_1() const { return ___m_Pose_1; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_Pose_1() { return &___m_Pose_1; }
inline void set_m_Pose_1(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___m_Pose_1 = value;
}
inline static int32_t get_offset_of_m_TrackingState_2() { return static_cast<int32_t>(offsetof(XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0, ___m_TrackingState_2)); }
inline int32_t get_m_TrackingState_2() const { return ___m_TrackingState_2; }
inline int32_t* get_address_of_m_TrackingState_2() { return &___m_TrackingState_2; }
inline void set_m_TrackingState_2(int32_t value)
{
___m_TrackingState_2 = value;
}
inline static int32_t get_offset_of_m_NativePtr_3() { return static_cast<int32_t>(offsetof(XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0, ___m_NativePtr_3)); }
inline intptr_t get_m_NativePtr_3() const { return ___m_NativePtr_3; }
inline intptr_t* get_address_of_m_NativePtr_3() { return &___m_NativePtr_3; }
inline void set_m_NativePtr_3(intptr_t value)
{
___m_NativePtr_3 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRRaycastHit
struct XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRRaycastHit::m_TrackableId
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 ___m_TrackableId_0;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRRaycastHit::m_Pose
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_Pose_1;
// System.Single UnityEngine.XR.ARSubsystems.XRRaycastHit::m_Distance
float ___m_Distance_2;
// UnityEngine.XR.ARSubsystems.TrackableType UnityEngine.XR.ARSubsystems.XRRaycastHit::m_HitType
int32_t ___m_HitType_3;
public:
inline static int32_t get_offset_of_m_TrackableId_0() { return static_cast<int32_t>(offsetof(XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82, ___m_TrackableId_0)); }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 get_m_TrackableId_0() const { return ___m_TrackableId_0; }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 * get_address_of_m_TrackableId_0() { return &___m_TrackableId_0; }
inline void set_m_TrackableId_0(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 value)
{
___m_TrackableId_0 = value;
}
inline static int32_t get_offset_of_m_Pose_1() { return static_cast<int32_t>(offsetof(XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82, ___m_Pose_1)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_Pose_1() const { return ___m_Pose_1; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_Pose_1() { return &___m_Pose_1; }
inline void set_m_Pose_1(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___m_Pose_1 = value;
}
inline static int32_t get_offset_of_m_Distance_2() { return static_cast<int32_t>(offsetof(XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82, ___m_Distance_2)); }
inline float get_m_Distance_2() const { return ___m_Distance_2; }
inline float* get_address_of_m_Distance_2() { return &___m_Distance_2; }
inline void set_m_Distance_2(float value)
{
___m_Distance_2 = value;
}
inline static int32_t get_offset_of_m_HitType_3() { return static_cast<int32_t>(offsetof(XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82, ___m_HitType_3)); }
inline int32_t get_m_HitType_3() const { return ___m_HitType_3; }
inline int32_t* get_address_of_m_HitType_3() { return &___m_HitType_3; }
inline void set_m_HitType_3(int32_t value)
{
___m_HitType_3 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor
struct XRRaycastSubsystemDescriptor_tDC6E6E465FE3E4D385429760EF0C84832A09A3D7 : public SubsystemDescriptor_1_t27A8F3D552922AA16C799BCC575330BC6DF59F47
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor::<supportsViewportBasedRaycast>k__BackingField
bool ___U3CsupportsViewportBasedRaycastU3Ek__BackingField_2;
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor::<supportsWorldBasedRaycast>k__BackingField
bool ___U3CsupportsWorldBasedRaycastU3Ek__BackingField_3;
// UnityEngine.XR.ARSubsystems.TrackableType UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor::<supportedTrackableTypes>k__BackingField
int32_t ___U3CsupportedTrackableTypesU3Ek__BackingField_4;
public:
inline static int32_t get_offset_of_U3CsupportsViewportBasedRaycastU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(XRRaycastSubsystemDescriptor_tDC6E6E465FE3E4D385429760EF0C84832A09A3D7, ___U3CsupportsViewportBasedRaycastU3Ek__BackingField_2)); }
inline bool get_U3CsupportsViewportBasedRaycastU3Ek__BackingField_2() const { return ___U3CsupportsViewportBasedRaycastU3Ek__BackingField_2; }
inline bool* get_address_of_U3CsupportsViewportBasedRaycastU3Ek__BackingField_2() { return &___U3CsupportsViewportBasedRaycastU3Ek__BackingField_2; }
inline void set_U3CsupportsViewportBasedRaycastU3Ek__BackingField_2(bool value)
{
___U3CsupportsViewportBasedRaycastU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CsupportsWorldBasedRaycastU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(XRRaycastSubsystemDescriptor_tDC6E6E465FE3E4D385429760EF0C84832A09A3D7, ___U3CsupportsWorldBasedRaycastU3Ek__BackingField_3)); }
inline bool get_U3CsupportsWorldBasedRaycastU3Ek__BackingField_3() const { return ___U3CsupportsWorldBasedRaycastU3Ek__BackingField_3; }
inline bool* get_address_of_U3CsupportsWorldBasedRaycastU3Ek__BackingField_3() { return &___U3CsupportsWorldBasedRaycastU3Ek__BackingField_3; }
inline void set_U3CsupportsWorldBasedRaycastU3Ek__BackingField_3(bool value)
{
___U3CsupportsWorldBasedRaycastU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CsupportedTrackableTypesU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(XRRaycastSubsystemDescriptor_tDC6E6E465FE3E4D385429760EF0C84832A09A3D7, ___U3CsupportedTrackableTypesU3Ek__BackingField_4)); }
inline int32_t get_U3CsupportedTrackableTypesU3Ek__BackingField_4() const { return ___U3CsupportedTrackableTypesU3Ek__BackingField_4; }
inline int32_t* get_address_of_U3CsupportedTrackableTypesU3Ek__BackingField_4() { return &___U3CsupportedTrackableTypesU3Ek__BackingField_4; }
inline void set_U3CsupportedTrackableTypesU3Ek__BackingField_4(int32_t value)
{
___U3CsupportedTrackableTypesU3Ek__BackingField_4 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor_Cinfo
struct Cinfo_t4760A1C9784E5D057E5B5D48B3C4C0B905471704
{
public:
// System.String UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor_Cinfo::<id>k__BackingField
String_t* ___U3CidU3Ek__BackingField_0;
// System.Type UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor_Cinfo::<subsystemImplementationType>k__BackingField
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_1;
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor_Cinfo::<supportsViewportBasedRaycast>k__BackingField
bool ___U3CsupportsViewportBasedRaycastU3Ek__BackingField_2;
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor_Cinfo::<supportsWorldBasedRaycast>k__BackingField
bool ___U3CsupportsWorldBasedRaycastU3Ek__BackingField_3;
// UnityEngine.XR.ARSubsystems.TrackableType UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor_Cinfo::<supportedTrackableTypes>k__BackingField
int32_t ___U3CsupportedTrackableTypesU3Ek__BackingField_4;
public:
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Cinfo_t4760A1C9784E5D057E5B5D48B3C4C0B905471704, ___U3CidU3Ek__BackingField_0)); }
inline String_t* get_U3CidU3Ek__BackingField_0() const { return ___U3CidU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CidU3Ek__BackingField_0() { return &___U3CidU3Ek__BackingField_0; }
inline void set_U3CidU3Ek__BackingField_0(String_t* value)
{
___U3CidU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CidU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemImplementationTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(Cinfo_t4760A1C9784E5D057E5B5D48B3C4C0B905471704, ___U3CsubsystemImplementationTypeU3Ek__BackingField_1)); }
inline Type_t * get_U3CsubsystemImplementationTypeU3Ek__BackingField_1() const { return ___U3CsubsystemImplementationTypeU3Ek__BackingField_1; }
inline Type_t ** get_address_of_U3CsubsystemImplementationTypeU3Ek__BackingField_1() { return &___U3CsubsystemImplementationTypeU3Ek__BackingField_1; }
inline void set_U3CsubsystemImplementationTypeU3Ek__BackingField_1(Type_t * value)
{
___U3CsubsystemImplementationTypeU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemImplementationTypeU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CsupportsViewportBasedRaycastU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(Cinfo_t4760A1C9784E5D057E5B5D48B3C4C0B905471704, ___U3CsupportsViewportBasedRaycastU3Ek__BackingField_2)); }
inline bool get_U3CsupportsViewportBasedRaycastU3Ek__BackingField_2() const { return ___U3CsupportsViewportBasedRaycastU3Ek__BackingField_2; }
inline bool* get_address_of_U3CsupportsViewportBasedRaycastU3Ek__BackingField_2() { return &___U3CsupportsViewportBasedRaycastU3Ek__BackingField_2; }
inline void set_U3CsupportsViewportBasedRaycastU3Ek__BackingField_2(bool value)
{
___U3CsupportsViewportBasedRaycastU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CsupportsWorldBasedRaycastU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(Cinfo_t4760A1C9784E5D057E5B5D48B3C4C0B905471704, ___U3CsupportsWorldBasedRaycastU3Ek__BackingField_3)); }
inline bool get_U3CsupportsWorldBasedRaycastU3Ek__BackingField_3() const { return ___U3CsupportsWorldBasedRaycastU3Ek__BackingField_3; }
inline bool* get_address_of_U3CsupportsWorldBasedRaycastU3Ek__BackingField_3() { return &___U3CsupportsWorldBasedRaycastU3Ek__BackingField_3; }
inline void set_U3CsupportsWorldBasedRaycastU3Ek__BackingField_3(bool value)
{
___U3CsupportsWorldBasedRaycastU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CsupportedTrackableTypesU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(Cinfo_t4760A1C9784E5D057E5B5D48B3C4C0B905471704, ___U3CsupportedTrackableTypesU3Ek__BackingField_4)); }
inline int32_t get_U3CsupportedTrackableTypesU3Ek__BackingField_4() const { return ___U3CsupportedTrackableTypesU3Ek__BackingField_4; }
inline int32_t* get_address_of_U3CsupportedTrackableTypesU3Ek__BackingField_4() { return &___U3CsupportedTrackableTypesU3Ek__BackingField_4; }
inline void set_U3CsupportedTrackableTypesU3Ek__BackingField_4(int32_t value)
{
___U3CsupportedTrackableTypesU3Ek__BackingField_4 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo
struct Cinfo_t4760A1C9784E5D057E5B5D48B3C4C0B905471704_marshaled_pinvoke
{
char* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_1;
int32_t ___U3CsupportsViewportBasedRaycastU3Ek__BackingField_2;
int32_t ___U3CsupportsWorldBasedRaycastU3Ek__BackingField_3;
int32_t ___U3CsupportedTrackableTypesU3Ek__BackingField_4;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo
struct Cinfo_t4760A1C9784E5D057E5B5D48B3C4C0B905471704_marshaled_com
{
Il2CppChar* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_1;
int32_t ___U3CsupportsViewportBasedRaycastU3Ek__BackingField_2;
int32_t ___U3CsupportsWorldBasedRaycastU3Ek__BackingField_3;
int32_t ___U3CsupportedTrackableTypesU3Ek__BackingField_4;
};
// UnityEngine.XR.ARSubsystems.XRReferencePoint
struct XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRReferencePoint::m_Id
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 ___m_Id_0;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRReferencePoint::m_Pose
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___m_Pose_1;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRReferencePoint::m_TrackingState
int32_t ___m_TrackingState_2;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRReferencePoint::m_NativePtr
intptr_t ___m_NativePtr_3;
public:
inline static int32_t get_offset_of_m_Id_0() { return static_cast<int32_t>(offsetof(XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9, ___m_Id_0)); }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 get_m_Id_0() const { return ___m_Id_0; }
inline TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 * get_address_of_m_Id_0() { return &___m_Id_0; }
inline void set_m_Id_0(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 value)
{
___m_Id_0 = value;
}
inline static int32_t get_offset_of_m_Pose_1() { return static_cast<int32_t>(offsetof(XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9, ___m_Pose_1)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_m_Pose_1() const { return ___m_Pose_1; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_m_Pose_1() { return &___m_Pose_1; }
inline void set_m_Pose_1(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___m_Pose_1 = value;
}
inline static int32_t get_offset_of_m_TrackingState_2() { return static_cast<int32_t>(offsetof(XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9, ___m_TrackingState_2)); }
inline int32_t get_m_TrackingState_2() const { return ___m_TrackingState_2; }
inline int32_t* get_address_of_m_TrackingState_2() { return &___m_TrackingState_2; }
inline void set_m_TrackingState_2(int32_t value)
{
___m_TrackingState_2 = value;
}
inline static int32_t get_offset_of_m_NativePtr_3() { return static_cast<int32_t>(offsetof(XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9, ___m_NativePtr_3)); }
inline intptr_t get_m_NativePtr_3() const { return ___m_NativePtr_3; }
inline intptr_t* get_address_of_m_NativePtr_3() { return &___m_NativePtr_3; }
inline void set_m_NativePtr_3(intptr_t value)
{
___m_NativePtr_3 = value;
}
};
// UnityEngine.XR.InputFeatureUsage
struct InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C
{
public:
// System.String UnityEngine.XR.InputFeatureUsage::m_Name
String_t* ___m_Name_0;
// UnityEngine.XR.InputFeatureType UnityEngine.XR.InputFeatureUsage::m_InternalType
uint32_t ___m_InternalType_1;
public:
inline static int32_t get_offset_of_m_Name_0() { return static_cast<int32_t>(offsetof(InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C, ___m_Name_0)); }
inline String_t* get_m_Name_0() const { return ___m_Name_0; }
inline String_t** get_address_of_m_Name_0() { return &___m_Name_0; }
inline void set_m_Name_0(String_t* value)
{
___m_Name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Name_0), (void*)value);
}
inline static int32_t get_offset_of_m_InternalType_1() { return static_cast<int32_t>(offsetof(InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C, ___m_InternalType_1)); }
inline uint32_t get_m_InternalType_1() const { return ___m_InternalType_1; }
inline uint32_t* get_address_of_m_InternalType_1() { return &___m_InternalType_1; }
inline void set_m_InternalType_1(uint32_t value)
{
___m_InternalType_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.InputFeatureUsage
struct InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C_marshaled_pinvoke
{
char* ___m_Name_0;
uint32_t ___m_InternalType_1;
};
// Native definition for COM marshalling of UnityEngine.XR.InputFeatureUsage
struct InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C_marshaled_com
{
Il2CppChar* ___m_Name_0;
uint32_t ___m_InternalType_1;
};
// UnityEngine.XR.XRNodeState
struct XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A
{
public:
// UnityEngine.XR.XRNode UnityEngine.XR.XRNodeState::m_Type
int32_t ___m_Type_0;
// UnityEngine.XR.AvailableTrackingData UnityEngine.XR.XRNodeState::m_AvailableFields
int32_t ___m_AvailableFields_1;
// UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_Position
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Position_2;
// UnityEngine.Quaternion UnityEngine.XR.XRNodeState::m_Rotation
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___m_Rotation_3;
// UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_Velocity
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Velocity_4;
// UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_AngularVelocity
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_AngularVelocity_5;
// UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_Acceleration
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Acceleration_6;
// UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_AngularAcceleration
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_AngularAcceleration_7;
// System.Int32 UnityEngine.XR.XRNodeState::m_Tracked
int32_t ___m_Tracked_8;
// System.UInt64 UnityEngine.XR.XRNodeState::m_UniqueID
uint64_t ___m_UniqueID_9;
public:
inline static int32_t get_offset_of_m_Type_0() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_Type_0)); }
inline int32_t get_m_Type_0() const { return ___m_Type_0; }
inline int32_t* get_address_of_m_Type_0() { return &___m_Type_0; }
inline void set_m_Type_0(int32_t value)
{
___m_Type_0 = value;
}
inline static int32_t get_offset_of_m_AvailableFields_1() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_AvailableFields_1)); }
inline int32_t get_m_AvailableFields_1() const { return ___m_AvailableFields_1; }
inline int32_t* get_address_of_m_AvailableFields_1() { return &___m_AvailableFields_1; }
inline void set_m_AvailableFields_1(int32_t value)
{
___m_AvailableFields_1 = value;
}
inline static int32_t get_offset_of_m_Position_2() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_Position_2)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Position_2() const { return ___m_Position_2; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Position_2() { return &___m_Position_2; }
inline void set_m_Position_2(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Position_2 = value;
}
inline static int32_t get_offset_of_m_Rotation_3() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_Rotation_3)); }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_m_Rotation_3() const { return ___m_Rotation_3; }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_m_Rotation_3() { return &___m_Rotation_3; }
inline void set_m_Rotation_3(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value)
{
___m_Rotation_3 = value;
}
inline static int32_t get_offset_of_m_Velocity_4() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_Velocity_4)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Velocity_4() const { return ___m_Velocity_4; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Velocity_4() { return &___m_Velocity_4; }
inline void set_m_Velocity_4(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Velocity_4 = value;
}
inline static int32_t get_offset_of_m_AngularVelocity_5() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_AngularVelocity_5)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_AngularVelocity_5() const { return ___m_AngularVelocity_5; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_AngularVelocity_5() { return &___m_AngularVelocity_5; }
inline void set_m_AngularVelocity_5(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_AngularVelocity_5 = value;
}
inline static int32_t get_offset_of_m_Acceleration_6() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_Acceleration_6)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Acceleration_6() const { return ___m_Acceleration_6; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Acceleration_6() { return &___m_Acceleration_6; }
inline void set_m_Acceleration_6(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Acceleration_6 = value;
}
inline static int32_t get_offset_of_m_AngularAcceleration_7() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_AngularAcceleration_7)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_AngularAcceleration_7() const { return ___m_AngularAcceleration_7; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_AngularAcceleration_7() { return &___m_AngularAcceleration_7; }
inline void set_m_AngularAcceleration_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_AngularAcceleration_7 = value;
}
inline static int32_t get_offset_of_m_Tracked_8() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_Tracked_8)); }
inline int32_t get_m_Tracked_8() const { return ___m_Tracked_8; }
inline int32_t* get_address_of_m_Tracked_8() { return &___m_Tracked_8; }
inline void set_m_Tracked_8(int32_t value)
{
___m_Tracked_8 = value;
}
inline static int32_t get_offset_of_m_UniqueID_9() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_UniqueID_9)); }
inline uint64_t get_m_UniqueID_9() const { return ___m_UniqueID_9; }
inline uint64_t* get_address_of_m_UniqueID_9() { return &___m_UniqueID_9; }
inline void set_m_UniqueID_9(uint64_t value)
{
___m_UniqueID_9 = value;
}
};
// UnityEngine.XR.iOS.ARCamera
struct ARCamera_t1B74DF09B6BC55080382921442125103F2140D46
{
public:
// UnityEngine.Matrix4x4 UnityEngine.XR.iOS.ARCamera::worldTransform
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___worldTransform_0;
// UnityEngine.Vector3 UnityEngine.XR.iOS.ARCamera::eulerAngles
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___eulerAngles_1;
// UnityEngine.XR.iOS.ARTrackingQuality UnityEngine.XR.iOS.ARCamera::trackingQuality
int64_t ___trackingQuality_2;
// UnityEngine.Vector3 UnityEngine.XR.iOS.ARCamera::intrinsics_row1
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___intrinsics_row1_3;
// UnityEngine.Vector3 UnityEngine.XR.iOS.ARCamera::intrinsics_row2
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___intrinsics_row2_4;
// UnityEngine.Vector3 UnityEngine.XR.iOS.ARCamera::intrinsics_row3
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___intrinsics_row3_5;
// UnityEngine.XR.iOS.ARSize UnityEngine.XR.iOS.ARCamera::imageResolution
ARSize_t8C8DA70FE8A29C830639F66636C653E0CC5C7FCA ___imageResolution_6;
public:
inline static int32_t get_offset_of_worldTransform_0() { return static_cast<int32_t>(offsetof(ARCamera_t1B74DF09B6BC55080382921442125103F2140D46, ___worldTransform_0)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_worldTransform_0() const { return ___worldTransform_0; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_worldTransform_0() { return &___worldTransform_0; }
inline void set_worldTransform_0(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___worldTransform_0 = value;
}
inline static int32_t get_offset_of_eulerAngles_1() { return static_cast<int32_t>(offsetof(ARCamera_t1B74DF09B6BC55080382921442125103F2140D46, ___eulerAngles_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_eulerAngles_1() const { return ___eulerAngles_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_eulerAngles_1() { return &___eulerAngles_1; }
inline void set_eulerAngles_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___eulerAngles_1 = value;
}
inline static int32_t get_offset_of_trackingQuality_2() { return static_cast<int32_t>(offsetof(ARCamera_t1B74DF09B6BC55080382921442125103F2140D46, ___trackingQuality_2)); }
inline int64_t get_trackingQuality_2() const { return ___trackingQuality_2; }
inline int64_t* get_address_of_trackingQuality_2() { return &___trackingQuality_2; }
inline void set_trackingQuality_2(int64_t value)
{
___trackingQuality_2 = value;
}
inline static int32_t get_offset_of_intrinsics_row1_3() { return static_cast<int32_t>(offsetof(ARCamera_t1B74DF09B6BC55080382921442125103F2140D46, ___intrinsics_row1_3)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_intrinsics_row1_3() const { return ___intrinsics_row1_3; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_intrinsics_row1_3() { return &___intrinsics_row1_3; }
inline void set_intrinsics_row1_3(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___intrinsics_row1_3 = value;
}
inline static int32_t get_offset_of_intrinsics_row2_4() { return static_cast<int32_t>(offsetof(ARCamera_t1B74DF09B6BC55080382921442125103F2140D46, ___intrinsics_row2_4)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_intrinsics_row2_4() const { return ___intrinsics_row2_4; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_intrinsics_row2_4() { return &___intrinsics_row2_4; }
inline void set_intrinsics_row2_4(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___intrinsics_row2_4 = value;
}
inline static int32_t get_offset_of_intrinsics_row3_5() { return static_cast<int32_t>(offsetof(ARCamera_t1B74DF09B6BC55080382921442125103F2140D46, ___intrinsics_row3_5)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_intrinsics_row3_5() const { return ___intrinsics_row3_5; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_intrinsics_row3_5() { return &___intrinsics_row3_5; }
inline void set_intrinsics_row3_5(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___intrinsics_row3_5 = value;
}
inline static int32_t get_offset_of_imageResolution_6() { return static_cast<int32_t>(offsetof(ARCamera_t1B74DF09B6BC55080382921442125103F2140D46, ___imageResolution_6)); }
inline ARSize_t8C8DA70FE8A29C830639F66636C653E0CC5C7FCA get_imageResolution_6() const { return ___imageResolution_6; }
inline ARSize_t8C8DA70FE8A29C830639F66636C653E0CC5C7FCA * get_address_of_imageResolution_6() { return &___imageResolution_6; }
inline void set_imageResolution_6(ARSize_t8C8DA70FE8A29C830639F66636C653E0CC5C7FCA value)
{
___imageResolution_6 = value;
}
};
// UnityEngine.XR.iOS.ARFaceGeometry
struct ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2 : public RuntimeObject
{
public:
// UnityEngine.XR.iOS.UnityARFaceGeometry UnityEngine.XR.iOS.ARFaceGeometry::<uFaceGeometry>k__BackingField
UnityARFaceGeometry_t15F03281F3361400331718DF03DF7DA0DD5501E5 ___U3CuFaceGeometryU3Ek__BackingField_0;
// UnityEngine.Vector3[] UnityEngine.XR.iOS.ARFaceGeometry::m_Vertices
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___m_Vertices_1;
// UnityEngine.Vector2[] UnityEngine.XR.iOS.ARFaceGeometry::m_TextureCoordinates
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___m_TextureCoordinates_2;
// System.Int32[] UnityEngine.XR.iOS.ARFaceGeometry::m_TriangleIndices
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___m_TriangleIndices_3;
// System.Single[] UnityEngine.XR.iOS.ARFaceGeometry::m_WorkVertices
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ___m_WorkVertices_4;
// System.Single[] UnityEngine.XR.iOS.ARFaceGeometry::m_WorkTextureCoordinates
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ___m_WorkTextureCoordinates_5;
// System.Int16[] UnityEngine.XR.iOS.ARFaceGeometry::m_WorkIndices
Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* ___m_WorkIndices_6;
// System.Int32 UnityEngine.XR.iOS.ARFaceGeometry::m_VertexCount
int32_t ___m_VertexCount_7;
// System.Int32 UnityEngine.XR.iOS.ARFaceGeometry::m_TextureCoordinateCount
int32_t ___m_TextureCoordinateCount_8;
// System.Int32 UnityEngine.XR.iOS.ARFaceGeometry::m_TriangleCount
int32_t ___m_TriangleCount_9;
// System.Int32 UnityEngine.XR.iOS.ARFaceGeometry::m_IndexCount
int32_t ___m_IndexCount_10;
// System.Int32 UnityEngine.XR.iOS.ARFaceGeometry::m_WorkVertexCount
int32_t ___m_WorkVertexCount_11;
// System.Int32 UnityEngine.XR.iOS.ARFaceGeometry::m_WorkTextureCoordinateCount
int32_t ___m_WorkTextureCoordinateCount_12;
public:
inline static int32_t get_offset_of_U3CuFaceGeometryU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2, ___U3CuFaceGeometryU3Ek__BackingField_0)); }
inline UnityARFaceGeometry_t15F03281F3361400331718DF03DF7DA0DD5501E5 get_U3CuFaceGeometryU3Ek__BackingField_0() const { return ___U3CuFaceGeometryU3Ek__BackingField_0; }
inline UnityARFaceGeometry_t15F03281F3361400331718DF03DF7DA0DD5501E5 * get_address_of_U3CuFaceGeometryU3Ek__BackingField_0() { return &___U3CuFaceGeometryU3Ek__BackingField_0; }
inline void set_U3CuFaceGeometryU3Ek__BackingField_0(UnityARFaceGeometry_t15F03281F3361400331718DF03DF7DA0DD5501E5 value)
{
___U3CuFaceGeometryU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_m_Vertices_1() { return static_cast<int32_t>(offsetof(ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2, ___m_Vertices_1)); }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get_m_Vertices_1() const { return ___m_Vertices_1; }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of_m_Vertices_1() { return &___m_Vertices_1; }
inline void set_m_Vertices_1(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value)
{
___m_Vertices_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Vertices_1), (void*)value);
}
inline static int32_t get_offset_of_m_TextureCoordinates_2() { return static_cast<int32_t>(offsetof(ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2, ___m_TextureCoordinates_2)); }
inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* get_m_TextureCoordinates_2() const { return ___m_TextureCoordinates_2; }
inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6** get_address_of_m_TextureCoordinates_2() { return &___m_TextureCoordinates_2; }
inline void set_m_TextureCoordinates_2(Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* value)
{
___m_TextureCoordinates_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_TextureCoordinates_2), (void*)value);
}
inline static int32_t get_offset_of_m_TriangleIndices_3() { return static_cast<int32_t>(offsetof(ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2, ___m_TriangleIndices_3)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_m_TriangleIndices_3() const { return ___m_TriangleIndices_3; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_m_TriangleIndices_3() { return &___m_TriangleIndices_3; }
inline void set_m_TriangleIndices_3(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___m_TriangleIndices_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_TriangleIndices_3), (void*)value);
}
inline static int32_t get_offset_of_m_WorkVertices_4() { return static_cast<int32_t>(offsetof(ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2, ___m_WorkVertices_4)); }
inline SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* get_m_WorkVertices_4() const { return ___m_WorkVertices_4; }
inline SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5** get_address_of_m_WorkVertices_4() { return &___m_WorkVertices_4; }
inline void set_m_WorkVertices_4(SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* value)
{
___m_WorkVertices_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_WorkVertices_4), (void*)value);
}
inline static int32_t get_offset_of_m_WorkTextureCoordinates_5() { return static_cast<int32_t>(offsetof(ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2, ___m_WorkTextureCoordinates_5)); }
inline SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* get_m_WorkTextureCoordinates_5() const { return ___m_WorkTextureCoordinates_5; }
inline SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5** get_address_of_m_WorkTextureCoordinates_5() { return &___m_WorkTextureCoordinates_5; }
inline void set_m_WorkTextureCoordinates_5(SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* value)
{
___m_WorkTextureCoordinates_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_WorkTextureCoordinates_5), (void*)value);
}
inline static int32_t get_offset_of_m_WorkIndices_6() { return static_cast<int32_t>(offsetof(ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2, ___m_WorkIndices_6)); }
inline Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* get_m_WorkIndices_6() const { return ___m_WorkIndices_6; }
inline Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28** get_address_of_m_WorkIndices_6() { return &___m_WorkIndices_6; }
inline void set_m_WorkIndices_6(Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* value)
{
___m_WorkIndices_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_WorkIndices_6), (void*)value);
}
inline static int32_t get_offset_of_m_VertexCount_7() { return static_cast<int32_t>(offsetof(ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2, ___m_VertexCount_7)); }
inline int32_t get_m_VertexCount_7() const { return ___m_VertexCount_7; }
inline int32_t* get_address_of_m_VertexCount_7() { return &___m_VertexCount_7; }
inline void set_m_VertexCount_7(int32_t value)
{
___m_VertexCount_7 = value;
}
inline static int32_t get_offset_of_m_TextureCoordinateCount_8() { return static_cast<int32_t>(offsetof(ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2, ___m_TextureCoordinateCount_8)); }
inline int32_t get_m_TextureCoordinateCount_8() const { return ___m_TextureCoordinateCount_8; }
inline int32_t* get_address_of_m_TextureCoordinateCount_8() { return &___m_TextureCoordinateCount_8; }
inline void set_m_TextureCoordinateCount_8(int32_t value)
{
___m_TextureCoordinateCount_8 = value;
}
inline static int32_t get_offset_of_m_TriangleCount_9() { return static_cast<int32_t>(offsetof(ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2, ___m_TriangleCount_9)); }
inline int32_t get_m_TriangleCount_9() const { return ___m_TriangleCount_9; }
inline int32_t* get_address_of_m_TriangleCount_9() { return &___m_TriangleCount_9; }
inline void set_m_TriangleCount_9(int32_t value)
{
___m_TriangleCount_9 = value;
}
inline static int32_t get_offset_of_m_IndexCount_10() { return static_cast<int32_t>(offsetof(ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2, ___m_IndexCount_10)); }
inline int32_t get_m_IndexCount_10() const { return ___m_IndexCount_10; }
inline int32_t* get_address_of_m_IndexCount_10() { return &___m_IndexCount_10; }
inline void set_m_IndexCount_10(int32_t value)
{
___m_IndexCount_10 = value;
}
inline static int32_t get_offset_of_m_WorkVertexCount_11() { return static_cast<int32_t>(offsetof(ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2, ___m_WorkVertexCount_11)); }
inline int32_t get_m_WorkVertexCount_11() const { return ___m_WorkVertexCount_11; }
inline int32_t* get_address_of_m_WorkVertexCount_11() { return &___m_WorkVertexCount_11; }
inline void set_m_WorkVertexCount_11(int32_t value)
{
___m_WorkVertexCount_11 = value;
}
inline static int32_t get_offset_of_m_WorkTextureCoordinateCount_12() { return static_cast<int32_t>(offsetof(ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2, ___m_WorkTextureCoordinateCount_12)); }
inline int32_t get_m_WorkTextureCoordinateCount_12() const { return ___m_WorkTextureCoordinateCount_12; }
inline int32_t* get_address_of_m_WorkTextureCoordinateCount_12() { return &___m_WorkTextureCoordinateCount_12; }
inline void set_m_WorkTextureCoordinateCount_12(int32_t value)
{
___m_WorkTextureCoordinateCount_12 = value;
}
};
// UnityEngine.XR.iOS.ARHitTestResult
struct ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E
{
public:
// UnityEngine.XR.iOS.ARHitTestResultType UnityEngine.XR.iOS.ARHitTestResult::type
int64_t ___type_0;
// System.Double UnityEngine.XR.iOS.ARHitTestResult::distance
double ___distance_1;
// UnityEngine.Matrix4x4 UnityEngine.XR.iOS.ARHitTestResult::localTransform
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___localTransform_2;
// UnityEngine.Matrix4x4 UnityEngine.XR.iOS.ARHitTestResult::worldTransform
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___worldTransform_3;
// System.String UnityEngine.XR.iOS.ARHitTestResult::anchorIdentifier
String_t* ___anchorIdentifier_4;
// System.Boolean UnityEngine.XR.iOS.ARHitTestResult::isValid
bool ___isValid_5;
public:
inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E, ___type_0)); }
inline int64_t get_type_0() const { return ___type_0; }
inline int64_t* get_address_of_type_0() { return &___type_0; }
inline void set_type_0(int64_t value)
{
___type_0 = value;
}
inline static int32_t get_offset_of_distance_1() { return static_cast<int32_t>(offsetof(ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E, ___distance_1)); }
inline double get_distance_1() const { return ___distance_1; }
inline double* get_address_of_distance_1() { return &___distance_1; }
inline void set_distance_1(double value)
{
___distance_1 = value;
}
inline static int32_t get_offset_of_localTransform_2() { return static_cast<int32_t>(offsetof(ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E, ___localTransform_2)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_localTransform_2() const { return ___localTransform_2; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_localTransform_2() { return &___localTransform_2; }
inline void set_localTransform_2(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___localTransform_2 = value;
}
inline static int32_t get_offset_of_worldTransform_3() { return static_cast<int32_t>(offsetof(ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E, ___worldTransform_3)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_worldTransform_3() const { return ___worldTransform_3; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_worldTransform_3() { return &___worldTransform_3; }
inline void set_worldTransform_3(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___worldTransform_3 = value;
}
inline static int32_t get_offset_of_anchorIdentifier_4() { return static_cast<int32_t>(offsetof(ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E, ___anchorIdentifier_4)); }
inline String_t* get_anchorIdentifier_4() const { return ___anchorIdentifier_4; }
inline String_t** get_address_of_anchorIdentifier_4() { return &___anchorIdentifier_4; }
inline void set_anchorIdentifier_4(String_t* value)
{
___anchorIdentifier_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___anchorIdentifier_4), (void*)value);
}
inline static int32_t get_offset_of_isValid_5() { return static_cast<int32_t>(offsetof(ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E, ___isValid_5)); }
inline bool get_isValid_5() const { return ___isValid_5; }
inline bool* get_address_of_isValid_5() { return &___isValid_5; }
inline void set_isValid_5(bool value)
{
___isValid_5 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.iOS.ARHitTestResult
struct ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E_marshaled_pinvoke
{
int64_t ___type_0;
double ___distance_1;
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___localTransform_2;
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___worldTransform_3;
char* ___anchorIdentifier_4;
int32_t ___isValid_5;
};
// Native definition for COM marshalling of UnityEngine.XR.iOS.ARHitTestResult
struct ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E_marshaled_com
{
int64_t ___type_0;
double ___distance_1;
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___localTransform_2;
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___worldTransform_3;
Il2CppChar* ___anchorIdentifier_4;
int32_t ___isValid_5;
};
// UnityEngine.XR.iOS.ARKitFaceTrackingConfiguration
struct ARKitFaceTrackingConfiguration_t8035DE78DED2F8B4246159EE3E5882142A1D5603
{
public:
// UnityEngine.XR.iOS.UnityARAlignment UnityEngine.XR.iOS.ARKitFaceTrackingConfiguration::alignment
int32_t ___alignment_0;
// System.Boolean UnityEngine.XR.iOS.ARKitFaceTrackingConfiguration::enableLightEstimation
bool ___enableLightEstimation_1;
// System.IntPtr UnityEngine.XR.iOS.ARKitFaceTrackingConfiguration::videoFormat
intptr_t ___videoFormat_2;
public:
inline static int32_t get_offset_of_alignment_0() { return static_cast<int32_t>(offsetof(ARKitFaceTrackingConfiguration_t8035DE78DED2F8B4246159EE3E5882142A1D5603, ___alignment_0)); }
inline int32_t get_alignment_0() const { return ___alignment_0; }
inline int32_t* get_address_of_alignment_0() { return &___alignment_0; }
inline void set_alignment_0(int32_t value)
{
___alignment_0 = value;
}
inline static int32_t get_offset_of_enableLightEstimation_1() { return static_cast<int32_t>(offsetof(ARKitFaceTrackingConfiguration_t8035DE78DED2F8B4246159EE3E5882142A1D5603, ___enableLightEstimation_1)); }
inline bool get_enableLightEstimation_1() const { return ___enableLightEstimation_1; }
inline bool* get_address_of_enableLightEstimation_1() { return &___enableLightEstimation_1; }
inline void set_enableLightEstimation_1(bool value)
{
___enableLightEstimation_1 = value;
}
inline static int32_t get_offset_of_videoFormat_2() { return static_cast<int32_t>(offsetof(ARKitFaceTrackingConfiguration_t8035DE78DED2F8B4246159EE3E5882142A1D5603, ___videoFormat_2)); }
inline intptr_t get_videoFormat_2() const { return ___videoFormat_2; }
inline intptr_t* get_address_of_videoFormat_2() { return &___videoFormat_2; }
inline void set_videoFormat_2(intptr_t value)
{
___videoFormat_2 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.iOS.ARKitFaceTrackingConfiguration
struct ARKitFaceTrackingConfiguration_t8035DE78DED2F8B4246159EE3E5882142A1D5603_marshaled_pinvoke
{
int32_t ___alignment_0;
int32_t ___enableLightEstimation_1;
intptr_t ___videoFormat_2;
};
// Native definition for COM marshalling of UnityEngine.XR.iOS.ARKitFaceTrackingConfiguration
struct ARKitFaceTrackingConfiguration_t8035DE78DED2F8B4246159EE3E5882142A1D5603_marshaled_com
{
int32_t ___alignment_0;
int32_t ___enableLightEstimation_1;
intptr_t ___videoFormat_2;
};
// UnityEngine.XR.iOS.ARKitObjectScanningSessionConfiguration
struct ARKitObjectScanningSessionConfiguration_t6779D204B92476DFD7C3A8A16FC50A1E10333D6E
{
public:
// UnityEngine.XR.iOS.UnityARAlignment UnityEngine.XR.iOS.ARKitObjectScanningSessionConfiguration::alignment
int32_t ___alignment_0;
// UnityEngine.XR.iOS.UnityARPlaneDetection UnityEngine.XR.iOS.ARKitObjectScanningSessionConfiguration::planeDetection
int32_t ___planeDetection_1;
// System.Boolean UnityEngine.XR.iOS.ARKitObjectScanningSessionConfiguration::getPointCloudData
bool ___getPointCloudData_2;
// System.Boolean UnityEngine.XR.iOS.ARKitObjectScanningSessionConfiguration::enableLightEstimation
bool ___enableLightEstimation_3;
// System.Boolean UnityEngine.XR.iOS.ARKitObjectScanningSessionConfiguration::enableAutoFocus
bool ___enableAutoFocus_4;
public:
inline static int32_t get_offset_of_alignment_0() { return static_cast<int32_t>(offsetof(ARKitObjectScanningSessionConfiguration_t6779D204B92476DFD7C3A8A16FC50A1E10333D6E, ___alignment_0)); }
inline int32_t get_alignment_0() const { return ___alignment_0; }
inline int32_t* get_address_of_alignment_0() { return &___alignment_0; }
inline void set_alignment_0(int32_t value)
{
___alignment_0 = value;
}
inline static int32_t get_offset_of_planeDetection_1() { return static_cast<int32_t>(offsetof(ARKitObjectScanningSessionConfiguration_t6779D204B92476DFD7C3A8A16FC50A1E10333D6E, ___planeDetection_1)); }
inline int32_t get_planeDetection_1() const { return ___planeDetection_1; }
inline int32_t* get_address_of_planeDetection_1() { return &___planeDetection_1; }
inline void set_planeDetection_1(int32_t value)
{
___planeDetection_1 = value;
}
inline static int32_t get_offset_of_getPointCloudData_2() { return static_cast<int32_t>(offsetof(ARKitObjectScanningSessionConfiguration_t6779D204B92476DFD7C3A8A16FC50A1E10333D6E, ___getPointCloudData_2)); }
inline bool get_getPointCloudData_2() const { return ___getPointCloudData_2; }
inline bool* get_address_of_getPointCloudData_2() { return &___getPointCloudData_2; }
inline void set_getPointCloudData_2(bool value)
{
___getPointCloudData_2 = value;
}
inline static int32_t get_offset_of_enableLightEstimation_3() { return static_cast<int32_t>(offsetof(ARKitObjectScanningSessionConfiguration_t6779D204B92476DFD7C3A8A16FC50A1E10333D6E, ___enableLightEstimation_3)); }
inline bool get_enableLightEstimation_3() const { return ___enableLightEstimation_3; }
inline bool* get_address_of_enableLightEstimation_3() { return &___enableLightEstimation_3; }
inline void set_enableLightEstimation_3(bool value)
{
___enableLightEstimation_3 = value;
}
inline static int32_t get_offset_of_enableAutoFocus_4() { return static_cast<int32_t>(offsetof(ARKitObjectScanningSessionConfiguration_t6779D204B92476DFD7C3A8A16FC50A1E10333D6E, ___enableAutoFocus_4)); }
inline bool get_enableAutoFocus_4() const { return ___enableAutoFocus_4; }
inline bool* get_address_of_enableAutoFocus_4() { return &___enableAutoFocus_4; }
inline void set_enableAutoFocus_4(bool value)
{
___enableAutoFocus_4 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.iOS.ARKitObjectScanningSessionConfiguration
struct ARKitObjectScanningSessionConfiguration_t6779D204B92476DFD7C3A8A16FC50A1E10333D6E_marshaled_pinvoke
{
int32_t ___alignment_0;
int32_t ___planeDetection_1;
int32_t ___getPointCloudData_2;
int32_t ___enableLightEstimation_3;
int32_t ___enableAutoFocus_4;
};
// Native definition for COM marshalling of UnityEngine.XR.iOS.ARKitObjectScanningSessionConfiguration
struct ARKitObjectScanningSessionConfiguration_t6779D204B92476DFD7C3A8A16FC50A1E10333D6E_marshaled_com
{
int32_t ___alignment_0;
int32_t ___planeDetection_1;
int32_t ___getPointCloudData_2;
int32_t ___enableLightEstimation_3;
int32_t ___enableAutoFocus_4;
};
// UnityEngine.XR.iOS.ARKitSessionConfiguration
struct ARKitSessionConfiguration_t31897B32F8D88E367E2736CBCF953A40624A5548
{
public:
// UnityEngine.XR.iOS.UnityARAlignment UnityEngine.XR.iOS.ARKitSessionConfiguration::alignment
int32_t ___alignment_0;
// System.Boolean UnityEngine.XR.iOS.ARKitSessionConfiguration::getPointCloudData
bool ___getPointCloudData_1;
// System.Boolean UnityEngine.XR.iOS.ARKitSessionConfiguration::enableLightEstimation
bool ___enableLightEstimation_2;
public:
inline static int32_t get_offset_of_alignment_0() { return static_cast<int32_t>(offsetof(ARKitSessionConfiguration_t31897B32F8D88E367E2736CBCF953A40624A5548, ___alignment_0)); }
inline int32_t get_alignment_0() const { return ___alignment_0; }
inline int32_t* get_address_of_alignment_0() { return &___alignment_0; }
inline void set_alignment_0(int32_t value)
{
___alignment_0 = value;
}
inline static int32_t get_offset_of_getPointCloudData_1() { return static_cast<int32_t>(offsetof(ARKitSessionConfiguration_t31897B32F8D88E367E2736CBCF953A40624A5548, ___getPointCloudData_1)); }
inline bool get_getPointCloudData_1() const { return ___getPointCloudData_1; }
inline bool* get_address_of_getPointCloudData_1() { return &___getPointCloudData_1; }
inline void set_getPointCloudData_1(bool value)
{
___getPointCloudData_1 = value;
}
inline static int32_t get_offset_of_enableLightEstimation_2() { return static_cast<int32_t>(offsetof(ARKitSessionConfiguration_t31897B32F8D88E367E2736CBCF953A40624A5548, ___enableLightEstimation_2)); }
inline bool get_enableLightEstimation_2() const { return ___enableLightEstimation_2; }
inline bool* get_address_of_enableLightEstimation_2() { return &___enableLightEstimation_2; }
inline void set_enableLightEstimation_2(bool value)
{
___enableLightEstimation_2 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.iOS.ARKitSessionConfiguration
struct ARKitSessionConfiguration_t31897B32F8D88E367E2736CBCF953A40624A5548_marshaled_pinvoke
{
int32_t ___alignment_0;
int32_t ___getPointCloudData_1;
int32_t ___enableLightEstimation_2;
};
// Native definition for COM marshalling of UnityEngine.XR.iOS.ARKitSessionConfiguration
struct ARKitSessionConfiguration_t31897B32F8D88E367E2736CBCF953A40624A5548_marshaled_com
{
int32_t ___alignment_0;
int32_t ___getPointCloudData_1;
int32_t ___enableLightEstimation_2;
};
// UnityEngine.XR.iOS.ARKitWorldTrackingSessionConfiguration
struct ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03
{
public:
// UnityEngine.XR.iOS.UnityARAlignment UnityEngine.XR.iOS.ARKitWorldTrackingSessionConfiguration::alignment
int32_t ___alignment_0;
// UnityEngine.XR.iOS.UnityARPlaneDetection UnityEngine.XR.iOS.ARKitWorldTrackingSessionConfiguration::planeDetection
int32_t ___planeDetection_1;
// System.Boolean UnityEngine.XR.iOS.ARKitWorldTrackingSessionConfiguration::getPointCloudData
bool ___getPointCloudData_2;
// System.Boolean UnityEngine.XR.iOS.ARKitWorldTrackingSessionConfiguration::enableLightEstimation
bool ___enableLightEstimation_3;
// System.Boolean UnityEngine.XR.iOS.ARKitWorldTrackingSessionConfiguration::enableAutoFocus
bool ___enableAutoFocus_4;
// UnityEngine.XR.iOS.UnityAREnvironmentTexturing UnityEngine.XR.iOS.ARKitWorldTrackingSessionConfiguration::environmentTexturing
int32_t ___environmentTexturing_5;
// System.Int32 UnityEngine.XR.iOS.ARKitWorldTrackingSessionConfiguration::maximumNumberOfTrackedImages
int32_t ___maximumNumberOfTrackedImages_6;
// System.IntPtr UnityEngine.XR.iOS.ARKitWorldTrackingSessionConfiguration::videoFormat
intptr_t ___videoFormat_7;
// System.String UnityEngine.XR.iOS.ARKitWorldTrackingSessionConfiguration::referenceImagesGroupName
String_t* ___referenceImagesGroupName_8;
// System.String UnityEngine.XR.iOS.ARKitWorldTrackingSessionConfiguration::referenceObjectsGroupName
String_t* ___referenceObjectsGroupName_9;
// System.IntPtr UnityEngine.XR.iOS.ARKitWorldTrackingSessionConfiguration::dynamicReferenceObjectsPtr
intptr_t ___dynamicReferenceObjectsPtr_10;
// System.IntPtr UnityEngine.XR.iOS.ARKitWorldTrackingSessionConfiguration::m_worldMapPtr
intptr_t ___m_worldMapPtr_11;
public:
inline static int32_t get_offset_of_alignment_0() { return static_cast<int32_t>(offsetof(ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03, ___alignment_0)); }
inline int32_t get_alignment_0() const { return ___alignment_0; }
inline int32_t* get_address_of_alignment_0() { return &___alignment_0; }
inline void set_alignment_0(int32_t value)
{
___alignment_0 = value;
}
inline static int32_t get_offset_of_planeDetection_1() { return static_cast<int32_t>(offsetof(ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03, ___planeDetection_1)); }
inline int32_t get_planeDetection_1() const { return ___planeDetection_1; }
inline int32_t* get_address_of_planeDetection_1() { return &___planeDetection_1; }
inline void set_planeDetection_1(int32_t value)
{
___planeDetection_1 = value;
}
inline static int32_t get_offset_of_getPointCloudData_2() { return static_cast<int32_t>(offsetof(ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03, ___getPointCloudData_2)); }
inline bool get_getPointCloudData_2() const { return ___getPointCloudData_2; }
inline bool* get_address_of_getPointCloudData_2() { return &___getPointCloudData_2; }
inline void set_getPointCloudData_2(bool value)
{
___getPointCloudData_2 = value;
}
inline static int32_t get_offset_of_enableLightEstimation_3() { return static_cast<int32_t>(offsetof(ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03, ___enableLightEstimation_3)); }
inline bool get_enableLightEstimation_3() const { return ___enableLightEstimation_3; }
inline bool* get_address_of_enableLightEstimation_3() { return &___enableLightEstimation_3; }
inline void set_enableLightEstimation_3(bool value)
{
___enableLightEstimation_3 = value;
}
inline static int32_t get_offset_of_enableAutoFocus_4() { return static_cast<int32_t>(offsetof(ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03, ___enableAutoFocus_4)); }
inline bool get_enableAutoFocus_4() const { return ___enableAutoFocus_4; }
inline bool* get_address_of_enableAutoFocus_4() { return &___enableAutoFocus_4; }
inline void set_enableAutoFocus_4(bool value)
{
___enableAutoFocus_4 = value;
}
inline static int32_t get_offset_of_environmentTexturing_5() { return static_cast<int32_t>(offsetof(ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03, ___environmentTexturing_5)); }
inline int32_t get_environmentTexturing_5() const { return ___environmentTexturing_5; }
inline int32_t* get_address_of_environmentTexturing_5() { return &___environmentTexturing_5; }
inline void set_environmentTexturing_5(int32_t value)
{
___environmentTexturing_5 = value;
}
inline static int32_t get_offset_of_maximumNumberOfTrackedImages_6() { return static_cast<int32_t>(offsetof(ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03, ___maximumNumberOfTrackedImages_6)); }
inline int32_t get_maximumNumberOfTrackedImages_6() const { return ___maximumNumberOfTrackedImages_6; }
inline int32_t* get_address_of_maximumNumberOfTrackedImages_6() { return &___maximumNumberOfTrackedImages_6; }
inline void set_maximumNumberOfTrackedImages_6(int32_t value)
{
___maximumNumberOfTrackedImages_6 = value;
}
inline static int32_t get_offset_of_videoFormat_7() { return static_cast<int32_t>(offsetof(ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03, ___videoFormat_7)); }
inline intptr_t get_videoFormat_7() const { return ___videoFormat_7; }
inline intptr_t* get_address_of_videoFormat_7() { return &___videoFormat_7; }
inline void set_videoFormat_7(intptr_t value)
{
___videoFormat_7 = value;
}
inline static int32_t get_offset_of_referenceImagesGroupName_8() { return static_cast<int32_t>(offsetof(ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03, ___referenceImagesGroupName_8)); }
inline String_t* get_referenceImagesGroupName_8() const { return ___referenceImagesGroupName_8; }
inline String_t** get_address_of_referenceImagesGroupName_8() { return &___referenceImagesGroupName_8; }
inline void set_referenceImagesGroupName_8(String_t* value)
{
___referenceImagesGroupName_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___referenceImagesGroupName_8), (void*)value);
}
inline static int32_t get_offset_of_referenceObjectsGroupName_9() { return static_cast<int32_t>(offsetof(ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03, ___referenceObjectsGroupName_9)); }
inline String_t* get_referenceObjectsGroupName_9() const { return ___referenceObjectsGroupName_9; }
inline String_t** get_address_of_referenceObjectsGroupName_9() { return &___referenceObjectsGroupName_9; }
inline void set_referenceObjectsGroupName_9(String_t* value)
{
___referenceObjectsGroupName_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___referenceObjectsGroupName_9), (void*)value);
}
inline static int32_t get_offset_of_dynamicReferenceObjectsPtr_10() { return static_cast<int32_t>(offsetof(ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03, ___dynamicReferenceObjectsPtr_10)); }
inline intptr_t get_dynamicReferenceObjectsPtr_10() const { return ___dynamicReferenceObjectsPtr_10; }
inline intptr_t* get_address_of_dynamicReferenceObjectsPtr_10() { return &___dynamicReferenceObjectsPtr_10; }
inline void set_dynamicReferenceObjectsPtr_10(intptr_t value)
{
___dynamicReferenceObjectsPtr_10 = value;
}
inline static int32_t get_offset_of_m_worldMapPtr_11() { return static_cast<int32_t>(offsetof(ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03, ___m_worldMapPtr_11)); }
inline intptr_t get_m_worldMapPtr_11() const { return ___m_worldMapPtr_11; }
inline intptr_t* get_address_of_m_worldMapPtr_11() { return &___m_worldMapPtr_11; }
inline void set_m_worldMapPtr_11(intptr_t value)
{
___m_worldMapPtr_11 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.iOS.ARKitWorldTrackingSessionConfiguration
struct ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03_marshaled_pinvoke
{
int32_t ___alignment_0;
int32_t ___planeDetection_1;
int32_t ___getPointCloudData_2;
int32_t ___enableLightEstimation_3;
int32_t ___enableAutoFocus_4;
int32_t ___environmentTexturing_5;
int32_t ___maximumNumberOfTrackedImages_6;
intptr_t ___videoFormat_7;
char* ___referenceImagesGroupName_8;
char* ___referenceObjectsGroupName_9;
intptr_t ___dynamicReferenceObjectsPtr_10;
intptr_t ___m_worldMapPtr_11;
};
// Native definition for COM marshalling of UnityEngine.XR.iOS.ARKitWorldTrackingSessionConfiguration
struct ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03_marshaled_com
{
int32_t ___alignment_0;
int32_t ___planeDetection_1;
int32_t ___getPointCloudData_2;
int32_t ___enableLightEstimation_3;
int32_t ___enableAutoFocus_4;
int32_t ___environmentTexturing_5;
int32_t ___maximumNumberOfTrackedImages_6;
intptr_t ___videoFormat_7;
Il2CppChar* ___referenceImagesGroupName_8;
Il2CppChar* ___referenceObjectsGroupName_9;
intptr_t ___dynamicReferenceObjectsPtr_10;
intptr_t ___m_worldMapPtr_11;
};
// UnityEngine.XR.iOS.ARPlaneGeometry
struct ARPlaneGeometry_t31A4DDA70BF10DDBB063D2FD148CDCE517B8D75F : public RuntimeObject
{
public:
// UnityEngine.XR.iOS.UnityARPlaneGeometry UnityEngine.XR.iOS.ARPlaneGeometry::uPlaneGeometry
UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026 ___uPlaneGeometry_0;
public:
inline static int32_t get_offset_of_uPlaneGeometry_0() { return static_cast<int32_t>(offsetof(ARPlaneGeometry_t31A4DDA70BF10DDBB063D2FD148CDCE517B8D75F, ___uPlaneGeometry_0)); }
inline UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026 get_uPlaneGeometry_0() const { return ___uPlaneGeometry_0; }
inline UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026 * get_address_of_uPlaneGeometry_0() { return &___uPlaneGeometry_0; }
inline void set_uPlaneGeometry_0(UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026 value)
{
___uPlaneGeometry_0 = value;
}
};
// UnityEngine.XR.iOS.ARTextureHandles
struct ARTextureHandles_tA5C7ACCAA904CA4A95ED0F5856B44B41171DDBF2 : public RuntimeObject
{
public:
// UnityEngine.XR.iOS.ARTextureHandles_ARTextureHandlesStruct UnityEngine.XR.iOS.ARTextureHandles::m_ARTextureHandlesStruct
ARTextureHandlesStruct_tBAFCB6BA6923FAA96E028E73E87C9FEF1AC661F5 ___m_ARTextureHandlesStruct_0;
public:
inline static int32_t get_offset_of_m_ARTextureHandlesStruct_0() { return static_cast<int32_t>(offsetof(ARTextureHandles_tA5C7ACCAA904CA4A95ED0F5856B44B41171DDBF2, ___m_ARTextureHandlesStruct_0)); }
inline ARTextureHandlesStruct_tBAFCB6BA6923FAA96E028E73E87C9FEF1AC661F5 get_m_ARTextureHandlesStruct_0() const { return ___m_ARTextureHandlesStruct_0; }
inline ARTextureHandlesStruct_tBAFCB6BA6923FAA96E028E73E87C9FEF1AC661F5 * get_address_of_m_ARTextureHandlesStruct_0() { return &___m_ARTextureHandlesStruct_0; }
inline void set_m_ARTextureHandlesStruct_0(ARTextureHandlesStruct_tBAFCB6BA6923FAA96E028E73E87C9FEF1AC661F5 value)
{
___m_ARTextureHandlesStruct_0 = value;
}
};
// UnityEngine.XR.iOS.UnityARAnchorData
struct UnityARAnchorData_t1B8580CF3564F44D8BA78ACFCB3E75B897EECB13
{
public:
// System.IntPtr UnityEngine.XR.iOS.UnityARAnchorData::ptrIdentifier
intptr_t ___ptrIdentifier_0;
// UnityEngine.XR.iOS.UnityARMatrix4x4 UnityEngine.XR.iOS.UnityARAnchorData::transform
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ___transform_1;
// UnityEngine.XR.iOS.ARPlaneAnchorAlignment UnityEngine.XR.iOS.UnityARAnchorData::alignment
int64_t ___alignment_2;
// UnityEngine.Vector4 UnityEngine.XR.iOS.UnityARAnchorData::center
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___center_3;
// UnityEngine.Vector4 UnityEngine.XR.iOS.UnityARAnchorData::extent
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___extent_4;
// UnityEngine.XR.iOS.UnityARPlaneGeometry UnityEngine.XR.iOS.UnityARAnchorData::planeGeometry
UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026 ___planeGeometry_5;
public:
inline static int32_t get_offset_of_ptrIdentifier_0() { return static_cast<int32_t>(offsetof(UnityARAnchorData_t1B8580CF3564F44D8BA78ACFCB3E75B897EECB13, ___ptrIdentifier_0)); }
inline intptr_t get_ptrIdentifier_0() const { return ___ptrIdentifier_0; }
inline intptr_t* get_address_of_ptrIdentifier_0() { return &___ptrIdentifier_0; }
inline void set_ptrIdentifier_0(intptr_t value)
{
___ptrIdentifier_0 = value;
}
inline static int32_t get_offset_of_transform_1() { return static_cast<int32_t>(offsetof(UnityARAnchorData_t1B8580CF3564F44D8BA78ACFCB3E75B897EECB13, ___transform_1)); }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 get_transform_1() const { return ___transform_1; }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 * get_address_of_transform_1() { return &___transform_1; }
inline void set_transform_1(UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 value)
{
___transform_1 = value;
}
inline static int32_t get_offset_of_alignment_2() { return static_cast<int32_t>(offsetof(UnityARAnchorData_t1B8580CF3564F44D8BA78ACFCB3E75B897EECB13, ___alignment_2)); }
inline int64_t get_alignment_2() const { return ___alignment_2; }
inline int64_t* get_address_of_alignment_2() { return &___alignment_2; }
inline void set_alignment_2(int64_t value)
{
___alignment_2 = value;
}
inline static int32_t get_offset_of_center_3() { return static_cast<int32_t>(offsetof(UnityARAnchorData_t1B8580CF3564F44D8BA78ACFCB3E75B897EECB13, ___center_3)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_center_3() const { return ___center_3; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_center_3() { return &___center_3; }
inline void set_center_3(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___center_3 = value;
}
inline static int32_t get_offset_of_extent_4() { return static_cast<int32_t>(offsetof(UnityARAnchorData_t1B8580CF3564F44D8BA78ACFCB3E75B897EECB13, ___extent_4)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_extent_4() const { return ___extent_4; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_extent_4() { return &___extent_4; }
inline void set_extent_4(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___extent_4 = value;
}
inline static int32_t get_offset_of_planeGeometry_5() { return static_cast<int32_t>(offsetof(UnityARAnchorData_t1B8580CF3564F44D8BA78ACFCB3E75B897EECB13, ___planeGeometry_5)); }
inline UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026 get_planeGeometry_5() const { return ___planeGeometry_5; }
inline UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026 * get_address_of_planeGeometry_5() { return &___planeGeometry_5; }
inline void set_planeGeometry_5(UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026 value)
{
___planeGeometry_5 = value;
}
};
// UnityEngine.XR.iOS.UnityAREnvironmentProbeCubemapData
struct UnityAREnvironmentProbeCubemapData_tAAC438F3F93347041F96A3D34421514C235CA98D
{
public:
// System.IntPtr UnityEngine.XR.iOS.UnityAREnvironmentProbeCubemapData::cubemapPtr
intptr_t ___cubemapPtr_0;
// UnityEngine.XR.iOS.UnityAREnvironmentTextureFormat UnityEngine.XR.iOS.UnityAREnvironmentProbeCubemapData::textureFormat
int64_t ___textureFormat_1;
// System.Int32 UnityEngine.XR.iOS.UnityAREnvironmentProbeCubemapData::width
int32_t ___width_2;
// System.Int32 UnityEngine.XR.iOS.UnityAREnvironmentProbeCubemapData::height
int32_t ___height_3;
// System.Int32 UnityEngine.XR.iOS.UnityAREnvironmentProbeCubemapData::mipmapCount
int32_t ___mipmapCount_4;
public:
inline static int32_t get_offset_of_cubemapPtr_0() { return static_cast<int32_t>(offsetof(UnityAREnvironmentProbeCubemapData_tAAC438F3F93347041F96A3D34421514C235CA98D, ___cubemapPtr_0)); }
inline intptr_t get_cubemapPtr_0() const { return ___cubemapPtr_0; }
inline intptr_t* get_address_of_cubemapPtr_0() { return &___cubemapPtr_0; }
inline void set_cubemapPtr_0(intptr_t value)
{
___cubemapPtr_0 = value;
}
inline static int32_t get_offset_of_textureFormat_1() { return static_cast<int32_t>(offsetof(UnityAREnvironmentProbeCubemapData_tAAC438F3F93347041F96A3D34421514C235CA98D, ___textureFormat_1)); }
inline int64_t get_textureFormat_1() const { return ___textureFormat_1; }
inline int64_t* get_address_of_textureFormat_1() { return &___textureFormat_1; }
inline void set_textureFormat_1(int64_t value)
{
___textureFormat_1 = value;
}
inline static int32_t get_offset_of_width_2() { return static_cast<int32_t>(offsetof(UnityAREnvironmentProbeCubemapData_tAAC438F3F93347041F96A3D34421514C235CA98D, ___width_2)); }
inline int32_t get_width_2() const { return ___width_2; }
inline int32_t* get_address_of_width_2() { return &___width_2; }
inline void set_width_2(int32_t value)
{
___width_2 = value;
}
inline static int32_t get_offset_of_height_3() { return static_cast<int32_t>(offsetof(UnityAREnvironmentProbeCubemapData_tAAC438F3F93347041F96A3D34421514C235CA98D, ___height_3)); }
inline int32_t get_height_3() const { return ___height_3; }
inline int32_t* get_address_of_height_3() { return &___height_3; }
inline void set_height_3(int32_t value)
{
___height_3 = value;
}
inline static int32_t get_offset_of_mipmapCount_4() { return static_cast<int32_t>(offsetof(UnityAREnvironmentProbeCubemapData_tAAC438F3F93347041F96A3D34421514C235CA98D, ___mipmapCount_4)); }
inline int32_t get_mipmapCount_4() const { return ___mipmapCount_4; }
inline int32_t* get_address_of_mipmapCount_4() { return &___mipmapCount_4; }
inline void set_mipmapCount_4(int32_t value)
{
___mipmapCount_4 = value;
}
};
// UnityEngine.XR.iOS.UnityARFaceAnchorData
struct UnityARFaceAnchorData_t3A457F763D64A6BE658018C01B8B4DACA73E87C1
{
public:
// System.IntPtr UnityEngine.XR.iOS.UnityARFaceAnchorData::ptrIdentifier
intptr_t ___ptrIdentifier_0;
// UnityEngine.XR.iOS.UnityARMatrix4x4 UnityEngine.XR.iOS.UnityARFaceAnchorData::transform
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ___transform_1;
// UnityEngine.XR.iOS.UnityARFaceGeometry UnityEngine.XR.iOS.UnityARFaceAnchorData::faceGeometry
UnityARFaceGeometry_t15F03281F3361400331718DF03DF7DA0DD5501E5 ___faceGeometry_2;
// System.IntPtr UnityEngine.XR.iOS.UnityARFaceAnchorData::blendShapes
intptr_t ___blendShapes_3;
// UnityEngine.XR.iOS.UnityARMatrix4x4 UnityEngine.XR.iOS.UnityARFaceAnchorData::leftEyeTransform
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ___leftEyeTransform_4;
// UnityEngine.XR.iOS.UnityARMatrix4x4 UnityEngine.XR.iOS.UnityARFaceAnchorData::rightEyeTransform
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ___rightEyeTransform_5;
// UnityEngine.Vector3 UnityEngine.XR.iOS.UnityARFaceAnchorData::lookAtPoint
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___lookAtPoint_6;
// System.Boolean UnityEngine.XR.iOS.UnityARFaceAnchorData::isTracked
bool ___isTracked_7;
public:
inline static int32_t get_offset_of_ptrIdentifier_0() { return static_cast<int32_t>(offsetof(UnityARFaceAnchorData_t3A457F763D64A6BE658018C01B8B4DACA73E87C1, ___ptrIdentifier_0)); }
inline intptr_t get_ptrIdentifier_0() const { return ___ptrIdentifier_0; }
inline intptr_t* get_address_of_ptrIdentifier_0() { return &___ptrIdentifier_0; }
inline void set_ptrIdentifier_0(intptr_t value)
{
___ptrIdentifier_0 = value;
}
inline static int32_t get_offset_of_transform_1() { return static_cast<int32_t>(offsetof(UnityARFaceAnchorData_t3A457F763D64A6BE658018C01B8B4DACA73E87C1, ___transform_1)); }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 get_transform_1() const { return ___transform_1; }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 * get_address_of_transform_1() { return &___transform_1; }
inline void set_transform_1(UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 value)
{
___transform_1 = value;
}
inline static int32_t get_offset_of_faceGeometry_2() { return static_cast<int32_t>(offsetof(UnityARFaceAnchorData_t3A457F763D64A6BE658018C01B8B4DACA73E87C1, ___faceGeometry_2)); }
inline UnityARFaceGeometry_t15F03281F3361400331718DF03DF7DA0DD5501E5 get_faceGeometry_2() const { return ___faceGeometry_2; }
inline UnityARFaceGeometry_t15F03281F3361400331718DF03DF7DA0DD5501E5 * get_address_of_faceGeometry_2() { return &___faceGeometry_2; }
inline void set_faceGeometry_2(UnityARFaceGeometry_t15F03281F3361400331718DF03DF7DA0DD5501E5 value)
{
___faceGeometry_2 = value;
}
inline static int32_t get_offset_of_blendShapes_3() { return static_cast<int32_t>(offsetof(UnityARFaceAnchorData_t3A457F763D64A6BE658018C01B8B4DACA73E87C1, ___blendShapes_3)); }
inline intptr_t get_blendShapes_3() const { return ___blendShapes_3; }
inline intptr_t* get_address_of_blendShapes_3() { return &___blendShapes_3; }
inline void set_blendShapes_3(intptr_t value)
{
___blendShapes_3 = value;
}
inline static int32_t get_offset_of_leftEyeTransform_4() { return static_cast<int32_t>(offsetof(UnityARFaceAnchorData_t3A457F763D64A6BE658018C01B8B4DACA73E87C1, ___leftEyeTransform_4)); }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 get_leftEyeTransform_4() const { return ___leftEyeTransform_4; }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 * get_address_of_leftEyeTransform_4() { return &___leftEyeTransform_4; }
inline void set_leftEyeTransform_4(UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 value)
{
___leftEyeTransform_4 = value;
}
inline static int32_t get_offset_of_rightEyeTransform_5() { return static_cast<int32_t>(offsetof(UnityARFaceAnchorData_t3A457F763D64A6BE658018C01B8B4DACA73E87C1, ___rightEyeTransform_5)); }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 get_rightEyeTransform_5() const { return ___rightEyeTransform_5; }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 * get_address_of_rightEyeTransform_5() { return &___rightEyeTransform_5; }
inline void set_rightEyeTransform_5(UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 value)
{
___rightEyeTransform_5 = value;
}
inline static int32_t get_offset_of_lookAtPoint_6() { return static_cast<int32_t>(offsetof(UnityARFaceAnchorData_t3A457F763D64A6BE658018C01B8B4DACA73E87C1, ___lookAtPoint_6)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_lookAtPoint_6() const { return ___lookAtPoint_6; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_lookAtPoint_6() { return &___lookAtPoint_6; }
inline void set_lookAtPoint_6(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___lookAtPoint_6 = value;
}
inline static int32_t get_offset_of_isTracked_7() { return static_cast<int32_t>(offsetof(UnityARFaceAnchorData_t3A457F763D64A6BE658018C01B8B4DACA73E87C1, ___isTracked_7)); }
inline bool get_isTracked_7() const { return ___isTracked_7; }
inline bool* get_address_of_isTracked_7() { return &___isTracked_7; }
inline void set_isTracked_7(bool value)
{
___isTracked_7 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.iOS.UnityARFaceAnchorData
struct UnityARFaceAnchorData_t3A457F763D64A6BE658018C01B8B4DACA73E87C1_marshaled_pinvoke
{
intptr_t ___ptrIdentifier_0;
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ___transform_1;
UnityARFaceGeometry_t15F03281F3361400331718DF03DF7DA0DD5501E5 ___faceGeometry_2;
intptr_t ___blendShapes_3;
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ___leftEyeTransform_4;
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ___rightEyeTransform_5;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___lookAtPoint_6;
int32_t ___isTracked_7;
};
// Native definition for COM marshalling of UnityEngine.XR.iOS.UnityARFaceAnchorData
struct UnityARFaceAnchorData_t3A457F763D64A6BE658018C01B8B4DACA73E87C1_marshaled_com
{
intptr_t ___ptrIdentifier_0;
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ___transform_1;
UnityARFaceGeometry_t15F03281F3361400331718DF03DF7DA0DD5501E5 ___faceGeometry_2;
intptr_t ___blendShapes_3;
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ___leftEyeTransform_4;
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ___rightEyeTransform_5;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___lookAtPoint_6;
int32_t ___isTracked_7;
};
// UnityEngine.XR.iOS.UnityARHitTestResult
struct UnityARHitTestResult_t50B762886ED73C02795E6BF5A74F9861F7707DD6
{
public:
// UnityEngine.XR.iOS.ARHitTestResultType UnityEngine.XR.iOS.UnityARHitTestResult::type
int64_t ___type_0;
// System.Double UnityEngine.XR.iOS.UnityARHitTestResult::distance
double ___distance_1;
// UnityEngine.Matrix4x4 UnityEngine.XR.iOS.UnityARHitTestResult::localTransform
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___localTransform_2;
// UnityEngine.Matrix4x4 UnityEngine.XR.iOS.UnityARHitTestResult::worldTransform
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___worldTransform_3;
// System.IntPtr UnityEngine.XR.iOS.UnityARHitTestResult::anchor
intptr_t ___anchor_4;
// System.Boolean UnityEngine.XR.iOS.UnityARHitTestResult::isValid
bool ___isValid_5;
public:
inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(UnityARHitTestResult_t50B762886ED73C02795E6BF5A74F9861F7707DD6, ___type_0)); }
inline int64_t get_type_0() const { return ___type_0; }
inline int64_t* get_address_of_type_0() { return &___type_0; }
inline void set_type_0(int64_t value)
{
___type_0 = value;
}
inline static int32_t get_offset_of_distance_1() { return static_cast<int32_t>(offsetof(UnityARHitTestResult_t50B762886ED73C02795E6BF5A74F9861F7707DD6, ___distance_1)); }
inline double get_distance_1() const { return ___distance_1; }
inline double* get_address_of_distance_1() { return &___distance_1; }
inline void set_distance_1(double value)
{
___distance_1 = value;
}
inline static int32_t get_offset_of_localTransform_2() { return static_cast<int32_t>(offsetof(UnityARHitTestResult_t50B762886ED73C02795E6BF5A74F9861F7707DD6, ___localTransform_2)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_localTransform_2() const { return ___localTransform_2; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_localTransform_2() { return &___localTransform_2; }
inline void set_localTransform_2(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___localTransform_2 = value;
}
inline static int32_t get_offset_of_worldTransform_3() { return static_cast<int32_t>(offsetof(UnityARHitTestResult_t50B762886ED73C02795E6BF5A74F9861F7707DD6, ___worldTransform_3)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_worldTransform_3() const { return ___worldTransform_3; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_worldTransform_3() { return &___worldTransform_3; }
inline void set_worldTransform_3(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___worldTransform_3 = value;
}
inline static int32_t get_offset_of_anchor_4() { return static_cast<int32_t>(offsetof(UnityARHitTestResult_t50B762886ED73C02795E6BF5A74F9861F7707DD6, ___anchor_4)); }
inline intptr_t get_anchor_4() const { return ___anchor_4; }
inline intptr_t* get_address_of_anchor_4() { return &___anchor_4; }
inline void set_anchor_4(intptr_t value)
{
___anchor_4 = value;
}
inline static int32_t get_offset_of_isValid_5() { return static_cast<int32_t>(offsetof(UnityARHitTestResult_t50B762886ED73C02795E6BF5A74F9861F7707DD6, ___isValid_5)); }
inline bool get_isValid_5() const { return ___isValid_5; }
inline bool* get_address_of_isValid_5() { return &___isValid_5; }
inline void set_isValid_5(bool value)
{
___isValid_5 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.iOS.UnityARHitTestResult
struct UnityARHitTestResult_t50B762886ED73C02795E6BF5A74F9861F7707DD6_marshaled_pinvoke
{
int64_t ___type_0;
double ___distance_1;
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___localTransform_2;
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___worldTransform_3;
intptr_t ___anchor_4;
int32_t ___isValid_5;
};
// Native definition for COM marshalling of UnityEngine.XR.iOS.UnityARHitTestResult
struct UnityARHitTestResult_t50B762886ED73C02795E6BF5A74F9861F7707DD6_marshaled_com
{
int64_t ___type_0;
double ___distance_1;
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___localTransform_2;
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___worldTransform_3;
intptr_t ___anchor_4;
int32_t ___isValid_5;
};
// UnityEngine.XR.iOS.UnityARImageAnchorData
struct UnityARImageAnchorData_t2EA02386DC32BBCA4A3EB205918BF28F7663B13E
{
public:
// System.IntPtr UnityEngine.XR.iOS.UnityARImageAnchorData::ptrIdentifier
intptr_t ___ptrIdentifier_0;
// UnityEngine.XR.iOS.UnityARMatrix4x4 UnityEngine.XR.iOS.UnityARImageAnchorData::transform
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ___transform_1;
// System.IntPtr UnityEngine.XR.iOS.UnityARImageAnchorData::referenceImageNamePtr
intptr_t ___referenceImageNamePtr_2;
// System.Single UnityEngine.XR.iOS.UnityARImageAnchorData::referenceImagePhysicalSize
float ___referenceImagePhysicalSize_3;
// System.Int32 UnityEngine.XR.iOS.UnityARImageAnchorData::isTracked
int32_t ___isTracked_4;
public:
inline static int32_t get_offset_of_ptrIdentifier_0() { return static_cast<int32_t>(offsetof(UnityARImageAnchorData_t2EA02386DC32BBCA4A3EB205918BF28F7663B13E, ___ptrIdentifier_0)); }
inline intptr_t get_ptrIdentifier_0() const { return ___ptrIdentifier_0; }
inline intptr_t* get_address_of_ptrIdentifier_0() { return &___ptrIdentifier_0; }
inline void set_ptrIdentifier_0(intptr_t value)
{
___ptrIdentifier_0 = value;
}
inline static int32_t get_offset_of_transform_1() { return static_cast<int32_t>(offsetof(UnityARImageAnchorData_t2EA02386DC32BBCA4A3EB205918BF28F7663B13E, ___transform_1)); }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 get_transform_1() const { return ___transform_1; }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 * get_address_of_transform_1() { return &___transform_1; }
inline void set_transform_1(UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 value)
{
___transform_1 = value;
}
inline static int32_t get_offset_of_referenceImageNamePtr_2() { return static_cast<int32_t>(offsetof(UnityARImageAnchorData_t2EA02386DC32BBCA4A3EB205918BF28F7663B13E, ___referenceImageNamePtr_2)); }
inline intptr_t get_referenceImageNamePtr_2() const { return ___referenceImageNamePtr_2; }
inline intptr_t* get_address_of_referenceImageNamePtr_2() { return &___referenceImageNamePtr_2; }
inline void set_referenceImageNamePtr_2(intptr_t value)
{
___referenceImageNamePtr_2 = value;
}
inline static int32_t get_offset_of_referenceImagePhysicalSize_3() { return static_cast<int32_t>(offsetof(UnityARImageAnchorData_t2EA02386DC32BBCA4A3EB205918BF28F7663B13E, ___referenceImagePhysicalSize_3)); }
inline float get_referenceImagePhysicalSize_3() const { return ___referenceImagePhysicalSize_3; }
inline float* get_address_of_referenceImagePhysicalSize_3() { return &___referenceImagePhysicalSize_3; }
inline void set_referenceImagePhysicalSize_3(float value)
{
___referenceImagePhysicalSize_3 = value;
}
inline static int32_t get_offset_of_isTracked_4() { return static_cast<int32_t>(offsetof(UnityARImageAnchorData_t2EA02386DC32BBCA4A3EB205918BF28F7663B13E, ___isTracked_4)); }
inline int32_t get_isTracked_4() const { return ___isTracked_4; }
inline int32_t* get_address_of_isTracked_4() { return &___isTracked_4; }
inline void set_isTracked_4(int32_t value)
{
___isTracked_4 = value;
}
};
// UnityEngine.XR.iOS.UnityARLightData
struct UnityARLightData_t65CE5E12F3A5F26CF443B38F432BD4CD5CF7B39C
{
public:
// UnityEngine.XR.iOS.LightDataType UnityEngine.XR.iOS.UnityARLightData::arLightingType
int32_t ___arLightingType_0;
// UnityEngine.XR.iOS.UnityARLightEstimate UnityEngine.XR.iOS.UnityARLightData::arLightEstimate
UnityARLightEstimate_tCC7C13BED276766FF1F846160D0E9A61746B5132 ___arLightEstimate_1;
// UnityEngine.XR.iOS.UnityARDirectionalLightEstimate UnityEngine.XR.iOS.UnityARLightData::arDirectonalLightEstimate
UnityARDirectionalLightEstimate_tF5324C28AA41BAADD17EBBCF55EEC46DC8B43AB9 * ___arDirectonalLightEstimate_2;
public:
inline static int32_t get_offset_of_arLightingType_0() { return static_cast<int32_t>(offsetof(UnityARLightData_t65CE5E12F3A5F26CF443B38F432BD4CD5CF7B39C, ___arLightingType_0)); }
inline int32_t get_arLightingType_0() const { return ___arLightingType_0; }
inline int32_t* get_address_of_arLightingType_0() { return &___arLightingType_0; }
inline void set_arLightingType_0(int32_t value)
{
___arLightingType_0 = value;
}
inline static int32_t get_offset_of_arLightEstimate_1() { return static_cast<int32_t>(offsetof(UnityARLightData_t65CE5E12F3A5F26CF443B38F432BD4CD5CF7B39C, ___arLightEstimate_1)); }
inline UnityARLightEstimate_tCC7C13BED276766FF1F846160D0E9A61746B5132 get_arLightEstimate_1() const { return ___arLightEstimate_1; }
inline UnityARLightEstimate_tCC7C13BED276766FF1F846160D0E9A61746B5132 * get_address_of_arLightEstimate_1() { return &___arLightEstimate_1; }
inline void set_arLightEstimate_1(UnityARLightEstimate_tCC7C13BED276766FF1F846160D0E9A61746B5132 value)
{
___arLightEstimate_1 = value;
}
inline static int32_t get_offset_of_arDirectonalLightEstimate_2() { return static_cast<int32_t>(offsetof(UnityARLightData_t65CE5E12F3A5F26CF443B38F432BD4CD5CF7B39C, ___arDirectonalLightEstimate_2)); }
inline UnityARDirectionalLightEstimate_tF5324C28AA41BAADD17EBBCF55EEC46DC8B43AB9 * get_arDirectonalLightEstimate_2() const { return ___arDirectonalLightEstimate_2; }
inline UnityARDirectionalLightEstimate_tF5324C28AA41BAADD17EBBCF55EEC46DC8B43AB9 ** get_address_of_arDirectonalLightEstimate_2() { return &___arDirectonalLightEstimate_2; }
inline void set_arDirectonalLightEstimate_2(UnityARDirectionalLightEstimate_tF5324C28AA41BAADD17EBBCF55EEC46DC8B43AB9 * value)
{
___arDirectonalLightEstimate_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___arDirectonalLightEstimate_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.iOS.UnityARLightData
struct UnityARLightData_t65CE5E12F3A5F26CF443B38F432BD4CD5CF7B39C_marshaled_pinvoke
{
int32_t ___arLightingType_0;
UnityARLightEstimate_tCC7C13BED276766FF1F846160D0E9A61746B5132 ___arLightEstimate_1;
UnityARDirectionalLightEstimate_tF5324C28AA41BAADD17EBBCF55EEC46DC8B43AB9 * ___arDirectonalLightEstimate_2;
};
// Native definition for COM marshalling of UnityEngine.XR.iOS.UnityARLightData
struct UnityARLightData_t65CE5E12F3A5F26CF443B38F432BD4CD5CF7B39C_marshaled_com
{
int32_t ___arLightingType_0;
UnityARLightEstimate_tCC7C13BED276766FF1F846160D0E9A61746B5132 ___arLightEstimate_1;
UnityARDirectionalLightEstimate_tF5324C28AA41BAADD17EBBCF55EEC46DC8B43AB9 * ___arDirectonalLightEstimate_2;
};
// UnityEngine.XR.iOS.UnityARObjectAnchorData
struct UnityARObjectAnchorData_t0FBFBB46ADB385CAD870834CAB7F892C8E2FEC57
{
public:
// System.IntPtr UnityEngine.XR.iOS.UnityARObjectAnchorData::ptrIdentifier
intptr_t ___ptrIdentifier_0;
// UnityEngine.XR.iOS.UnityARMatrix4x4 UnityEngine.XR.iOS.UnityARObjectAnchorData::transform
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ___transform_1;
// System.IntPtr UnityEngine.XR.iOS.UnityARObjectAnchorData::referenceObjectNamePtr
intptr_t ___referenceObjectNamePtr_2;
// System.IntPtr UnityEngine.XR.iOS.UnityARObjectAnchorData::referenceObjectPtr
intptr_t ___referenceObjectPtr_3;
public:
inline static int32_t get_offset_of_ptrIdentifier_0() { return static_cast<int32_t>(offsetof(UnityARObjectAnchorData_t0FBFBB46ADB385CAD870834CAB7F892C8E2FEC57, ___ptrIdentifier_0)); }
inline intptr_t get_ptrIdentifier_0() const { return ___ptrIdentifier_0; }
inline intptr_t* get_address_of_ptrIdentifier_0() { return &___ptrIdentifier_0; }
inline void set_ptrIdentifier_0(intptr_t value)
{
___ptrIdentifier_0 = value;
}
inline static int32_t get_offset_of_transform_1() { return static_cast<int32_t>(offsetof(UnityARObjectAnchorData_t0FBFBB46ADB385CAD870834CAB7F892C8E2FEC57, ___transform_1)); }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 get_transform_1() const { return ___transform_1; }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 * get_address_of_transform_1() { return &___transform_1; }
inline void set_transform_1(UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 value)
{
___transform_1 = value;
}
inline static int32_t get_offset_of_referenceObjectNamePtr_2() { return static_cast<int32_t>(offsetof(UnityARObjectAnchorData_t0FBFBB46ADB385CAD870834CAB7F892C8E2FEC57, ___referenceObjectNamePtr_2)); }
inline intptr_t get_referenceObjectNamePtr_2() const { return ___referenceObjectNamePtr_2; }
inline intptr_t* get_address_of_referenceObjectNamePtr_2() { return &___referenceObjectNamePtr_2; }
inline void set_referenceObjectNamePtr_2(intptr_t value)
{
___referenceObjectNamePtr_2 = value;
}
inline static int32_t get_offset_of_referenceObjectPtr_3() { return static_cast<int32_t>(offsetof(UnityARObjectAnchorData_t0FBFBB46ADB385CAD870834CAB7F892C8E2FEC57, ___referenceObjectPtr_3)); }
inline intptr_t get_referenceObjectPtr_3() const { return ___referenceObjectPtr_3; }
inline intptr_t* get_address_of_referenceObjectPtr_3() { return &___referenceObjectPtr_3; }
inline void set_referenceObjectPtr_3(intptr_t value)
{
___referenceObjectPtr_3 = value;
}
};
// UnityEngine.XR.iOS.UnityARUserAnchorData
struct UnityARUserAnchorData_t9CDEC5EC99A64714ABCBF0BC573951ABFEC44671
{
public:
// System.IntPtr UnityEngine.XR.iOS.UnityARUserAnchorData::ptrIdentifier
intptr_t ___ptrIdentifier_0;
// UnityEngine.XR.iOS.UnityARMatrix4x4 UnityEngine.XR.iOS.UnityARUserAnchorData::transform
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ___transform_1;
public:
inline static int32_t get_offset_of_ptrIdentifier_0() { return static_cast<int32_t>(offsetof(UnityARUserAnchorData_t9CDEC5EC99A64714ABCBF0BC573951ABFEC44671, ___ptrIdentifier_0)); }
inline intptr_t get_ptrIdentifier_0() const { return ___ptrIdentifier_0; }
inline intptr_t* get_address_of_ptrIdentifier_0() { return &___ptrIdentifier_0; }
inline void set_ptrIdentifier_0(intptr_t value)
{
___ptrIdentifier_0 = value;
}
inline static int32_t get_offset_of_transform_1() { return static_cast<int32_t>(offsetof(UnityARUserAnchorData_t9CDEC5EC99A64714ABCBF0BC573951ABFEC44671, ___transform_1)); }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 get_transform_1() const { return ___transform_1; }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 * get_address_of_transform_1() { return &___transform_1; }
inline void set_transform_1(UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 value)
{
___transform_1 = value;
}
};
// UnityEngine.XR.iOS.UnityMarshalLightData
struct UnityMarshalLightData_tF77EE50423BA991FDB1DECDD23E914C3D3928F9C
{
public:
// UnityEngine.XR.iOS.LightDataType UnityEngine.XR.iOS.UnityMarshalLightData::arLightingType
int32_t ___arLightingType_0;
// UnityEngine.XR.iOS.UnityARLightEstimate UnityEngine.XR.iOS.UnityMarshalLightData::arLightEstimate
UnityARLightEstimate_tCC7C13BED276766FF1F846160D0E9A61746B5132 ___arLightEstimate_1;
// UnityEngine.XR.iOS.MarshalDirectionalLightEstimate UnityEngine.XR.iOS.UnityMarshalLightData::arDirectonalLightEstimate
MarshalDirectionalLightEstimate_t7BC98B612AADA17BDB3050D34DE74696570F5760 ___arDirectonalLightEstimate_2;
public:
inline static int32_t get_offset_of_arLightingType_0() { return static_cast<int32_t>(offsetof(UnityMarshalLightData_tF77EE50423BA991FDB1DECDD23E914C3D3928F9C, ___arLightingType_0)); }
inline int32_t get_arLightingType_0() const { return ___arLightingType_0; }
inline int32_t* get_address_of_arLightingType_0() { return &___arLightingType_0; }
inline void set_arLightingType_0(int32_t value)
{
___arLightingType_0 = value;
}
inline static int32_t get_offset_of_arLightEstimate_1() { return static_cast<int32_t>(offsetof(UnityMarshalLightData_tF77EE50423BA991FDB1DECDD23E914C3D3928F9C, ___arLightEstimate_1)); }
inline UnityARLightEstimate_tCC7C13BED276766FF1F846160D0E9A61746B5132 get_arLightEstimate_1() const { return ___arLightEstimate_1; }
inline UnityARLightEstimate_tCC7C13BED276766FF1F846160D0E9A61746B5132 * get_address_of_arLightEstimate_1() { return &___arLightEstimate_1; }
inline void set_arLightEstimate_1(UnityARLightEstimate_tCC7C13BED276766FF1F846160D0E9A61746B5132 value)
{
___arLightEstimate_1 = value;
}
inline static int32_t get_offset_of_arDirectonalLightEstimate_2() { return static_cast<int32_t>(offsetof(UnityMarshalLightData_tF77EE50423BA991FDB1DECDD23E914C3D3928F9C, ___arDirectonalLightEstimate_2)); }
inline MarshalDirectionalLightEstimate_t7BC98B612AADA17BDB3050D34DE74696570F5760 get_arDirectonalLightEstimate_2() const { return ___arDirectonalLightEstimate_2; }
inline MarshalDirectionalLightEstimate_t7BC98B612AADA17BDB3050D34DE74696570F5760 * get_address_of_arDirectonalLightEstimate_2() { return &___arDirectonalLightEstimate_2; }
inline void set_arDirectonalLightEstimate_2(MarshalDirectionalLightEstimate_t7BC98B612AADA17BDB3050D34DE74696570F5760 value)
{
___arDirectonalLightEstimate_2 = value;
}
};
// UnityEngine.XR.iOS.Utils.serializableARKitInit
struct serializableARKitInit_t226FD9E7021E39F06F9F5717116C1688C2D293BF : public RuntimeObject
{
public:
// UnityEngine.XR.iOS.Utils.serializableARSessionConfiguration UnityEngine.XR.iOS.Utils.serializableARKitInit::config
serializableARSessionConfiguration_tE32FDE4517F57B2FE8BC9386F3429D927A698E25 * ___config_0;
// UnityEngine.XR.iOS.UnityARSessionRunOption UnityEngine.XR.iOS.Utils.serializableARKitInit::runOption
int32_t ___runOption_1;
public:
inline static int32_t get_offset_of_config_0() { return static_cast<int32_t>(offsetof(serializableARKitInit_t226FD9E7021E39F06F9F5717116C1688C2D293BF, ___config_0)); }
inline serializableARSessionConfiguration_tE32FDE4517F57B2FE8BC9386F3429D927A698E25 * get_config_0() const { return ___config_0; }
inline serializableARSessionConfiguration_tE32FDE4517F57B2FE8BC9386F3429D927A698E25 ** get_address_of_config_0() { return &___config_0; }
inline void set_config_0(serializableARSessionConfiguration_tE32FDE4517F57B2FE8BC9386F3429D927A698E25 * value)
{
___config_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___config_0), (void*)value);
}
inline static int32_t get_offset_of_runOption_1() { return static_cast<int32_t>(offsetof(serializableARKitInit_t226FD9E7021E39F06F9F5717116C1688C2D293BF, ___runOption_1)); }
inline int32_t get_runOption_1() const { return ___runOption_1; }
inline int32_t* get_address_of_runOption_1() { return &___runOption_1; }
inline void set_runOption_1(int32_t value)
{
___runOption_1 = value;
}
};
// UnityEngine.XR.iOS.Utils.serializableARSessionConfiguration
struct serializableARSessionConfiguration_tE32FDE4517F57B2FE8BC9386F3429D927A698E25 : public RuntimeObject
{
public:
// UnityEngine.XR.iOS.UnityARAlignment UnityEngine.XR.iOS.Utils.serializableARSessionConfiguration::alignment
int32_t ___alignment_0;
// UnityEngine.XR.iOS.UnityARPlaneDetection UnityEngine.XR.iOS.Utils.serializableARSessionConfiguration::planeDetection
int32_t ___planeDetection_1;
// System.Boolean UnityEngine.XR.iOS.Utils.serializableARSessionConfiguration::getPointCloudData
bool ___getPointCloudData_2;
// System.Boolean UnityEngine.XR.iOS.Utils.serializableARSessionConfiguration::enableLightEstimation
bool ___enableLightEstimation_3;
// System.Boolean UnityEngine.XR.iOS.Utils.serializableARSessionConfiguration::enableAutoFocus
bool ___enableAutoFocus_4;
public:
inline static int32_t get_offset_of_alignment_0() { return static_cast<int32_t>(offsetof(serializableARSessionConfiguration_tE32FDE4517F57B2FE8BC9386F3429D927A698E25, ___alignment_0)); }
inline int32_t get_alignment_0() const { return ___alignment_0; }
inline int32_t* get_address_of_alignment_0() { return &___alignment_0; }
inline void set_alignment_0(int32_t value)
{
___alignment_0 = value;
}
inline static int32_t get_offset_of_planeDetection_1() { return static_cast<int32_t>(offsetof(serializableARSessionConfiguration_tE32FDE4517F57B2FE8BC9386F3429D927A698E25, ___planeDetection_1)); }
inline int32_t get_planeDetection_1() const { return ___planeDetection_1; }
inline int32_t* get_address_of_planeDetection_1() { return &___planeDetection_1; }
inline void set_planeDetection_1(int32_t value)
{
___planeDetection_1 = value;
}
inline static int32_t get_offset_of_getPointCloudData_2() { return static_cast<int32_t>(offsetof(serializableARSessionConfiguration_tE32FDE4517F57B2FE8BC9386F3429D927A698E25, ___getPointCloudData_2)); }
inline bool get_getPointCloudData_2() const { return ___getPointCloudData_2; }
inline bool* get_address_of_getPointCloudData_2() { return &___getPointCloudData_2; }
inline void set_getPointCloudData_2(bool value)
{
___getPointCloudData_2 = value;
}
inline static int32_t get_offset_of_enableLightEstimation_3() { return static_cast<int32_t>(offsetof(serializableARSessionConfiguration_tE32FDE4517F57B2FE8BC9386F3429D927A698E25, ___enableLightEstimation_3)); }
inline bool get_enableLightEstimation_3() const { return ___enableLightEstimation_3; }
inline bool* get_address_of_enableLightEstimation_3() { return &___enableLightEstimation_3; }
inline void set_enableLightEstimation_3(bool value)
{
___enableLightEstimation_3 = value;
}
inline static int32_t get_offset_of_enableAutoFocus_4() { return static_cast<int32_t>(offsetof(serializableARSessionConfiguration_tE32FDE4517F57B2FE8BC9386F3429D927A698E25, ___enableAutoFocus_4)); }
inline bool get_enableAutoFocus_4() const { return ___enableAutoFocus_4; }
inline bool* get_address_of_enableAutoFocus_4() { return &___enableAutoFocus_4; }
inline void set_enableAutoFocus_4(bool value)
{
___enableAutoFocus_4 = value;
}
};
// UnityEngine.XR.iOS.Utils.serializableUnityARCamera
struct serializableUnityARCamera_tE0928D3EF7C59B9698FF23F97AA0B7124916308F : public RuntimeObject
{
public:
// UnityEngine.XR.iOS.Utils.serializableUnityARMatrix4x4 UnityEngine.XR.iOS.Utils.serializableUnityARCamera::worldTransform
serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731 * ___worldTransform_0;
// UnityEngine.XR.iOS.Utils.serializableUnityARMatrix4x4 UnityEngine.XR.iOS.Utils.serializableUnityARCamera::projectionMatrix
serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731 * ___projectionMatrix_1;
// UnityEngine.XR.iOS.ARTrackingState UnityEngine.XR.iOS.Utils.serializableUnityARCamera::trackingState
int32_t ___trackingState_2;
// UnityEngine.XR.iOS.ARTrackingStateReason UnityEngine.XR.iOS.Utils.serializableUnityARCamera::trackingReason
int32_t ___trackingReason_3;
// UnityEngine.XR.iOS.UnityVideoParams UnityEngine.XR.iOS.Utils.serializableUnityARCamera::videoParams
UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1 ___videoParams_4;
// UnityEngine.XR.iOS.Utils.serializableUnityARLightData UnityEngine.XR.iOS.Utils.serializableUnityARCamera::lightData
serializableUnityARLightData_tB60386E7B87FA53A01A502CBAA8E6ADC79F6D779 * ___lightData_5;
// UnityEngine.XR.iOS.Utils.serializablePointCloud UnityEngine.XR.iOS.Utils.serializableUnityARCamera::pointCloud
serializablePointCloud_tA208EAB380DBE420C8976C2D6F40D2A7D8FA0568 * ___pointCloud_6;
// UnityEngine.XR.iOS.Utils.serializableUnityARMatrix4x4 UnityEngine.XR.iOS.Utils.serializableUnityARCamera::displayTransform
serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731 * ___displayTransform_7;
// UnityEngine.XR.iOS.ARWorldMappingStatus UnityEngine.XR.iOS.Utils.serializableUnityARCamera::worldMappingStatus
int32_t ___worldMappingStatus_8;
public:
inline static int32_t get_offset_of_worldTransform_0() { return static_cast<int32_t>(offsetof(serializableUnityARCamera_tE0928D3EF7C59B9698FF23F97AA0B7124916308F, ___worldTransform_0)); }
inline serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731 * get_worldTransform_0() const { return ___worldTransform_0; }
inline serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731 ** get_address_of_worldTransform_0() { return &___worldTransform_0; }
inline void set_worldTransform_0(serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731 * value)
{
___worldTransform_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___worldTransform_0), (void*)value);
}
inline static int32_t get_offset_of_projectionMatrix_1() { return static_cast<int32_t>(offsetof(serializableUnityARCamera_tE0928D3EF7C59B9698FF23F97AA0B7124916308F, ___projectionMatrix_1)); }
inline serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731 * get_projectionMatrix_1() const { return ___projectionMatrix_1; }
inline serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731 ** get_address_of_projectionMatrix_1() { return &___projectionMatrix_1; }
inline void set_projectionMatrix_1(serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731 * value)
{
___projectionMatrix_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___projectionMatrix_1), (void*)value);
}
inline static int32_t get_offset_of_trackingState_2() { return static_cast<int32_t>(offsetof(serializableUnityARCamera_tE0928D3EF7C59B9698FF23F97AA0B7124916308F, ___trackingState_2)); }
inline int32_t get_trackingState_2() const { return ___trackingState_2; }
inline int32_t* get_address_of_trackingState_2() { return &___trackingState_2; }
inline void set_trackingState_2(int32_t value)
{
___trackingState_2 = value;
}
inline static int32_t get_offset_of_trackingReason_3() { return static_cast<int32_t>(offsetof(serializableUnityARCamera_tE0928D3EF7C59B9698FF23F97AA0B7124916308F, ___trackingReason_3)); }
inline int32_t get_trackingReason_3() const { return ___trackingReason_3; }
inline int32_t* get_address_of_trackingReason_3() { return &___trackingReason_3; }
inline void set_trackingReason_3(int32_t value)
{
___trackingReason_3 = value;
}
inline static int32_t get_offset_of_videoParams_4() { return static_cast<int32_t>(offsetof(serializableUnityARCamera_tE0928D3EF7C59B9698FF23F97AA0B7124916308F, ___videoParams_4)); }
inline UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1 get_videoParams_4() const { return ___videoParams_4; }
inline UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1 * get_address_of_videoParams_4() { return &___videoParams_4; }
inline void set_videoParams_4(UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1 value)
{
___videoParams_4 = value;
}
inline static int32_t get_offset_of_lightData_5() { return static_cast<int32_t>(offsetof(serializableUnityARCamera_tE0928D3EF7C59B9698FF23F97AA0B7124916308F, ___lightData_5)); }
inline serializableUnityARLightData_tB60386E7B87FA53A01A502CBAA8E6ADC79F6D779 * get_lightData_5() const { return ___lightData_5; }
inline serializableUnityARLightData_tB60386E7B87FA53A01A502CBAA8E6ADC79F6D779 ** get_address_of_lightData_5() { return &___lightData_5; }
inline void set_lightData_5(serializableUnityARLightData_tB60386E7B87FA53A01A502CBAA8E6ADC79F6D779 * value)
{
___lightData_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___lightData_5), (void*)value);
}
inline static int32_t get_offset_of_pointCloud_6() { return static_cast<int32_t>(offsetof(serializableUnityARCamera_tE0928D3EF7C59B9698FF23F97AA0B7124916308F, ___pointCloud_6)); }
inline serializablePointCloud_tA208EAB380DBE420C8976C2D6F40D2A7D8FA0568 * get_pointCloud_6() const { return ___pointCloud_6; }
inline serializablePointCloud_tA208EAB380DBE420C8976C2D6F40D2A7D8FA0568 ** get_address_of_pointCloud_6() { return &___pointCloud_6; }
inline void set_pointCloud_6(serializablePointCloud_tA208EAB380DBE420C8976C2D6F40D2A7D8FA0568 * value)
{
___pointCloud_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___pointCloud_6), (void*)value);
}
inline static int32_t get_offset_of_displayTransform_7() { return static_cast<int32_t>(offsetof(serializableUnityARCamera_tE0928D3EF7C59B9698FF23F97AA0B7124916308F, ___displayTransform_7)); }
inline serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731 * get_displayTransform_7() const { return ___displayTransform_7; }
inline serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731 ** get_address_of_displayTransform_7() { return &___displayTransform_7; }
inline void set_displayTransform_7(serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731 * value)
{
___displayTransform_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___displayTransform_7), (void*)value);
}
inline static int32_t get_offset_of_worldMappingStatus_8() { return static_cast<int32_t>(offsetof(serializableUnityARCamera_tE0928D3EF7C59B9698FF23F97AA0B7124916308F, ___worldMappingStatus_8)); }
inline int32_t get_worldMappingStatus_8() const { return ___worldMappingStatus_8; }
inline int32_t* get_address_of_worldMappingStatus_8() { return &___worldMappingStatus_8; }
inline void set_worldMappingStatus_8(int32_t value)
{
___worldMappingStatus_8 = value;
}
};
// UnityEngine.XR.iOS.Utils.serializableUnityARLightData
struct serializableUnityARLightData_tB60386E7B87FA53A01A502CBAA8E6ADC79F6D779 : public RuntimeObject
{
public:
// UnityEngine.XR.iOS.LightDataType UnityEngine.XR.iOS.Utils.serializableUnityARLightData::whichLight
int32_t ___whichLight_0;
// UnityEngine.XR.iOS.Utils.serializableSHC UnityEngine.XR.iOS.Utils.serializableUnityARLightData::lightSHC
serializableSHC_t11D048FF521D91D82EA8E41C159D007BA006F651 * ___lightSHC_1;
// UnityEngine.XR.iOS.Utils.SerializableVector4 UnityEngine.XR.iOS.Utils.serializableUnityARLightData::primaryLightDirAndIntensity
SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 * ___primaryLightDirAndIntensity_2;
// System.Single UnityEngine.XR.iOS.Utils.serializableUnityARLightData::ambientIntensity
float ___ambientIntensity_3;
// System.Single UnityEngine.XR.iOS.Utils.serializableUnityARLightData::ambientColorTemperature
float ___ambientColorTemperature_4;
public:
inline static int32_t get_offset_of_whichLight_0() { return static_cast<int32_t>(offsetof(serializableUnityARLightData_tB60386E7B87FA53A01A502CBAA8E6ADC79F6D779, ___whichLight_0)); }
inline int32_t get_whichLight_0() const { return ___whichLight_0; }
inline int32_t* get_address_of_whichLight_0() { return &___whichLight_0; }
inline void set_whichLight_0(int32_t value)
{
___whichLight_0 = value;
}
inline static int32_t get_offset_of_lightSHC_1() { return static_cast<int32_t>(offsetof(serializableUnityARLightData_tB60386E7B87FA53A01A502CBAA8E6ADC79F6D779, ___lightSHC_1)); }
inline serializableSHC_t11D048FF521D91D82EA8E41C159D007BA006F651 * get_lightSHC_1() const { return ___lightSHC_1; }
inline serializableSHC_t11D048FF521D91D82EA8E41C159D007BA006F651 ** get_address_of_lightSHC_1() { return &___lightSHC_1; }
inline void set_lightSHC_1(serializableSHC_t11D048FF521D91D82EA8E41C159D007BA006F651 * value)
{
___lightSHC_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___lightSHC_1), (void*)value);
}
inline static int32_t get_offset_of_primaryLightDirAndIntensity_2() { return static_cast<int32_t>(offsetof(serializableUnityARLightData_tB60386E7B87FA53A01A502CBAA8E6ADC79F6D779, ___primaryLightDirAndIntensity_2)); }
inline SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 * get_primaryLightDirAndIntensity_2() const { return ___primaryLightDirAndIntensity_2; }
inline SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 ** get_address_of_primaryLightDirAndIntensity_2() { return &___primaryLightDirAndIntensity_2; }
inline void set_primaryLightDirAndIntensity_2(SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 * value)
{
___primaryLightDirAndIntensity_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___primaryLightDirAndIntensity_2), (void*)value);
}
inline static int32_t get_offset_of_ambientIntensity_3() { return static_cast<int32_t>(offsetof(serializableUnityARLightData_tB60386E7B87FA53A01A502CBAA8E6ADC79F6D779, ___ambientIntensity_3)); }
inline float get_ambientIntensity_3() const { return ___ambientIntensity_3; }
inline float* get_address_of_ambientIntensity_3() { return &___ambientIntensity_3; }
inline void set_ambientIntensity_3(float value)
{
___ambientIntensity_3 = value;
}
inline static int32_t get_offset_of_ambientColorTemperature_4() { return static_cast<int32_t>(offsetof(serializableUnityARLightData_tB60386E7B87FA53A01A502CBAA8E6ADC79F6D779, ___ambientColorTemperature_4)); }
inline float get_ambientColorTemperature_4() const { return ___ambientColorTemperature_4; }
inline float* get_address_of_ambientColorTemperature_4() { return &___ambientColorTemperature_4; }
inline void set_ambientColorTemperature_4(float value)
{
___ambientColorTemperature_4 = value;
}
};
// UnityEngine.XR.iOS.Utils.serializableUnityARPlaneAnchor
struct serializableUnityARPlaneAnchor_tEC527188F73D5D313F88F1871C5CCA575F084AE2 : public RuntimeObject
{
public:
// UnityEngine.XR.iOS.Utils.serializableUnityARMatrix4x4 UnityEngine.XR.iOS.Utils.serializableUnityARPlaneAnchor::worldTransform
serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731 * ___worldTransform_0;
// UnityEngine.XR.iOS.Utils.SerializableVector4 UnityEngine.XR.iOS.Utils.serializableUnityARPlaneAnchor::center
SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 * ___center_1;
// UnityEngine.XR.iOS.Utils.SerializableVector4 UnityEngine.XR.iOS.Utils.serializableUnityARPlaneAnchor::extent
SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 * ___extent_2;
// UnityEngine.XR.iOS.ARPlaneAnchorAlignment UnityEngine.XR.iOS.Utils.serializableUnityARPlaneAnchor::planeAlignment
int64_t ___planeAlignment_3;
// UnityEngine.XR.iOS.Utils.serializablePlaneGeometry UnityEngine.XR.iOS.Utils.serializableUnityARPlaneAnchor::planeGeometry
serializablePlaneGeometry_t32B3123C8DFA669D8FAE918A37B3B5D9FEBDB3D9 * ___planeGeometry_4;
// System.Byte[] UnityEngine.XR.iOS.Utils.serializableUnityARPlaneAnchor::identifierStr
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___identifierStr_5;
public:
inline static int32_t get_offset_of_worldTransform_0() { return static_cast<int32_t>(offsetof(serializableUnityARPlaneAnchor_tEC527188F73D5D313F88F1871C5CCA575F084AE2, ___worldTransform_0)); }
inline serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731 * get_worldTransform_0() const { return ___worldTransform_0; }
inline serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731 ** get_address_of_worldTransform_0() { return &___worldTransform_0; }
inline void set_worldTransform_0(serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731 * value)
{
___worldTransform_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___worldTransform_0), (void*)value);
}
inline static int32_t get_offset_of_center_1() { return static_cast<int32_t>(offsetof(serializableUnityARPlaneAnchor_tEC527188F73D5D313F88F1871C5CCA575F084AE2, ___center_1)); }
inline SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 * get_center_1() const { return ___center_1; }
inline SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 ** get_address_of_center_1() { return &___center_1; }
inline void set_center_1(SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 * value)
{
___center_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___center_1), (void*)value);
}
inline static int32_t get_offset_of_extent_2() { return static_cast<int32_t>(offsetof(serializableUnityARPlaneAnchor_tEC527188F73D5D313F88F1871C5CCA575F084AE2, ___extent_2)); }
inline SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 * get_extent_2() const { return ___extent_2; }
inline SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 ** get_address_of_extent_2() { return &___extent_2; }
inline void set_extent_2(SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028 * value)
{
___extent_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___extent_2), (void*)value);
}
inline static int32_t get_offset_of_planeAlignment_3() { return static_cast<int32_t>(offsetof(serializableUnityARPlaneAnchor_tEC527188F73D5D313F88F1871C5CCA575F084AE2, ___planeAlignment_3)); }
inline int64_t get_planeAlignment_3() const { return ___planeAlignment_3; }
inline int64_t* get_address_of_planeAlignment_3() { return &___planeAlignment_3; }
inline void set_planeAlignment_3(int64_t value)
{
___planeAlignment_3 = value;
}
inline static int32_t get_offset_of_planeGeometry_4() { return static_cast<int32_t>(offsetof(serializableUnityARPlaneAnchor_tEC527188F73D5D313F88F1871C5CCA575F084AE2, ___planeGeometry_4)); }
inline serializablePlaneGeometry_t32B3123C8DFA669D8FAE918A37B3B5D9FEBDB3D9 * get_planeGeometry_4() const { return ___planeGeometry_4; }
inline serializablePlaneGeometry_t32B3123C8DFA669D8FAE918A37B3B5D9FEBDB3D9 ** get_address_of_planeGeometry_4() { return &___planeGeometry_4; }
inline void set_planeGeometry_4(serializablePlaneGeometry_t32B3123C8DFA669D8FAE918A37B3B5D9FEBDB3D9 * value)
{
___planeGeometry_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___planeGeometry_4), (void*)value);
}
inline static int32_t get_offset_of_identifierStr_5() { return static_cast<int32_t>(offsetof(serializableUnityARPlaneAnchor_tEC527188F73D5D313F88F1871C5CCA575F084AE2, ___identifierStr_5)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_identifierStr_5() const { return ___identifierStr_5; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_identifierStr_5() { return &___identifierStr_5; }
inline void set_identifierStr_5(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___identifierStr_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___identifierStr_5), (void*)value);
}
};
// ARReferenceImage
struct ARReferenceImage_tB296F0D336F71A9B79F9D4C826391CBC8A0D2F92 : public ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734
{
public:
// System.String ARReferenceImage::imageName
String_t* ___imageName_4;
// UnityEngine.Texture2D ARReferenceImage::imageTexture
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___imageTexture_5;
// System.Single ARReferenceImage::physicalSize
float ___physicalSize_6;
public:
inline static int32_t get_offset_of_imageName_4() { return static_cast<int32_t>(offsetof(ARReferenceImage_tB296F0D336F71A9B79F9D4C826391CBC8A0D2F92, ___imageName_4)); }
inline String_t* get_imageName_4() const { return ___imageName_4; }
inline String_t** get_address_of_imageName_4() { return &___imageName_4; }
inline void set_imageName_4(String_t* value)
{
___imageName_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___imageName_4), (void*)value);
}
inline static int32_t get_offset_of_imageTexture_5() { return static_cast<int32_t>(offsetof(ARReferenceImage_tB296F0D336F71A9B79F9D4C826391CBC8A0D2F92, ___imageTexture_5)); }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * get_imageTexture_5() const { return ___imageTexture_5; }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C ** get_address_of_imageTexture_5() { return &___imageTexture_5; }
inline void set_imageTexture_5(Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * value)
{
___imageTexture_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___imageTexture_5), (void*)value);
}
inline static int32_t get_offset_of_physicalSize_6() { return static_cast<int32_t>(offsetof(ARReferenceImage_tB296F0D336F71A9B79F9D4C826391CBC8A0D2F92, ___physicalSize_6)); }
inline float get_physicalSize_6() const { return ___physicalSize_6; }
inline float* get_address_of_physicalSize_6() { return &___physicalSize_6; }
inline void set_physicalSize_6(float value)
{
___physicalSize_6 = value;
}
};
// ARReferenceImagesSet
struct ARReferenceImagesSet_tE637611976378C4D1057CE06DD14F87EB52174E0 : public ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734
{
public:
// System.String ARReferenceImagesSet::resourceGroupName
String_t* ___resourceGroupName_4;
// ARReferenceImage[] ARReferenceImagesSet::referenceImages
ARReferenceImageU5BU5D_tEE8225BA73F300EDCBF3BEF1C0060740AD0890E3* ___referenceImages_5;
public:
inline static int32_t get_offset_of_resourceGroupName_4() { return static_cast<int32_t>(offsetof(ARReferenceImagesSet_tE637611976378C4D1057CE06DD14F87EB52174E0, ___resourceGroupName_4)); }
inline String_t* get_resourceGroupName_4() const { return ___resourceGroupName_4; }
inline String_t** get_address_of_resourceGroupName_4() { return &___resourceGroupName_4; }
inline void set_resourceGroupName_4(String_t* value)
{
___resourceGroupName_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___resourceGroupName_4), (void*)value);
}
inline static int32_t get_offset_of_referenceImages_5() { return static_cast<int32_t>(offsetof(ARReferenceImagesSet_tE637611976378C4D1057CE06DD14F87EB52174E0, ___referenceImages_5)); }
inline ARReferenceImageU5BU5D_tEE8225BA73F300EDCBF3BEF1C0060740AD0890E3* get_referenceImages_5() const { return ___referenceImages_5; }
inline ARReferenceImageU5BU5D_tEE8225BA73F300EDCBF3BEF1C0060740AD0890E3** get_address_of_referenceImages_5() { return &___referenceImages_5; }
inline void set_referenceImages_5(ARReferenceImageU5BU5D_tEE8225BA73F300EDCBF3BEF1C0060740AD0890E3* value)
{
___referenceImages_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___referenceImages_5), (void*)value);
}
};
// ARReferenceObjectAsset
struct ARReferenceObjectAsset_t1CCE48A98E8094085A1E7972AB5B3B9FAC93AA77 : public ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734
{
public:
// System.String ARReferenceObjectAsset::objectName
String_t* ___objectName_4;
// UnityEngine.Object ARReferenceObjectAsset::referenceObject
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___referenceObject_5;
public:
inline static int32_t get_offset_of_objectName_4() { return static_cast<int32_t>(offsetof(ARReferenceObjectAsset_t1CCE48A98E8094085A1E7972AB5B3B9FAC93AA77, ___objectName_4)); }
inline String_t* get_objectName_4() const { return ___objectName_4; }
inline String_t** get_address_of_objectName_4() { return &___objectName_4; }
inline void set_objectName_4(String_t* value)
{
___objectName_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___objectName_4), (void*)value);
}
inline static int32_t get_offset_of_referenceObject_5() { return static_cast<int32_t>(offsetof(ARReferenceObjectAsset_t1CCE48A98E8094085A1E7972AB5B3B9FAC93AA77, ___referenceObject_5)); }
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * get_referenceObject_5() const { return ___referenceObject_5; }
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 ** get_address_of_referenceObject_5() { return &___referenceObject_5; }
inline void set_referenceObject_5(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * value)
{
___referenceObject_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___referenceObject_5), (void*)value);
}
};
// ARReferenceObjectsSetAsset
struct ARReferenceObjectsSetAsset_t0CF5B17AAFFE42A9741BCD5431117FDD025D334E : public ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734
{
public:
// System.String ARReferenceObjectsSetAsset::resourceGroupName
String_t* ___resourceGroupName_4;
// ARReferenceObjectAsset[] ARReferenceObjectsSetAsset::referenceObjectAssets
ARReferenceObjectAssetU5BU5D_t37818510D74B90DE83CD7F678BB3D47FDEF6F339* ___referenceObjectAssets_5;
public:
inline static int32_t get_offset_of_resourceGroupName_4() { return static_cast<int32_t>(offsetof(ARReferenceObjectsSetAsset_t0CF5B17AAFFE42A9741BCD5431117FDD025D334E, ___resourceGroupName_4)); }
inline String_t* get_resourceGroupName_4() const { return ___resourceGroupName_4; }
inline String_t** get_address_of_resourceGroupName_4() { return &___resourceGroupName_4; }
inline void set_resourceGroupName_4(String_t* value)
{
___resourceGroupName_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___resourceGroupName_4), (void*)value);
}
inline static int32_t get_offset_of_referenceObjectAssets_5() { return static_cast<int32_t>(offsetof(ARReferenceObjectsSetAsset_t0CF5B17AAFFE42A9741BCD5431117FDD025D334E, ___referenceObjectAssets_5)); }
inline ARReferenceObjectAssetU5BU5D_t37818510D74B90DE83CD7F678BB3D47FDEF6F339* get_referenceObjectAssets_5() const { return ___referenceObjectAssets_5; }
inline ARReferenceObjectAssetU5BU5D_t37818510D74B90DE83CD7F678BB3D47FDEF6F339** get_address_of_referenceObjectAssets_5() { return &___referenceObjectAssets_5; }
inline void set_referenceObjectAssets_5(ARReferenceObjectAssetU5BU5D_t37818510D74B90DE83CD7F678BB3D47FDEF6F339* value)
{
___referenceObjectAssets_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___referenceObjectAssets_5), (void*)value);
}
};
// DigitalRuby.PyroParticles.FireProjectileCollisionDelegate
struct FireProjectileCollisionDelegate_t1E069C484F215AB28294487D1CC250DCADA87033 : public MulticastDelegate_t
{
public:
public:
};
// DigitalRuby.PyroParticles.MeteorSwarmCollisionDelegate
struct MeteorSwarmCollisionDelegate_tAE89940FA15088B9898C111F6B1BB08F95329AF3 : public MulticastDelegate_t
{
public:
public:
};
// UnityARKitPluginSettings
struct UnityARKitPluginSettings_t5D739DA8A1B9154D5B31405D268B68D2B27A243D : public ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734
{
public:
// System.Boolean UnityARKitPluginSettings::m_ARKitUsesFacetracking
bool ___m_ARKitUsesFacetracking_4;
// System.Boolean UnityARKitPluginSettings::AppRequiresARKit
bool ___AppRequiresARKit_5;
public:
inline static int32_t get_offset_of_m_ARKitUsesFacetracking_4() { return static_cast<int32_t>(offsetof(UnityARKitPluginSettings_t5D739DA8A1B9154D5B31405D268B68D2B27A243D, ___m_ARKitUsesFacetracking_4)); }
inline bool get_m_ARKitUsesFacetracking_4() const { return ___m_ARKitUsesFacetracking_4; }
inline bool* get_address_of_m_ARKitUsesFacetracking_4() { return &___m_ARKitUsesFacetracking_4; }
inline void set_m_ARKitUsesFacetracking_4(bool value)
{
___m_ARKitUsesFacetracking_4 = value;
}
inline static int32_t get_offset_of_AppRequiresARKit_5() { return static_cast<int32_t>(offsetof(UnityARKitPluginSettings_t5D739DA8A1B9154D5B31405D268B68D2B27A243D, ___AppRequiresARKit_5)); }
inline bool get_AppRequiresARKit_5() const { return ___AppRequiresARKit_5; }
inline bool* get_address_of_AppRequiresARKit_5() { return &___AppRequiresARKit_5; }
inline void set_AppRequiresARKit_5(bool value)
{
___AppRequiresARKit_5 = value;
}
};
// UnityEngine.Analytics.AnalyticsSessionInfo_SessionStateChanged
struct SessionStateChanged_t9084549A636BD45086D66CC6765DA8C3DD31066F : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.AnimationClip
struct AnimationClip_t336CFC94F6275526DC0B9BEEF833D4D89D6DEDDE : public Motion_t497BF9244B6A769D1AE925C3876B187C56C8CF8F
{
public:
public:
};
// UnityEngine.AnimatorOverrideController
struct AnimatorOverrideController_t130F04B57E753FD4288EF3235699ABE7C88FF312 : public RuntimeAnimatorController_tDA6672C8194522C2F60F8F2F241657E57C3520BD
{
public:
// UnityEngine.AnimatorOverrideController_OnOverrideControllerDirtyCallback UnityEngine.AnimatorOverrideController::OnOverrideControllerDirty
OnOverrideControllerDirtyCallback_t73560E6E30067C09BC58A15F9D2726051B077E2E * ___OnOverrideControllerDirty_4;
public:
inline static int32_t get_offset_of_OnOverrideControllerDirty_4() { return static_cast<int32_t>(offsetof(AnimatorOverrideController_t130F04B57E753FD4288EF3235699ABE7C88FF312, ___OnOverrideControllerDirty_4)); }
inline OnOverrideControllerDirtyCallback_t73560E6E30067C09BC58A15F9D2726051B077E2E * get_OnOverrideControllerDirty_4() const { return ___OnOverrideControllerDirty_4; }
inline OnOverrideControllerDirtyCallback_t73560E6E30067C09BC58A15F9D2726051B077E2E ** get_address_of_OnOverrideControllerDirty_4() { return &___OnOverrideControllerDirty_4; }
inline void set_OnOverrideControllerDirty_4(OnOverrideControllerDirtyCallback_t73560E6E30067C09BC58A15F9D2726051B077E2E * value)
{
___OnOverrideControllerDirty_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnOverrideControllerDirty_4), (void*)value);
}
};
// UnityEngine.AnimatorOverrideController_OnOverrideControllerDirtyCallback
struct OnOverrideControllerDirtyCallback_t73560E6E30067C09BC58A15F9D2726051B077E2E : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.AudioClip_PCMReaderCallback
struct PCMReaderCallback_t9B87AB13DCD37957B045554BF28A57697E6B8EFB : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.AudioClip_PCMSetPositionCallback
struct PCMSetPositionCallback_t092ED33043C0279B5E4D343EBCBD516CEF260801 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.AudioSettings_AudioConfigurationChangeHandler
struct AudioConfigurationChangeHandler_t8E0E05D0198D95B5412DC716F87D97020EF54926 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Behaviour
struct Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8 : public Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621
{
public:
public:
};
// UnityEngine.Canvas_WillRenderCanvases
struct WillRenderCanvases_tBD5AD090B5938021DEAA679A5AEEA790F60A8BEE : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.CanvasRenderer
struct CanvasRenderer_tB4D9C9FE77FD5C9C4546FC022D6E956960BC2B72 : public Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621
{
public:
// System.Boolean UnityEngine.CanvasRenderer::<isMask>k__BackingField
bool ___U3CisMaskU3Ek__BackingField_4;
public:
inline static int32_t get_offset_of_U3CisMaskU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(CanvasRenderer_tB4D9C9FE77FD5C9C4546FC022D6E956960BC2B72, ___U3CisMaskU3Ek__BackingField_4)); }
inline bool get_U3CisMaskU3Ek__BackingField_4() const { return ___U3CisMaskU3Ek__BackingField_4; }
inline bool* get_address_of_U3CisMaskU3Ek__BackingField_4() { return &___U3CisMaskU3Ek__BackingField_4; }
inline void set_U3CisMaskU3Ek__BackingField_4(bool value)
{
___U3CisMaskU3Ek__BackingField_4 = value;
}
};
// UnityEngine.Experimental.Audio.AudioSampleProvider_ConsumeSampleFramesNativeFunction
struct ConsumeSampleFramesNativeFunction_tC1E0B1BFCF2C3D7F87D66FCFA2022369327D931D : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Experimental.Audio.AudioSampleProvider_SampleFramesHandler
struct SampleFramesHandler_t5179C92AFBB393A85144E9134A862C161726F6AF : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Experimental.XR.GestureHoldEvent
struct GestureHoldEvent_tE6ACA548C0C4D8F8C3B197066BD5E7B46A6B576A
{
public:
// UnityEngine.Experimental.XR.NativeGestureHoldEvent UnityEngine.Experimental.XR.GestureHoldEvent::<nativeEvent>k__BackingField
NativeGestureHoldEvent_t730220DBDB536EA39C176DF1AEDA918E180472DD ___U3CnativeEventU3Ek__BackingField_0;
// UnityEngine.Experimental.XR.XRGestureSubsystem UnityEngine.Experimental.XR.GestureHoldEvent::<gestureSubsystem>k__BackingField
XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D * ___U3CgestureSubsystemU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CnativeEventU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(GestureHoldEvent_tE6ACA548C0C4D8F8C3B197066BD5E7B46A6B576A, ___U3CnativeEventU3Ek__BackingField_0)); }
inline NativeGestureHoldEvent_t730220DBDB536EA39C176DF1AEDA918E180472DD get_U3CnativeEventU3Ek__BackingField_0() const { return ___U3CnativeEventU3Ek__BackingField_0; }
inline NativeGestureHoldEvent_t730220DBDB536EA39C176DF1AEDA918E180472DD * get_address_of_U3CnativeEventU3Ek__BackingField_0() { return &___U3CnativeEventU3Ek__BackingField_0; }
inline void set_U3CnativeEventU3Ek__BackingField_0(NativeGestureHoldEvent_t730220DBDB536EA39C176DF1AEDA918E180472DD value)
{
___U3CnativeEventU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CgestureSubsystemU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(GestureHoldEvent_tE6ACA548C0C4D8F8C3B197066BD5E7B46A6B576A, ___U3CgestureSubsystemU3Ek__BackingField_1)); }
inline XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D * get_U3CgestureSubsystemU3Ek__BackingField_1() const { return ___U3CgestureSubsystemU3Ek__BackingField_1; }
inline XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D ** get_address_of_U3CgestureSubsystemU3Ek__BackingField_1() { return &___U3CgestureSubsystemU3Ek__BackingField_1; }
inline void set_U3CgestureSubsystemU3Ek__BackingField_1(XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D * value)
{
___U3CgestureSubsystemU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CgestureSubsystemU3Ek__BackingField_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Experimental.XR.GestureHoldEvent
struct GestureHoldEvent_tE6ACA548C0C4D8F8C3B197066BD5E7B46A6B576A_marshaled_pinvoke
{
NativeGestureHoldEvent_t730220DBDB536EA39C176DF1AEDA918E180472DD ___U3CnativeEventU3Ek__BackingField_0;
XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D * ___U3CgestureSubsystemU3Ek__BackingField_1;
};
// Native definition for COM marshalling of UnityEngine.Experimental.XR.GestureHoldEvent
struct GestureHoldEvent_tE6ACA548C0C4D8F8C3B197066BD5E7B46A6B576A_marshaled_com
{
NativeGestureHoldEvent_t730220DBDB536EA39C176DF1AEDA918E180472DD ___U3CnativeEventU3Ek__BackingField_0;
XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D * ___U3CgestureSubsystemU3Ek__BackingField_1;
};
// UnityEngine.Experimental.XR.GestureManipulationEvent
struct GestureManipulationEvent_t80F0163CC6437F2E1BC5B773E9599AF499D08E4F
{
public:
// UnityEngine.Experimental.XR.NativeGestureManipulationEvent UnityEngine.Experimental.XR.GestureManipulationEvent::<nativeEvent>k__BackingField
NativeGestureManipulationEvent_t89FDDF7354D6EAB482DC00A9B0ED9205E82E4321 ___U3CnativeEventU3Ek__BackingField_0;
// UnityEngine.Experimental.XR.XRGestureSubsystem UnityEngine.Experimental.XR.GestureManipulationEvent::<gestureSubsystem>k__BackingField
XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D * ___U3CgestureSubsystemU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CnativeEventU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(GestureManipulationEvent_t80F0163CC6437F2E1BC5B773E9599AF499D08E4F, ___U3CnativeEventU3Ek__BackingField_0)); }
inline NativeGestureManipulationEvent_t89FDDF7354D6EAB482DC00A9B0ED9205E82E4321 get_U3CnativeEventU3Ek__BackingField_0() const { return ___U3CnativeEventU3Ek__BackingField_0; }
inline NativeGestureManipulationEvent_t89FDDF7354D6EAB482DC00A9B0ED9205E82E4321 * get_address_of_U3CnativeEventU3Ek__BackingField_0() { return &___U3CnativeEventU3Ek__BackingField_0; }
inline void set_U3CnativeEventU3Ek__BackingField_0(NativeGestureManipulationEvent_t89FDDF7354D6EAB482DC00A9B0ED9205E82E4321 value)
{
___U3CnativeEventU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CgestureSubsystemU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(GestureManipulationEvent_t80F0163CC6437F2E1BC5B773E9599AF499D08E4F, ___U3CgestureSubsystemU3Ek__BackingField_1)); }
inline XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D * get_U3CgestureSubsystemU3Ek__BackingField_1() const { return ___U3CgestureSubsystemU3Ek__BackingField_1; }
inline XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D ** get_address_of_U3CgestureSubsystemU3Ek__BackingField_1() { return &___U3CgestureSubsystemU3Ek__BackingField_1; }
inline void set_U3CgestureSubsystemU3Ek__BackingField_1(XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D * value)
{
___U3CgestureSubsystemU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CgestureSubsystemU3Ek__BackingField_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Experimental.XR.GestureManipulationEvent
struct GestureManipulationEvent_t80F0163CC6437F2E1BC5B773E9599AF499D08E4F_marshaled_pinvoke
{
NativeGestureManipulationEvent_t89FDDF7354D6EAB482DC00A9B0ED9205E82E4321 ___U3CnativeEventU3Ek__BackingField_0;
XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D * ___U3CgestureSubsystemU3Ek__BackingField_1;
};
// Native definition for COM marshalling of UnityEngine.Experimental.XR.GestureManipulationEvent
struct GestureManipulationEvent_t80F0163CC6437F2E1BC5B773E9599AF499D08E4F_marshaled_com
{
NativeGestureManipulationEvent_t89FDDF7354D6EAB482DC00A9B0ED9205E82E4321 ___U3CnativeEventU3Ek__BackingField_0;
XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D * ___U3CgestureSubsystemU3Ek__BackingField_1;
};
// UnityEngine.Experimental.XR.GestureNavigationEvent
struct GestureNavigationEvent_t3718B4FDF2C71A07DFAB23CE2E27D1D022417866
{
public:
// UnityEngine.Experimental.XR.NativeGestureNavigationEvent UnityEngine.Experimental.XR.GestureNavigationEvent::<nativeEvent>k__BackingField
NativeGestureNavigationEvent_t7A61BC08AC1387B9A0F756E471D7FE47B7834890 ___U3CnativeEventU3Ek__BackingField_0;
// UnityEngine.Experimental.XR.XRGestureSubsystem UnityEngine.Experimental.XR.GestureNavigationEvent::<gestureSubsystem>k__BackingField
XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D * ___U3CgestureSubsystemU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CnativeEventU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(GestureNavigationEvent_t3718B4FDF2C71A07DFAB23CE2E27D1D022417866, ___U3CnativeEventU3Ek__BackingField_0)); }
inline NativeGestureNavigationEvent_t7A61BC08AC1387B9A0F756E471D7FE47B7834890 get_U3CnativeEventU3Ek__BackingField_0() const { return ___U3CnativeEventU3Ek__BackingField_0; }
inline NativeGestureNavigationEvent_t7A61BC08AC1387B9A0F756E471D7FE47B7834890 * get_address_of_U3CnativeEventU3Ek__BackingField_0() { return &___U3CnativeEventU3Ek__BackingField_0; }
inline void set_U3CnativeEventU3Ek__BackingField_0(NativeGestureNavigationEvent_t7A61BC08AC1387B9A0F756E471D7FE47B7834890 value)
{
___U3CnativeEventU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CgestureSubsystemU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(GestureNavigationEvent_t3718B4FDF2C71A07DFAB23CE2E27D1D022417866, ___U3CgestureSubsystemU3Ek__BackingField_1)); }
inline XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D * get_U3CgestureSubsystemU3Ek__BackingField_1() const { return ___U3CgestureSubsystemU3Ek__BackingField_1; }
inline XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D ** get_address_of_U3CgestureSubsystemU3Ek__BackingField_1() { return &___U3CgestureSubsystemU3Ek__BackingField_1; }
inline void set_U3CgestureSubsystemU3Ek__BackingField_1(XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D * value)
{
___U3CgestureSubsystemU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CgestureSubsystemU3Ek__BackingField_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Experimental.XR.GestureNavigationEvent
struct GestureNavigationEvent_t3718B4FDF2C71A07DFAB23CE2E27D1D022417866_marshaled_pinvoke
{
NativeGestureNavigationEvent_t7A61BC08AC1387B9A0F756E471D7FE47B7834890 ___U3CnativeEventU3Ek__BackingField_0;
XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D * ___U3CgestureSubsystemU3Ek__BackingField_1;
};
// Native definition for COM marshalling of UnityEngine.Experimental.XR.GestureNavigationEvent
struct GestureNavigationEvent_t3718B4FDF2C71A07DFAB23CE2E27D1D022417866_marshaled_com
{
NativeGestureNavigationEvent_t7A61BC08AC1387B9A0F756E471D7FE47B7834890 ___U3CnativeEventU3Ek__BackingField_0;
XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D * ___U3CgestureSubsystemU3Ek__BackingField_1;
};
// UnityEngine.Experimental.XR.GestureRecognitionEvent
struct GestureRecognitionEvent_tBB5EFD6FF7697E5F8FDFB64BA9A51003282AEE68
{
public:
// UnityEngine.Experimental.XR.NativeGestureRecognitionEvent UnityEngine.Experimental.XR.GestureRecognitionEvent::<nativeEvent>k__BackingField
NativeGestureRecognitionEvent_t14CAF4301F20BCE91B9E879F6A1605D14DD42519 ___U3CnativeEventU3Ek__BackingField_0;
// UnityEngine.Experimental.XR.XRGestureSubsystem UnityEngine.Experimental.XR.GestureRecognitionEvent::<gestureSubsystem>k__BackingField
XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D * ___U3CgestureSubsystemU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CnativeEventU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(GestureRecognitionEvent_tBB5EFD6FF7697E5F8FDFB64BA9A51003282AEE68, ___U3CnativeEventU3Ek__BackingField_0)); }
inline NativeGestureRecognitionEvent_t14CAF4301F20BCE91B9E879F6A1605D14DD42519 get_U3CnativeEventU3Ek__BackingField_0() const { return ___U3CnativeEventU3Ek__BackingField_0; }
inline NativeGestureRecognitionEvent_t14CAF4301F20BCE91B9E879F6A1605D14DD42519 * get_address_of_U3CnativeEventU3Ek__BackingField_0() { return &___U3CnativeEventU3Ek__BackingField_0; }
inline void set_U3CnativeEventU3Ek__BackingField_0(NativeGestureRecognitionEvent_t14CAF4301F20BCE91B9E879F6A1605D14DD42519 value)
{
___U3CnativeEventU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CgestureSubsystemU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(GestureRecognitionEvent_tBB5EFD6FF7697E5F8FDFB64BA9A51003282AEE68, ___U3CgestureSubsystemU3Ek__BackingField_1)); }
inline XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D * get_U3CgestureSubsystemU3Ek__BackingField_1() const { return ___U3CgestureSubsystemU3Ek__BackingField_1; }
inline XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D ** get_address_of_U3CgestureSubsystemU3Ek__BackingField_1() { return &___U3CgestureSubsystemU3Ek__BackingField_1; }
inline void set_U3CgestureSubsystemU3Ek__BackingField_1(XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D * value)
{
___U3CgestureSubsystemU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CgestureSubsystemU3Ek__BackingField_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Experimental.XR.GestureRecognitionEvent
struct GestureRecognitionEvent_tBB5EFD6FF7697E5F8FDFB64BA9A51003282AEE68_marshaled_pinvoke
{
NativeGestureRecognitionEvent_t14CAF4301F20BCE91B9E879F6A1605D14DD42519 ___U3CnativeEventU3Ek__BackingField_0;
XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D * ___U3CgestureSubsystemU3Ek__BackingField_1;
};
// Native definition for COM marshalling of UnityEngine.Experimental.XR.GestureRecognitionEvent
struct GestureRecognitionEvent_tBB5EFD6FF7697E5F8FDFB64BA9A51003282AEE68_marshaled_com
{
NativeGestureRecognitionEvent_t14CAF4301F20BCE91B9E879F6A1605D14DD42519 ___U3CnativeEventU3Ek__BackingField_0;
XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D * ___U3CgestureSubsystemU3Ek__BackingField_1;
};
// UnityEngine.Experimental.XR.GestureTappedEvent
struct GestureTappedEvent_t793E61A597E40572998004754809BBF49D738535
{
public:
// UnityEngine.Experimental.XR.NativeGestureTappedEvent UnityEngine.Experimental.XR.GestureTappedEvent::<nativeEvent>k__BackingField
NativeGestureTappedEvent_tBC0278D6741BF5A2EFEA94AE6F13B94BB8F27E97 ___U3CnativeEventU3Ek__BackingField_0;
// UnityEngine.Experimental.XR.XRGestureSubsystem UnityEngine.Experimental.XR.GestureTappedEvent::<gestureSubsystem>k__BackingField
XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D * ___U3CgestureSubsystemU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CnativeEventU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(GestureTappedEvent_t793E61A597E40572998004754809BBF49D738535, ___U3CnativeEventU3Ek__BackingField_0)); }
inline NativeGestureTappedEvent_tBC0278D6741BF5A2EFEA94AE6F13B94BB8F27E97 get_U3CnativeEventU3Ek__BackingField_0() const { return ___U3CnativeEventU3Ek__BackingField_0; }
inline NativeGestureTappedEvent_tBC0278D6741BF5A2EFEA94AE6F13B94BB8F27E97 * get_address_of_U3CnativeEventU3Ek__BackingField_0() { return &___U3CnativeEventU3Ek__BackingField_0; }
inline void set_U3CnativeEventU3Ek__BackingField_0(NativeGestureTappedEvent_tBC0278D6741BF5A2EFEA94AE6F13B94BB8F27E97 value)
{
___U3CnativeEventU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CgestureSubsystemU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(GestureTappedEvent_t793E61A597E40572998004754809BBF49D738535, ___U3CgestureSubsystemU3Ek__BackingField_1)); }
inline XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D * get_U3CgestureSubsystemU3Ek__BackingField_1() const { return ___U3CgestureSubsystemU3Ek__BackingField_1; }
inline XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D ** get_address_of_U3CgestureSubsystemU3Ek__BackingField_1() { return &___U3CgestureSubsystemU3Ek__BackingField_1; }
inline void set_U3CgestureSubsystemU3Ek__BackingField_1(XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D * value)
{
___U3CgestureSubsystemU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CgestureSubsystemU3Ek__BackingField_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Experimental.XR.GestureTappedEvent
struct GestureTappedEvent_t793E61A597E40572998004754809BBF49D738535_marshaled_pinvoke
{
NativeGestureTappedEvent_tBC0278D6741BF5A2EFEA94AE6F13B94BB8F27E97 ___U3CnativeEventU3Ek__BackingField_0;
XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D * ___U3CgestureSubsystemU3Ek__BackingField_1;
};
// Native definition for COM marshalling of UnityEngine.Experimental.XR.GestureTappedEvent
struct GestureTappedEvent_t793E61A597E40572998004754809BBF49D738535_marshaled_com
{
NativeGestureTappedEvent_tBC0278D6741BF5A2EFEA94AE6F13B94BB8F27E97 ___U3CnativeEventU3Ek__BackingField_0;
XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D * ___U3CgestureSubsystemU3Ek__BackingField_1;
};
// UnityEngine.Experimental.XR.PlaneAddedEventArgs
struct PlaneAddedEventArgs_t06BF8697BA4D8CD3A8C9AB8DF51F8D01D2910002
{
public:
// UnityEngine.Experimental.XR.XRPlaneSubsystem UnityEngine.Experimental.XR.PlaneAddedEventArgs::<PlaneSubsystem>k__BackingField
XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * ___U3CPlaneSubsystemU3Ek__BackingField_0;
// UnityEngine.Experimental.XR.BoundedPlane UnityEngine.Experimental.XR.PlaneAddedEventArgs::<Plane>k__BackingField
BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 ___U3CPlaneU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CPlaneSubsystemU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(PlaneAddedEventArgs_t06BF8697BA4D8CD3A8C9AB8DF51F8D01D2910002, ___U3CPlaneSubsystemU3Ek__BackingField_0)); }
inline XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * get_U3CPlaneSubsystemU3Ek__BackingField_0() const { return ___U3CPlaneSubsystemU3Ek__BackingField_0; }
inline XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B ** get_address_of_U3CPlaneSubsystemU3Ek__BackingField_0() { return &___U3CPlaneSubsystemU3Ek__BackingField_0; }
inline void set_U3CPlaneSubsystemU3Ek__BackingField_0(XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * value)
{
___U3CPlaneSubsystemU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPlaneSubsystemU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CPlaneU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(PlaneAddedEventArgs_t06BF8697BA4D8CD3A8C9AB8DF51F8D01D2910002, ___U3CPlaneU3Ek__BackingField_1)); }
inline BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 get_U3CPlaneU3Ek__BackingField_1() const { return ___U3CPlaneU3Ek__BackingField_1; }
inline BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 * get_address_of_U3CPlaneU3Ek__BackingField_1() { return &___U3CPlaneU3Ek__BackingField_1; }
inline void set_U3CPlaneU3Ek__BackingField_1(BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 value)
{
___U3CPlaneU3Ek__BackingField_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Experimental.XR.PlaneAddedEventArgs
struct PlaneAddedEventArgs_t06BF8697BA4D8CD3A8C9AB8DF51F8D01D2910002_marshaled_pinvoke
{
XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * ___U3CPlaneSubsystemU3Ek__BackingField_0;
BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 ___U3CPlaneU3Ek__BackingField_1;
};
// Native definition for COM marshalling of UnityEngine.Experimental.XR.PlaneAddedEventArgs
struct PlaneAddedEventArgs_t06BF8697BA4D8CD3A8C9AB8DF51F8D01D2910002_marshaled_com
{
XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * ___U3CPlaneSubsystemU3Ek__BackingField_0;
BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 ___U3CPlaneU3Ek__BackingField_1;
};
// UnityEngine.Experimental.XR.PlaneRemovedEventArgs
struct PlaneRemovedEventArgs_t21E9C5879A8317E5F72263ED2235116F609E4C6A
{
public:
// UnityEngine.Experimental.XR.XRPlaneSubsystem UnityEngine.Experimental.XR.PlaneRemovedEventArgs::<PlaneSubsystem>k__BackingField
XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * ___U3CPlaneSubsystemU3Ek__BackingField_0;
// UnityEngine.Experimental.XR.BoundedPlane UnityEngine.Experimental.XR.PlaneRemovedEventArgs::<Plane>k__BackingField
BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 ___U3CPlaneU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CPlaneSubsystemU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(PlaneRemovedEventArgs_t21E9C5879A8317E5F72263ED2235116F609E4C6A, ___U3CPlaneSubsystemU3Ek__BackingField_0)); }
inline XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * get_U3CPlaneSubsystemU3Ek__BackingField_0() const { return ___U3CPlaneSubsystemU3Ek__BackingField_0; }
inline XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B ** get_address_of_U3CPlaneSubsystemU3Ek__BackingField_0() { return &___U3CPlaneSubsystemU3Ek__BackingField_0; }
inline void set_U3CPlaneSubsystemU3Ek__BackingField_0(XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * value)
{
___U3CPlaneSubsystemU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPlaneSubsystemU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CPlaneU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(PlaneRemovedEventArgs_t21E9C5879A8317E5F72263ED2235116F609E4C6A, ___U3CPlaneU3Ek__BackingField_1)); }
inline BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 get_U3CPlaneU3Ek__BackingField_1() const { return ___U3CPlaneU3Ek__BackingField_1; }
inline BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 * get_address_of_U3CPlaneU3Ek__BackingField_1() { return &___U3CPlaneU3Ek__BackingField_1; }
inline void set_U3CPlaneU3Ek__BackingField_1(BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 value)
{
___U3CPlaneU3Ek__BackingField_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Experimental.XR.PlaneRemovedEventArgs
struct PlaneRemovedEventArgs_t21E9C5879A8317E5F72263ED2235116F609E4C6A_marshaled_pinvoke
{
XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * ___U3CPlaneSubsystemU3Ek__BackingField_0;
BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 ___U3CPlaneU3Ek__BackingField_1;
};
// Native definition for COM marshalling of UnityEngine.Experimental.XR.PlaneRemovedEventArgs
struct PlaneRemovedEventArgs_t21E9C5879A8317E5F72263ED2235116F609E4C6A_marshaled_com
{
XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * ___U3CPlaneSubsystemU3Ek__BackingField_0;
BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 ___U3CPlaneU3Ek__BackingField_1;
};
// UnityEngine.Experimental.XR.PlaneUpdatedEventArgs
struct PlaneUpdatedEventArgs_tD63FB1655000C0BC238033545144C1FD81CED133
{
public:
// UnityEngine.Experimental.XR.XRPlaneSubsystem UnityEngine.Experimental.XR.PlaneUpdatedEventArgs::<PlaneSubsystem>k__BackingField
XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * ___U3CPlaneSubsystemU3Ek__BackingField_0;
// UnityEngine.Experimental.XR.BoundedPlane UnityEngine.Experimental.XR.PlaneUpdatedEventArgs::<Plane>k__BackingField
BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 ___U3CPlaneU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CPlaneSubsystemU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(PlaneUpdatedEventArgs_tD63FB1655000C0BC238033545144C1FD81CED133, ___U3CPlaneSubsystemU3Ek__BackingField_0)); }
inline XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * get_U3CPlaneSubsystemU3Ek__BackingField_0() const { return ___U3CPlaneSubsystemU3Ek__BackingField_0; }
inline XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B ** get_address_of_U3CPlaneSubsystemU3Ek__BackingField_0() { return &___U3CPlaneSubsystemU3Ek__BackingField_0; }
inline void set_U3CPlaneSubsystemU3Ek__BackingField_0(XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * value)
{
___U3CPlaneSubsystemU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPlaneSubsystemU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CPlaneU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(PlaneUpdatedEventArgs_tD63FB1655000C0BC238033545144C1FD81CED133, ___U3CPlaneU3Ek__BackingField_1)); }
inline BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 get_U3CPlaneU3Ek__BackingField_1() const { return ___U3CPlaneU3Ek__BackingField_1; }
inline BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 * get_address_of_U3CPlaneU3Ek__BackingField_1() { return &___U3CPlaneU3Ek__BackingField_1; }
inline void set_U3CPlaneU3Ek__BackingField_1(BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 value)
{
___U3CPlaneU3Ek__BackingField_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Experimental.XR.PlaneUpdatedEventArgs
struct PlaneUpdatedEventArgs_tD63FB1655000C0BC238033545144C1FD81CED133_marshaled_pinvoke
{
XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * ___U3CPlaneSubsystemU3Ek__BackingField_0;
BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 ___U3CPlaneU3Ek__BackingField_1;
};
// Native definition for COM marshalling of UnityEngine.Experimental.XR.PlaneUpdatedEventArgs
struct PlaneUpdatedEventArgs_tD63FB1655000C0BC238033545144C1FD81CED133_marshaled_com
{
XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B * ___U3CPlaneSubsystemU3Ek__BackingField_0;
BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 ___U3CPlaneU3Ek__BackingField_1;
};
// UnityEngine.Experimental.XR.ReferencePointUpdatedEventArgs
struct ReferencePointUpdatedEventArgs_t1B91A539846D2D040D4B0BFFD9A67B0DF30AD6BA
{
public:
// UnityEngine.Experimental.XR.ReferencePoint UnityEngine.Experimental.XR.ReferencePointUpdatedEventArgs::<ReferencePoint>k__BackingField
ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E ___U3CReferencePointU3Ek__BackingField_0;
// UnityEngine.Experimental.XR.TrackingState UnityEngine.Experimental.XR.ReferencePointUpdatedEventArgs::<PreviousTrackingState>k__BackingField
int32_t ___U3CPreviousTrackingStateU3Ek__BackingField_1;
// UnityEngine.Pose UnityEngine.Experimental.XR.ReferencePointUpdatedEventArgs::<PreviousPose>k__BackingField
Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 ___U3CPreviousPoseU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3CReferencePointU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(ReferencePointUpdatedEventArgs_t1B91A539846D2D040D4B0BFFD9A67B0DF30AD6BA, ___U3CReferencePointU3Ek__BackingField_0)); }
inline ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E get_U3CReferencePointU3Ek__BackingField_0() const { return ___U3CReferencePointU3Ek__BackingField_0; }
inline ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E * get_address_of_U3CReferencePointU3Ek__BackingField_0() { return &___U3CReferencePointU3Ek__BackingField_0; }
inline void set_U3CReferencePointU3Ek__BackingField_0(ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E value)
{
___U3CReferencePointU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CPreviousTrackingStateU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(ReferencePointUpdatedEventArgs_t1B91A539846D2D040D4B0BFFD9A67B0DF30AD6BA, ___U3CPreviousTrackingStateU3Ek__BackingField_1)); }
inline int32_t get_U3CPreviousTrackingStateU3Ek__BackingField_1() const { return ___U3CPreviousTrackingStateU3Ek__BackingField_1; }
inline int32_t* get_address_of_U3CPreviousTrackingStateU3Ek__BackingField_1() { return &___U3CPreviousTrackingStateU3Ek__BackingField_1; }
inline void set_U3CPreviousTrackingStateU3Ek__BackingField_1(int32_t value)
{
___U3CPreviousTrackingStateU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CPreviousPoseU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(ReferencePointUpdatedEventArgs_t1B91A539846D2D040D4B0BFFD9A67B0DF30AD6BA, ___U3CPreviousPoseU3Ek__BackingField_2)); }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 get_U3CPreviousPoseU3Ek__BackingField_2() const { return ___U3CPreviousPoseU3Ek__BackingField_2; }
inline Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 * get_address_of_U3CPreviousPoseU3Ek__BackingField_2() { return &___U3CPreviousPoseU3Ek__BackingField_2; }
inline void set_U3CPreviousPoseU3Ek__BackingField_2(Pose_t2997DE3CB3863E4D78FCF42B46FC481818823F29 value)
{
___U3CPreviousPoseU3Ek__BackingField_2 = value;
}
};
// UnityEngine.Experimental.XR.XRCameraSubsystem
struct XRCameraSubsystem_t9271DB5D8FEDD3431246FCB6D9257A940246E701 : public IntegratedSubsystem_1_t7895B27006AD89A2D0A37800E5E72D929802A8FD
{
public:
// System.Action`1<UnityEngine.Experimental.XR.FrameReceivedEventArgs> UnityEngine.Experimental.XR.XRCameraSubsystem::FrameReceived
Action_1_t95D7D93D51DF3F6A6C456CD847A0A4150A398BBC * ___FrameReceived_2;
public:
inline static int32_t get_offset_of_FrameReceived_2() { return static_cast<int32_t>(offsetof(XRCameraSubsystem_t9271DB5D8FEDD3431246FCB6D9257A940246E701, ___FrameReceived_2)); }
inline Action_1_t95D7D93D51DF3F6A6C456CD847A0A4150A398BBC * get_FrameReceived_2() const { return ___FrameReceived_2; }
inline Action_1_t95D7D93D51DF3F6A6C456CD847A0A4150A398BBC ** get_address_of_FrameReceived_2() { return &___FrameReceived_2; }
inline void set_FrameReceived_2(Action_1_t95D7D93D51DF3F6A6C456CD847A0A4150A398BBC * value)
{
___FrameReceived_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FrameReceived_2), (void*)value);
}
};
// UnityEngine.Experimental.XR.XRCameraSubsystemDescriptor
struct XRCameraSubsystemDescriptor_t46972B2D1CC489288B72CD0856AB7675B5EEEE6D : public IntegratedSubsystemDescriptor_1_tE9F16178C14797992304DE9EE0396280DB8E77E1
{
public:
public:
};
// UnityEngine.Experimental.XR.XRDepthSubsystem
struct XRDepthSubsystem_t1F42ECBC6085EFA6909640A9521920C55444D089 : public IntegratedSubsystem_1_tC2625D3A168CA7974356810CC886C705C730BDFF
{
public:
// System.Action`1<UnityEngine.Experimental.XR.PointCloudUpdatedEventArgs> UnityEngine.Experimental.XR.XRDepthSubsystem::PointCloudUpdated
Action_1_t167ADDB82D45E89395BC9B22DD77C5AF5BED507E * ___PointCloudUpdated_2;
public:
inline static int32_t get_offset_of_PointCloudUpdated_2() { return static_cast<int32_t>(offsetof(XRDepthSubsystem_t1F42ECBC6085EFA6909640A9521920C55444D089, ___PointCloudUpdated_2)); }
inline Action_1_t167ADDB82D45E89395BC9B22DD77C5AF5BED507E * get_PointCloudUpdated_2() const { return ___PointCloudUpdated_2; }
inline Action_1_t167ADDB82D45E89395BC9B22DD77C5AF5BED507E ** get_address_of_PointCloudUpdated_2() { return &___PointCloudUpdated_2; }
inline void set_PointCloudUpdated_2(Action_1_t167ADDB82D45E89395BC9B22DD77C5AF5BED507E * value)
{
___PointCloudUpdated_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PointCloudUpdated_2), (void*)value);
}
};
// UnityEngine.Experimental.XR.XRDepthSubsystemDescriptor
struct XRDepthSubsystemDescriptor_tC60EB1B6195A885126644DA89E946EABFF96CCB9 : public IntegratedSubsystemDescriptor_1_tD1D58FF107588D72C58C3AA7127439F03C9EEC06
{
public:
public:
};
// UnityEngine.Experimental.XR.XRDisplaySubsystem
struct XRDisplaySubsystem_t05B719D068CC184B2C77C98875416D36775CDC70 : public IntegratedSubsystem_1_t7A42467FCEE4F6DCFAE1C7A0617050DB64FA0C04
{
public:
public:
};
struct XRDisplaySubsystem_t05B719D068CC184B2C77C98875416D36775CDC70_StaticFields
{
public:
// System.Action`1<System.Boolean> UnityEngine.Experimental.XR.XRDisplaySubsystem::displayFocusChanged
Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * ___displayFocusChanged_2;
public:
inline static int32_t get_offset_of_displayFocusChanged_2() { return static_cast<int32_t>(offsetof(XRDisplaySubsystem_t05B719D068CC184B2C77C98875416D36775CDC70_StaticFields, ___displayFocusChanged_2)); }
inline Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * get_displayFocusChanged_2() const { return ___displayFocusChanged_2; }
inline Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD ** get_address_of_displayFocusChanged_2() { return &___displayFocusChanged_2; }
inline void set_displayFocusChanged_2(Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * value)
{
___displayFocusChanged_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___displayFocusChanged_2), (void*)value);
}
};
// UnityEngine.Experimental.XR.XRDisplaySubsystemDescriptor
struct XRDisplaySubsystemDescriptor_tFF4A2A9182D1A4F2929DA301E861A6DB7F0B46EB : public IntegratedSubsystemDescriptor_1_tECEA77D16FCFCCE204709250CD387B003B86B871
{
public:
public:
};
// UnityEngine.Experimental.XR.XRExperienceSubsystem
struct XRExperienceSubsystem_tD574929FC9D5345CC504365E74496C6217D275F1 : public IntegratedSubsystem_1_tDDA9D44F58C5536E8283488112D8D4B7F478DE72
{
public:
// System.Action UnityEngine.Experimental.XR.XRExperienceSubsystem::ExperienceTypeChanged
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___ExperienceTypeChanged_2;
// System.Action UnityEngine.Experimental.XR.XRExperienceSubsystem::BoundaryChanged
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___BoundaryChanged_3;
public:
inline static int32_t get_offset_of_ExperienceTypeChanged_2() { return static_cast<int32_t>(offsetof(XRExperienceSubsystem_tD574929FC9D5345CC504365E74496C6217D275F1, ___ExperienceTypeChanged_2)); }
inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * get_ExperienceTypeChanged_2() const { return ___ExperienceTypeChanged_2; }
inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 ** get_address_of_ExperienceTypeChanged_2() { return &___ExperienceTypeChanged_2; }
inline void set_ExperienceTypeChanged_2(Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * value)
{
___ExperienceTypeChanged_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ExperienceTypeChanged_2), (void*)value);
}
inline static int32_t get_offset_of_BoundaryChanged_3() { return static_cast<int32_t>(offsetof(XRExperienceSubsystem_tD574929FC9D5345CC504365E74496C6217D275F1, ___BoundaryChanged_3)); }
inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * get_BoundaryChanged_3() const { return ___BoundaryChanged_3; }
inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 ** get_address_of_BoundaryChanged_3() { return &___BoundaryChanged_3; }
inline void set_BoundaryChanged_3(Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * value)
{
___BoundaryChanged_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___BoundaryChanged_3), (void*)value);
}
};
// UnityEngine.Experimental.XR.XRExperienceSubsystemDescriptor
struct XRExperienceSubsystemDescriptor_t5B75071CF84F4EA0709340CCF6AD12DE5730E2A4 : public IntegratedSubsystemDescriptor_1_t8BFAD0533529D58C49C50090ECE62E8BBAF44423
{
public:
public:
};
// UnityEngine.Experimental.XR.XRGestureSubsystem
struct XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D : public IntegratedSubsystem_1_t963E815D9428F94B70FECD776077C2A88C5467D9
{
public:
// System.Action`1<UnityEngine.Experimental.XR.GestureHoldEvent> UnityEngine.Experimental.XR.XRGestureSubsystem::m_HoldChanged
Action_1_t865948A0E8FE8DFE365C3E1A897D6E6609E96B63 * ___m_HoldChanged_2;
// System.Action`1<UnityEngine.Experimental.XR.GestureManipulationEvent> UnityEngine.Experimental.XR.XRGestureSubsystem::m_ManipulationChanged
Action_1_t1569BFA3BE25991F032EAB09E795FAFE2D757E8E * ___m_ManipulationChanged_3;
// System.Action`1<UnityEngine.Experimental.XR.GestureNavigationEvent> UnityEngine.Experimental.XR.XRGestureSubsystem::m_NavigationChanged
Action_1_tA100F00AA9D838B73521467A787A20FD623FA5FC * ___m_NavigationChanged_4;
// System.Action`1<UnityEngine.Experimental.XR.GestureRecognitionEvent> UnityEngine.Experimental.XR.XRGestureSubsystem::m_RecognitionChanged
Action_1_tF1F4802F6871A3A4245E71ED0196866BF97B44BF * ___m_RecognitionChanged_5;
// System.Action`1<UnityEngine.Experimental.XR.GestureTappedEvent> UnityEngine.Experimental.XR.XRGestureSubsystem::m_TappedChanged
Action_1_t27686A0FAA4BAFD7D08EAEB44B914A74FC0328DC * ___m_TappedChanged_6;
public:
inline static int32_t get_offset_of_m_HoldChanged_2() { return static_cast<int32_t>(offsetof(XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D, ___m_HoldChanged_2)); }
inline Action_1_t865948A0E8FE8DFE365C3E1A897D6E6609E96B63 * get_m_HoldChanged_2() const { return ___m_HoldChanged_2; }
inline Action_1_t865948A0E8FE8DFE365C3E1A897D6E6609E96B63 ** get_address_of_m_HoldChanged_2() { return &___m_HoldChanged_2; }
inline void set_m_HoldChanged_2(Action_1_t865948A0E8FE8DFE365C3E1A897D6E6609E96B63 * value)
{
___m_HoldChanged_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HoldChanged_2), (void*)value);
}
inline static int32_t get_offset_of_m_ManipulationChanged_3() { return static_cast<int32_t>(offsetof(XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D, ___m_ManipulationChanged_3)); }
inline Action_1_t1569BFA3BE25991F032EAB09E795FAFE2D757E8E * get_m_ManipulationChanged_3() const { return ___m_ManipulationChanged_3; }
inline Action_1_t1569BFA3BE25991F032EAB09E795FAFE2D757E8E ** get_address_of_m_ManipulationChanged_3() { return &___m_ManipulationChanged_3; }
inline void set_m_ManipulationChanged_3(Action_1_t1569BFA3BE25991F032EAB09E795FAFE2D757E8E * value)
{
___m_ManipulationChanged_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ManipulationChanged_3), (void*)value);
}
inline static int32_t get_offset_of_m_NavigationChanged_4() { return static_cast<int32_t>(offsetof(XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D, ___m_NavigationChanged_4)); }
inline Action_1_tA100F00AA9D838B73521467A787A20FD623FA5FC * get_m_NavigationChanged_4() const { return ___m_NavigationChanged_4; }
inline Action_1_tA100F00AA9D838B73521467A787A20FD623FA5FC ** get_address_of_m_NavigationChanged_4() { return &___m_NavigationChanged_4; }
inline void set_m_NavigationChanged_4(Action_1_tA100F00AA9D838B73521467A787A20FD623FA5FC * value)
{
___m_NavigationChanged_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_NavigationChanged_4), (void*)value);
}
inline static int32_t get_offset_of_m_RecognitionChanged_5() { return static_cast<int32_t>(offsetof(XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D, ___m_RecognitionChanged_5)); }
inline Action_1_tF1F4802F6871A3A4245E71ED0196866BF97B44BF * get_m_RecognitionChanged_5() const { return ___m_RecognitionChanged_5; }
inline Action_1_tF1F4802F6871A3A4245E71ED0196866BF97B44BF ** get_address_of_m_RecognitionChanged_5() { return &___m_RecognitionChanged_5; }
inline void set_m_RecognitionChanged_5(Action_1_tF1F4802F6871A3A4245E71ED0196866BF97B44BF * value)
{
___m_RecognitionChanged_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RecognitionChanged_5), (void*)value);
}
inline static int32_t get_offset_of_m_TappedChanged_6() { return static_cast<int32_t>(offsetof(XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D, ___m_TappedChanged_6)); }
inline Action_1_t27686A0FAA4BAFD7D08EAEB44B914A74FC0328DC * get_m_TappedChanged_6() const { return ___m_TappedChanged_6; }
inline Action_1_t27686A0FAA4BAFD7D08EAEB44B914A74FC0328DC ** get_address_of_m_TappedChanged_6() { return &___m_TappedChanged_6; }
inline void set_m_TappedChanged_6(Action_1_t27686A0FAA4BAFD7D08EAEB44B914A74FC0328DC * value)
{
___m_TappedChanged_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_TappedChanged_6), (void*)value);
}
};
// UnityEngine.Experimental.XR.XRGestureSubsystemDescriptor
struct XRGestureSubsystemDescriptor_t5422349A45F3230A30F3F6DC80B173828E95595A : public IntegratedSubsystemDescriptor_1_t6587AB301B1E5916F184E9CF71A3E81083DC9683
{
public:
public:
};
// UnityEngine.Experimental.XR.XRMeshSubsystem
struct XRMeshSubsystem_t4BD421D51492BBB1328FD2C7D8B4EB08A3BA80E2 : public IntegratedSubsystem_1_tBBB499872BCB8136D689313D449486599F65184B
{
public:
public:
};
// UnityEngine.Experimental.XR.XRMeshSubsystemDescriptor
struct XRMeshSubsystemDescriptor_t42FE49F96E6B9CC621E4A87F5B4D365DD0861D6D : public IntegratedSubsystemDescriptor_1_tFF108C78252FF43BD3DF4646DABA7531F402C957
{
public:
public:
};
// UnityEngine.Experimental.XR.XRPlaneSubsystem
struct XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B : public IntegratedSubsystem_1_tA0CDA6F41285252BAC7B1C847C06E6A174C2A726
{
public:
// System.Action`1<UnityEngine.Experimental.XR.PlaneAddedEventArgs> UnityEngine.Experimental.XR.XRPlaneSubsystem::PlaneAdded
Action_1_t3863E014281664DEECCEAFF0F363B622DAB862E6 * ___PlaneAdded_2;
// System.Action`1<UnityEngine.Experimental.XR.PlaneUpdatedEventArgs> UnityEngine.Experimental.XR.XRPlaneSubsystem::PlaneUpdated
Action_1_tBEAD8CEE1CABAD25A45CE64C8A9D173BEDEC0AF6 * ___PlaneUpdated_3;
// System.Action`1<UnityEngine.Experimental.XR.PlaneRemovedEventArgs> UnityEngine.Experimental.XR.XRPlaneSubsystem::PlaneRemoved
Action_1_t9720B7CBE6CC0851562EC5B89948AEF5C229D991 * ___PlaneRemoved_4;
public:
inline static int32_t get_offset_of_PlaneAdded_2() { return static_cast<int32_t>(offsetof(XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B, ___PlaneAdded_2)); }
inline Action_1_t3863E014281664DEECCEAFF0F363B622DAB862E6 * get_PlaneAdded_2() const { return ___PlaneAdded_2; }
inline Action_1_t3863E014281664DEECCEAFF0F363B622DAB862E6 ** get_address_of_PlaneAdded_2() { return &___PlaneAdded_2; }
inline void set_PlaneAdded_2(Action_1_t3863E014281664DEECCEAFF0F363B622DAB862E6 * value)
{
___PlaneAdded_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PlaneAdded_2), (void*)value);
}
inline static int32_t get_offset_of_PlaneUpdated_3() { return static_cast<int32_t>(offsetof(XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B, ___PlaneUpdated_3)); }
inline Action_1_tBEAD8CEE1CABAD25A45CE64C8A9D173BEDEC0AF6 * get_PlaneUpdated_3() const { return ___PlaneUpdated_3; }
inline Action_1_tBEAD8CEE1CABAD25A45CE64C8A9D173BEDEC0AF6 ** get_address_of_PlaneUpdated_3() { return &___PlaneUpdated_3; }
inline void set_PlaneUpdated_3(Action_1_tBEAD8CEE1CABAD25A45CE64C8A9D173BEDEC0AF6 * value)
{
___PlaneUpdated_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PlaneUpdated_3), (void*)value);
}
inline static int32_t get_offset_of_PlaneRemoved_4() { return static_cast<int32_t>(offsetof(XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B, ___PlaneRemoved_4)); }
inline Action_1_t9720B7CBE6CC0851562EC5B89948AEF5C229D991 * get_PlaneRemoved_4() const { return ___PlaneRemoved_4; }
inline Action_1_t9720B7CBE6CC0851562EC5B89948AEF5C229D991 ** get_address_of_PlaneRemoved_4() { return &___PlaneRemoved_4; }
inline void set_PlaneRemoved_4(Action_1_t9720B7CBE6CC0851562EC5B89948AEF5C229D991 * value)
{
___PlaneRemoved_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PlaneRemoved_4), (void*)value);
}
};
// UnityEngine.Experimental.XR.XRPlaneSubsystemDescriptor
struct XRPlaneSubsystemDescriptor_t0F6814B2CAD6778836A3A230A200600556C57D7F : public IntegratedSubsystemDescriptor_1_t85BEA6ABFA714969AD7D295981D3A5F8BD82A383
{
public:
public:
};
// UnityEngine.Experimental.XR.XRReferencePointSubsystem
struct XRReferencePointSubsystem_t9D4A49A2B6580143EF25399812034F001A18D00C : public IntegratedSubsystem_1_t48FB8540AD0BEB39E04B6521F76EADF9ACB5F794
{
public:
// System.Action`1<UnityEngine.Experimental.XR.ReferencePointUpdatedEventArgs> UnityEngine.Experimental.XR.XRReferencePointSubsystem::ReferencePointUpdated
Action_1_t62CF34AD78617EF5FE6E7FCE5803CBE14C103FBD * ___ReferencePointUpdated_2;
public:
inline static int32_t get_offset_of_ReferencePointUpdated_2() { return static_cast<int32_t>(offsetof(XRReferencePointSubsystem_t9D4A49A2B6580143EF25399812034F001A18D00C, ___ReferencePointUpdated_2)); }
inline Action_1_t62CF34AD78617EF5FE6E7FCE5803CBE14C103FBD * get_ReferencePointUpdated_2() const { return ___ReferencePointUpdated_2; }
inline Action_1_t62CF34AD78617EF5FE6E7FCE5803CBE14C103FBD ** get_address_of_ReferencePointUpdated_2() { return &___ReferencePointUpdated_2; }
inline void set_ReferencePointUpdated_2(Action_1_t62CF34AD78617EF5FE6E7FCE5803CBE14C103FBD * value)
{
___ReferencePointUpdated_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ReferencePointUpdated_2), (void*)value);
}
};
// UnityEngine.Experimental.XR.XRReferencePointSubsystemDescriptor
struct XRReferencePointSubsystemDescriptor_t0228E77788DA1EAB18104D6AB3DBAF5AF5CFA0D3 : public IntegratedSubsystemDescriptor_1_t299607E05679F7C2B9CEC0C28C89336EF798776D
{
public:
public:
};
// UnityEngine.Experimental.XR.XRSessionSubsystem
struct XRSessionSubsystem_t75B8ED54B2BF4876D83B93780A7E13D6A9F32B8F : public IntegratedSubsystem_1_tB3B8A0259908C7FE09F3D2231645B5CA251A2B5C
{
public:
// System.Action`1<UnityEngine.Experimental.XR.SessionTrackingStateChangedEventArgs> UnityEngine.Experimental.XR.XRSessionSubsystem::TrackingStateChanged
Action_1_tFA24ECAFB569947BC1D041AECE3FD63058B301F9 * ___TrackingStateChanged_2;
public:
inline static int32_t get_offset_of_TrackingStateChanged_2() { return static_cast<int32_t>(offsetof(XRSessionSubsystem_t75B8ED54B2BF4876D83B93780A7E13D6A9F32B8F, ___TrackingStateChanged_2)); }
inline Action_1_tFA24ECAFB569947BC1D041AECE3FD63058B301F9 * get_TrackingStateChanged_2() const { return ___TrackingStateChanged_2; }
inline Action_1_tFA24ECAFB569947BC1D041AECE3FD63058B301F9 ** get_address_of_TrackingStateChanged_2() { return &___TrackingStateChanged_2; }
inline void set_TrackingStateChanged_2(Action_1_tFA24ECAFB569947BC1D041AECE3FD63058B301F9 * value)
{
___TrackingStateChanged_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TrackingStateChanged_2), (void*)value);
}
};
// UnityEngine.Experimental.XR.XRSessionSubsystemDescriptor
struct XRSessionSubsystemDescriptor_tF69268DD404379B461569E4268BEC52FAFC9F3B9 : public IntegratedSubsystemDescriptor_1_t0C91735E460ED713B69E3B2CFB36F9FF3EF82E25
{
public:
public:
};
// UnityEngine.GUI_WindowFunction
struct WindowFunction_t9AF05117863D95AA9F85D497A3B9B53216708100 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.GUIScrollGroup
struct GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE : public GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601
{
public:
// System.Single UnityEngine.GUIScrollGroup::calcMinWidth
float ___calcMinWidth_31;
// System.Single UnityEngine.GUIScrollGroup::calcMaxWidth
float ___calcMaxWidth_32;
// System.Single UnityEngine.GUIScrollGroup::calcMinHeight
float ___calcMinHeight_33;
// System.Single UnityEngine.GUIScrollGroup::calcMaxHeight
float ___calcMaxHeight_34;
// System.Single UnityEngine.GUIScrollGroup::clientWidth
float ___clientWidth_35;
// System.Single UnityEngine.GUIScrollGroup::clientHeight
float ___clientHeight_36;
// System.Boolean UnityEngine.GUIScrollGroup::allowHorizontalScroll
bool ___allowHorizontalScroll_37;
// System.Boolean UnityEngine.GUIScrollGroup::allowVerticalScroll
bool ___allowVerticalScroll_38;
// System.Boolean UnityEngine.GUIScrollGroup::needsHorizontalScrollbar
bool ___needsHorizontalScrollbar_39;
// System.Boolean UnityEngine.GUIScrollGroup::needsVerticalScrollbar
bool ___needsVerticalScrollbar_40;
// UnityEngine.GUIStyle UnityEngine.GUIScrollGroup::horizontalScrollbar
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___horizontalScrollbar_41;
// UnityEngine.GUIStyle UnityEngine.GUIScrollGroup::verticalScrollbar
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___verticalScrollbar_42;
public:
inline static int32_t get_offset_of_calcMinWidth_31() { return static_cast<int32_t>(offsetof(GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE, ___calcMinWidth_31)); }
inline float get_calcMinWidth_31() const { return ___calcMinWidth_31; }
inline float* get_address_of_calcMinWidth_31() { return &___calcMinWidth_31; }
inline void set_calcMinWidth_31(float value)
{
___calcMinWidth_31 = value;
}
inline static int32_t get_offset_of_calcMaxWidth_32() { return static_cast<int32_t>(offsetof(GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE, ___calcMaxWidth_32)); }
inline float get_calcMaxWidth_32() const { return ___calcMaxWidth_32; }
inline float* get_address_of_calcMaxWidth_32() { return &___calcMaxWidth_32; }
inline void set_calcMaxWidth_32(float value)
{
___calcMaxWidth_32 = value;
}
inline static int32_t get_offset_of_calcMinHeight_33() { return static_cast<int32_t>(offsetof(GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE, ___calcMinHeight_33)); }
inline float get_calcMinHeight_33() const { return ___calcMinHeight_33; }
inline float* get_address_of_calcMinHeight_33() { return &___calcMinHeight_33; }
inline void set_calcMinHeight_33(float value)
{
___calcMinHeight_33 = value;
}
inline static int32_t get_offset_of_calcMaxHeight_34() { return static_cast<int32_t>(offsetof(GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE, ___calcMaxHeight_34)); }
inline float get_calcMaxHeight_34() const { return ___calcMaxHeight_34; }
inline float* get_address_of_calcMaxHeight_34() { return &___calcMaxHeight_34; }
inline void set_calcMaxHeight_34(float value)
{
___calcMaxHeight_34 = value;
}
inline static int32_t get_offset_of_clientWidth_35() { return static_cast<int32_t>(offsetof(GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE, ___clientWidth_35)); }
inline float get_clientWidth_35() const { return ___clientWidth_35; }
inline float* get_address_of_clientWidth_35() { return &___clientWidth_35; }
inline void set_clientWidth_35(float value)
{
___clientWidth_35 = value;
}
inline static int32_t get_offset_of_clientHeight_36() { return static_cast<int32_t>(offsetof(GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE, ___clientHeight_36)); }
inline float get_clientHeight_36() const { return ___clientHeight_36; }
inline float* get_address_of_clientHeight_36() { return &___clientHeight_36; }
inline void set_clientHeight_36(float value)
{
___clientHeight_36 = value;
}
inline static int32_t get_offset_of_allowHorizontalScroll_37() { return static_cast<int32_t>(offsetof(GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE, ___allowHorizontalScroll_37)); }
inline bool get_allowHorizontalScroll_37() const { return ___allowHorizontalScroll_37; }
inline bool* get_address_of_allowHorizontalScroll_37() { return &___allowHorizontalScroll_37; }
inline void set_allowHorizontalScroll_37(bool value)
{
___allowHorizontalScroll_37 = value;
}
inline static int32_t get_offset_of_allowVerticalScroll_38() { return static_cast<int32_t>(offsetof(GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE, ___allowVerticalScroll_38)); }
inline bool get_allowVerticalScroll_38() const { return ___allowVerticalScroll_38; }
inline bool* get_address_of_allowVerticalScroll_38() { return &___allowVerticalScroll_38; }
inline void set_allowVerticalScroll_38(bool value)
{
___allowVerticalScroll_38 = value;
}
inline static int32_t get_offset_of_needsHorizontalScrollbar_39() { return static_cast<int32_t>(offsetof(GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE, ___needsHorizontalScrollbar_39)); }
inline bool get_needsHorizontalScrollbar_39() const { return ___needsHorizontalScrollbar_39; }
inline bool* get_address_of_needsHorizontalScrollbar_39() { return &___needsHorizontalScrollbar_39; }
inline void set_needsHorizontalScrollbar_39(bool value)
{
___needsHorizontalScrollbar_39 = value;
}
inline static int32_t get_offset_of_needsVerticalScrollbar_40() { return static_cast<int32_t>(offsetof(GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE, ___needsVerticalScrollbar_40)); }
inline bool get_needsVerticalScrollbar_40() const { return ___needsVerticalScrollbar_40; }
inline bool* get_address_of_needsVerticalScrollbar_40() { return &___needsVerticalScrollbar_40; }
inline void set_needsVerticalScrollbar_40(bool value)
{
___needsVerticalScrollbar_40 = value;
}
inline static int32_t get_offset_of_horizontalScrollbar_41() { return static_cast<int32_t>(offsetof(GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE, ___horizontalScrollbar_41)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_horizontalScrollbar_41() const { return ___horizontalScrollbar_41; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_horizontalScrollbar_41() { return &___horizontalScrollbar_41; }
inline void set_horizontalScrollbar_41(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___horizontalScrollbar_41 = value;
Il2CppCodeGenWriteBarrier((void**)(&___horizontalScrollbar_41), (void*)value);
}
inline static int32_t get_offset_of_verticalScrollbar_42() { return static_cast<int32_t>(offsetof(GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE, ___verticalScrollbar_42)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_verticalScrollbar_42() const { return ___verticalScrollbar_42; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_verticalScrollbar_42() { return &___verticalScrollbar_42; }
inline void set_verticalScrollbar_42(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___verticalScrollbar_42 = value;
Il2CppCodeGenWriteBarrier((void**)(&___verticalScrollbar_42), (void*)value);
}
};
// UnityEngine.GUISkin
struct GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 : public ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734
{
public:
// UnityEngine.Font UnityEngine.GUISkin::m_Font
Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * ___m_Font_4;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_box
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_box_5;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_button
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_button_6;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_toggle
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_toggle_7;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_label
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_label_8;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_textField
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_textField_9;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_textArea
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_textArea_10;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_window
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_window_11;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_horizontalSlider
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_horizontalSlider_12;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_horizontalSliderThumb
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_horizontalSliderThumb_13;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_verticalSlider
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_verticalSlider_14;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_verticalSliderThumb
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_verticalSliderThumb_15;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_horizontalScrollbar
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_horizontalScrollbar_16;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_horizontalScrollbarThumb
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_horizontalScrollbarThumb_17;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_horizontalScrollbarLeftButton
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_horizontalScrollbarLeftButton_18;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_horizontalScrollbarRightButton
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_horizontalScrollbarRightButton_19;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_verticalScrollbar
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_verticalScrollbar_20;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_verticalScrollbarThumb
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_verticalScrollbarThumb_21;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_verticalScrollbarUpButton
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_verticalScrollbarUpButton_22;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_verticalScrollbarDownButton
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_verticalScrollbarDownButton_23;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_ScrollView
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_ScrollView_24;
// UnityEngine.GUIStyle[] UnityEngine.GUISkin::m_CustomStyles
GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB* ___m_CustomStyles_25;
// UnityEngine.GUISettings UnityEngine.GUISkin::m_Settings
GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4 * ___m_Settings_26;
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.GUIStyle> UnityEngine.GUISkin::m_Styles
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * ___m_Styles_28;
public:
inline static int32_t get_offset_of_m_Font_4() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_Font_4)); }
inline Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * get_m_Font_4() const { return ___m_Font_4; }
inline Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 ** get_address_of_m_Font_4() { return &___m_Font_4; }
inline void set_m_Font_4(Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * value)
{
___m_Font_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Font_4), (void*)value);
}
inline static int32_t get_offset_of_m_box_5() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_box_5)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_box_5() const { return ___m_box_5; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_box_5() { return &___m_box_5; }
inline void set_m_box_5(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_box_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_box_5), (void*)value);
}
inline static int32_t get_offset_of_m_button_6() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_button_6)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_button_6() const { return ___m_button_6; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_button_6() { return &___m_button_6; }
inline void set_m_button_6(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_button_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_button_6), (void*)value);
}
inline static int32_t get_offset_of_m_toggle_7() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_toggle_7)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_toggle_7() const { return ___m_toggle_7; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_toggle_7() { return &___m_toggle_7; }
inline void set_m_toggle_7(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_toggle_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_toggle_7), (void*)value);
}
inline static int32_t get_offset_of_m_label_8() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_label_8)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_label_8() const { return ___m_label_8; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_label_8() { return &___m_label_8; }
inline void set_m_label_8(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_label_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_label_8), (void*)value);
}
inline static int32_t get_offset_of_m_textField_9() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_textField_9)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_textField_9() const { return ___m_textField_9; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_textField_9() { return &___m_textField_9; }
inline void set_m_textField_9(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_textField_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_textField_9), (void*)value);
}
inline static int32_t get_offset_of_m_textArea_10() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_textArea_10)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_textArea_10() const { return ___m_textArea_10; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_textArea_10() { return &___m_textArea_10; }
inline void set_m_textArea_10(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_textArea_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_textArea_10), (void*)value);
}
inline static int32_t get_offset_of_m_window_11() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_window_11)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_window_11() const { return ___m_window_11; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_window_11() { return &___m_window_11; }
inline void set_m_window_11(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_window_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_window_11), (void*)value);
}
inline static int32_t get_offset_of_m_horizontalSlider_12() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_horizontalSlider_12)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_horizontalSlider_12() const { return ___m_horizontalSlider_12; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_horizontalSlider_12() { return &___m_horizontalSlider_12; }
inline void set_m_horizontalSlider_12(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_horizontalSlider_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_horizontalSlider_12), (void*)value);
}
inline static int32_t get_offset_of_m_horizontalSliderThumb_13() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_horizontalSliderThumb_13)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_horizontalSliderThumb_13() const { return ___m_horizontalSliderThumb_13; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_horizontalSliderThumb_13() { return &___m_horizontalSliderThumb_13; }
inline void set_m_horizontalSliderThumb_13(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_horizontalSliderThumb_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_horizontalSliderThumb_13), (void*)value);
}
inline static int32_t get_offset_of_m_verticalSlider_14() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_verticalSlider_14)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_verticalSlider_14() const { return ___m_verticalSlider_14; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_verticalSlider_14() { return &___m_verticalSlider_14; }
inline void set_m_verticalSlider_14(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_verticalSlider_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_verticalSlider_14), (void*)value);
}
inline static int32_t get_offset_of_m_verticalSliderThumb_15() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_verticalSliderThumb_15)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_verticalSliderThumb_15() const { return ___m_verticalSliderThumb_15; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_verticalSliderThumb_15() { return &___m_verticalSliderThumb_15; }
inline void set_m_verticalSliderThumb_15(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_verticalSliderThumb_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_verticalSliderThumb_15), (void*)value);
}
inline static int32_t get_offset_of_m_horizontalScrollbar_16() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_horizontalScrollbar_16)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_horizontalScrollbar_16() const { return ___m_horizontalScrollbar_16; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_horizontalScrollbar_16() { return &___m_horizontalScrollbar_16; }
inline void set_m_horizontalScrollbar_16(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_horizontalScrollbar_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_horizontalScrollbar_16), (void*)value);
}
inline static int32_t get_offset_of_m_horizontalScrollbarThumb_17() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_horizontalScrollbarThumb_17)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_horizontalScrollbarThumb_17() const { return ___m_horizontalScrollbarThumb_17; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_horizontalScrollbarThumb_17() { return &___m_horizontalScrollbarThumb_17; }
inline void set_m_horizontalScrollbarThumb_17(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_horizontalScrollbarThumb_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_horizontalScrollbarThumb_17), (void*)value);
}
inline static int32_t get_offset_of_m_horizontalScrollbarLeftButton_18() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_horizontalScrollbarLeftButton_18)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_horizontalScrollbarLeftButton_18() const { return ___m_horizontalScrollbarLeftButton_18; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_horizontalScrollbarLeftButton_18() { return &___m_horizontalScrollbarLeftButton_18; }
inline void set_m_horizontalScrollbarLeftButton_18(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_horizontalScrollbarLeftButton_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_horizontalScrollbarLeftButton_18), (void*)value);
}
inline static int32_t get_offset_of_m_horizontalScrollbarRightButton_19() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_horizontalScrollbarRightButton_19)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_horizontalScrollbarRightButton_19() const { return ___m_horizontalScrollbarRightButton_19; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_horizontalScrollbarRightButton_19() { return &___m_horizontalScrollbarRightButton_19; }
inline void set_m_horizontalScrollbarRightButton_19(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_horizontalScrollbarRightButton_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_horizontalScrollbarRightButton_19), (void*)value);
}
inline static int32_t get_offset_of_m_verticalScrollbar_20() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_verticalScrollbar_20)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_verticalScrollbar_20() const { return ___m_verticalScrollbar_20; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_verticalScrollbar_20() { return &___m_verticalScrollbar_20; }
inline void set_m_verticalScrollbar_20(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_verticalScrollbar_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_verticalScrollbar_20), (void*)value);
}
inline static int32_t get_offset_of_m_verticalScrollbarThumb_21() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_verticalScrollbarThumb_21)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_verticalScrollbarThumb_21() const { return ___m_verticalScrollbarThumb_21; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_verticalScrollbarThumb_21() { return &___m_verticalScrollbarThumb_21; }
inline void set_m_verticalScrollbarThumb_21(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_verticalScrollbarThumb_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_verticalScrollbarThumb_21), (void*)value);
}
inline static int32_t get_offset_of_m_verticalScrollbarUpButton_22() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_verticalScrollbarUpButton_22)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_verticalScrollbarUpButton_22() const { return ___m_verticalScrollbarUpButton_22; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_verticalScrollbarUpButton_22() { return &___m_verticalScrollbarUpButton_22; }
inline void set_m_verticalScrollbarUpButton_22(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_verticalScrollbarUpButton_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_verticalScrollbarUpButton_22), (void*)value);
}
inline static int32_t get_offset_of_m_verticalScrollbarDownButton_23() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_verticalScrollbarDownButton_23)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_verticalScrollbarDownButton_23() const { return ___m_verticalScrollbarDownButton_23; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_verticalScrollbarDownButton_23() { return &___m_verticalScrollbarDownButton_23; }
inline void set_m_verticalScrollbarDownButton_23(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_verticalScrollbarDownButton_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_verticalScrollbarDownButton_23), (void*)value);
}
inline static int32_t get_offset_of_m_ScrollView_24() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_ScrollView_24)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_ScrollView_24() const { return ___m_ScrollView_24; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_ScrollView_24() { return &___m_ScrollView_24; }
inline void set_m_ScrollView_24(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_ScrollView_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ScrollView_24), (void*)value);
}
inline static int32_t get_offset_of_m_CustomStyles_25() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_CustomStyles_25)); }
inline GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB* get_m_CustomStyles_25() const { return ___m_CustomStyles_25; }
inline GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB** get_address_of_m_CustomStyles_25() { return &___m_CustomStyles_25; }
inline void set_m_CustomStyles_25(GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB* value)
{
___m_CustomStyles_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CustomStyles_25), (void*)value);
}
inline static int32_t get_offset_of_m_Settings_26() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_Settings_26)); }
inline GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4 * get_m_Settings_26() const { return ___m_Settings_26; }
inline GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4 ** get_address_of_m_Settings_26() { return &___m_Settings_26; }
inline void set_m_Settings_26(GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4 * value)
{
___m_Settings_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Settings_26), (void*)value);
}
inline static int32_t get_offset_of_m_Styles_28() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_Styles_28)); }
inline Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * get_m_Styles_28() const { return ___m_Styles_28; }
inline Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A ** get_address_of_m_Styles_28() { return &___m_Styles_28; }
inline void set_m_Styles_28(Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * value)
{
___m_Styles_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Styles_28), (void*)value);
}
};
struct GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_StaticFields
{
public:
// UnityEngine.GUIStyle UnityEngine.GUISkin::ms_Error
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___ms_Error_27;
// UnityEngine.GUISkin_SkinChangedDelegate UnityEngine.GUISkin::m_SkinChanged
SkinChangedDelegate_tAB4CEEA8C8A0BDCFD51C9624AE173C46A40135D8 * ___m_SkinChanged_29;
// UnityEngine.GUISkin UnityEngine.GUISkin::current
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * ___current_30;
public:
inline static int32_t get_offset_of_ms_Error_27() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_StaticFields, ___ms_Error_27)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_ms_Error_27() const { return ___ms_Error_27; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_ms_Error_27() { return &___ms_Error_27; }
inline void set_ms_Error_27(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___ms_Error_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ms_Error_27), (void*)value);
}
inline static int32_t get_offset_of_m_SkinChanged_29() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_StaticFields, ___m_SkinChanged_29)); }
inline SkinChangedDelegate_tAB4CEEA8C8A0BDCFD51C9624AE173C46A40135D8 * get_m_SkinChanged_29() const { return ___m_SkinChanged_29; }
inline SkinChangedDelegate_tAB4CEEA8C8A0BDCFD51C9624AE173C46A40135D8 ** get_address_of_m_SkinChanged_29() { return &___m_SkinChanged_29; }
inline void set_m_SkinChanged_29(SkinChangedDelegate_tAB4CEEA8C8A0BDCFD51C9624AE173C46A40135D8 * value)
{
___m_SkinChanged_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SkinChanged_29), (void*)value);
}
inline static int32_t get_offset_of_current_30() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_StaticFields, ___current_30)); }
inline GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * get_current_30() const { return ___current_30; }
inline GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 ** get_address_of_current_30() { return &___current_30; }
inline void set_current_30(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * value)
{
___current_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_30), (void*)value);
}
};
// UnityEngine.GUISkin_SkinChangedDelegate
struct SkinChangedDelegate_tAB4CEEA8C8A0BDCFD51C9624AE173C46A40135D8 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.ParticleSystem
struct ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D : public Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621
{
public:
public:
};
// UnityEngine.RemoteSettings_UpdatedEventHandler
struct UpdatedEventHandler_tB0230BC83686D7126AB4D3800A66351028CA514F : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Renderer
struct Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 : public Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621
{
public:
public:
};
// UnityEngine.Rigidbody2D
struct Rigidbody2D_tBDC6900A76D3C47E291446FF008D02B817C81CDE : public Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621
{
public:
public:
};
// UnityEngine.SocialPlatforms.Impl.LocalUser
struct LocalUser_tBBCEEB55B6F28DFA7F4677E9273622A34CABB135 : public UserProfile_tB1F9D8E54F0480240196974DCCAF2742F8F0A51E
{
public:
// UnityEngine.SocialPlatforms.IUserProfile[] UnityEngine.SocialPlatforms.Impl.LocalUser::m_Friends
IUserProfileU5BU5D_tBE2EEBD677C2C607E3F86B6ABF3F164B72E570B0* ___m_Friends_5;
// System.Boolean UnityEngine.SocialPlatforms.Impl.LocalUser::m_Authenticated
bool ___m_Authenticated_6;
// System.Boolean UnityEngine.SocialPlatforms.Impl.LocalUser::m_Underage
bool ___m_Underage_7;
public:
inline static int32_t get_offset_of_m_Friends_5() { return static_cast<int32_t>(offsetof(LocalUser_tBBCEEB55B6F28DFA7F4677E9273622A34CABB135, ___m_Friends_5)); }
inline IUserProfileU5BU5D_tBE2EEBD677C2C607E3F86B6ABF3F164B72E570B0* get_m_Friends_5() const { return ___m_Friends_5; }
inline IUserProfileU5BU5D_tBE2EEBD677C2C607E3F86B6ABF3F164B72E570B0** get_address_of_m_Friends_5() { return &___m_Friends_5; }
inline void set_m_Friends_5(IUserProfileU5BU5D_tBE2EEBD677C2C607E3F86B6ABF3F164B72E570B0* value)
{
___m_Friends_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Friends_5), (void*)value);
}
inline static int32_t get_offset_of_m_Authenticated_6() { return static_cast<int32_t>(offsetof(LocalUser_tBBCEEB55B6F28DFA7F4677E9273622A34CABB135, ___m_Authenticated_6)); }
inline bool get_m_Authenticated_6() const { return ___m_Authenticated_6; }
inline bool* get_address_of_m_Authenticated_6() { return &___m_Authenticated_6; }
inline void set_m_Authenticated_6(bool value)
{
___m_Authenticated_6 = value;
}
inline static int32_t get_offset_of_m_Underage_7() { return static_cast<int32_t>(offsetof(LocalUser_tBBCEEB55B6F28DFA7F4677E9273622A34CABB135, ___m_Underage_7)); }
inline bool get_m_Underage_7() const { return ___m_Underage_7; }
inline bool* get_address_of_m_Underage_7() { return &___m_Underage_7; }
inline void set_m_Underage_7(bool value)
{
___m_Underage_7 = value;
}
};
// UnityEngine.StateMachineBehaviour
struct StateMachineBehaviour_t698612ED92024B087045C388731B7673550C786C : public ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734
{
public:
public:
};
// UnityEngine.UI.InputField_OnValidateInput
struct OnValidateInput_t3E857B491A319A5B22F6AD3D02CFD22C1BBFD8D0 : public MulticastDelegate_t
{
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_Raycast2DCallback
struct Raycast2DCallback_tE99ABF9ABC3A380677949E8C05A3E477889B82BE : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.UI.ReflectionMethodsCache_Raycast3DCallback
struct Raycast3DCallback_t83483916473C9710AEDB316A65CBE62C58935C5F : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.UI.ReflectionMethodsCache_RaycastAllCallback
struct RaycastAllCallback_t751407A44270E02FAA43D0846A58EE6A8C4AE1CE : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.ARKit.ARKitSessionSubsystem_NativeApi_OnAsyncConversionCompleteDelegate
struct OnAsyncConversionCompleteDelegate_t841FB5BE19010FE3AFBEDEA37C52A468755B19FF : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.ARKit.ARKitXRDepthSubsystem_TransformPositionsJob
struct TransformPositionsJob_t4BCA4844CF5EFB6C0A19B9E5059390B2E499E283
{
public:
// Unity.Collections.NativeArray`1<UnityEngine.Quaternion> UnityEngine.XR.ARKit.ARKitXRDepthSubsystem_TransformPositionsJob::positionsIn
NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684 ___positionsIn_0;
// Unity.Collections.NativeArray`1<UnityEngine.Vector3> UnityEngine.XR.ARKit.ARKitXRDepthSubsystem_TransformPositionsJob::positionsOut
NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 ___positionsOut_1;
public:
inline static int32_t get_offset_of_positionsIn_0() { return static_cast<int32_t>(offsetof(TransformPositionsJob_t4BCA4844CF5EFB6C0A19B9E5059390B2E499E283, ___positionsIn_0)); }
inline NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684 get_positionsIn_0() const { return ___positionsIn_0; }
inline NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684 * get_address_of_positionsIn_0() { return &___positionsIn_0; }
inline void set_positionsIn_0(NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684 value)
{
___positionsIn_0 = value;
}
inline static int32_t get_offset_of_positionsOut_1() { return static_cast<int32_t>(offsetof(TransformPositionsJob_t4BCA4844CF5EFB6C0A19B9E5059390B2E499E283, ___positionsOut_1)); }
inline NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 get_positionsOut_1() const { return ___positionsOut_1; }
inline NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 * get_address_of_positionsOut_1() { return &___positionsOut_1; }
inline void set_positionsOut_1(NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 value)
{
___positionsOut_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARKit.ARKitXRDepthSubsystem/TransformPositionsJob
struct TransformPositionsJob_t4BCA4844CF5EFB6C0A19B9E5059390B2E499E283_marshaled_pinvoke
{
NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684 ___positionsIn_0;
NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 ___positionsOut_1;
};
// Native definition for COM marshalling of UnityEngine.XR.ARKit.ARKitXRDepthSubsystem/TransformPositionsJob
struct TransformPositionsJob_t4BCA4844CF5EFB6C0A19B9E5059390B2E499E283_marshaled_com
{
NativeArray_1_t9C70B1A7759D3AEB5D78FECCCDB8DCDEB9CCA684 ___positionsIn_0;
NativeArray_1_t20B0E97D613353CCC2889E9B3D97A5612374FE74 ___positionsOut_1;
};
// UnityEngine.XR.ARKit.ARKitXRPlaneSubsystem_Provider_FlipBoundaryWindingJob
struct FlipBoundaryWindingJob_tAB484E8E0F98EEA68CD01FECAEBD5BFA7C75B312
{
public:
// Unity.Collections.NativeArray`1<UnityEngine.Vector2> UnityEngine.XR.ARKit.ARKitXRPlaneSubsystem_Provider_FlipBoundaryWindingJob::positions
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 ___positions_0;
public:
inline static int32_t get_offset_of_positions_0() { return static_cast<int32_t>(offsetof(FlipBoundaryWindingJob_tAB484E8E0F98EEA68CD01FECAEBD5BFA7C75B312, ___positions_0)); }
inline NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 get_positions_0() const { return ___positions_0; }
inline NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 * get_address_of_positions_0() { return &___positions_0; }
inline void set_positions_0(NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 value)
{
___positions_0 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARKit.ARKitXRPlaneSubsystem/Provider/FlipBoundaryWindingJob
struct FlipBoundaryWindingJob_tAB484E8E0F98EEA68CD01FECAEBD5BFA7C75B312_marshaled_pinvoke
{
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 ___positions_0;
};
// Native definition for COM marshalling of UnityEngine.XR.ARKit.ARKitXRPlaneSubsystem/Provider/FlipBoundaryWindingJob
struct FlipBoundaryWindingJob_tAB484E8E0F98EEA68CD01FECAEBD5BFA7C75B312_marshaled_com
{
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 ___positions_0;
};
// UnityEngine.XR.ARKit.ARKitXRPlaneSubsystem_Provider_TransformBoundaryPositionsJob
struct TransformBoundaryPositionsJob_t42DE86BF3E6AB9CAC98E5C1772288A28226EC59A
{
public:
// Unity.Collections.NativeArray`1<UnityEngine.Vector4> UnityEngine.XR.ARKit.ARKitXRPlaneSubsystem_Provider_TransformBoundaryPositionsJob::positionsIn
NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 ___positionsIn_0;
// Unity.Collections.NativeArray`1<UnityEngine.Vector2> UnityEngine.XR.ARKit.ARKitXRPlaneSubsystem_Provider_TransformBoundaryPositionsJob::positionsOut
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 ___positionsOut_1;
public:
inline static int32_t get_offset_of_positionsIn_0() { return static_cast<int32_t>(offsetof(TransformBoundaryPositionsJob_t42DE86BF3E6AB9CAC98E5C1772288A28226EC59A, ___positionsIn_0)); }
inline NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 get_positionsIn_0() const { return ___positionsIn_0; }
inline NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 * get_address_of_positionsIn_0() { return &___positionsIn_0; }
inline void set_positionsIn_0(NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 value)
{
___positionsIn_0 = value;
}
inline static int32_t get_offset_of_positionsOut_1() { return static_cast<int32_t>(offsetof(TransformBoundaryPositionsJob_t42DE86BF3E6AB9CAC98E5C1772288A28226EC59A, ___positionsOut_1)); }
inline NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 get_positionsOut_1() const { return ___positionsOut_1; }
inline NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 * get_address_of_positionsOut_1() { return &___positionsOut_1; }
inline void set_positionsOut_1(NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 value)
{
___positionsOut_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARKit.ARKitXRPlaneSubsystem/Provider/TransformBoundaryPositionsJob
struct TransformBoundaryPositionsJob_t42DE86BF3E6AB9CAC98E5C1772288A28226EC59A_marshaled_pinvoke
{
NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 ___positionsIn_0;
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 ___positionsOut_1;
};
// Native definition for COM marshalling of UnityEngine.XR.ARKit.ARKitXRPlaneSubsystem/Provider/TransformBoundaryPositionsJob
struct TransformBoundaryPositionsJob_t42DE86BF3E6AB9CAC98E5C1772288A28226EC59A_marshaled_com
{
NativeArray_1_t32E6297AF854BD125529357115F7C02BA25C4C96 ___positionsIn_0;
NativeArray_1_t86AEDFC03CDAC131E54ED6A68B102EBD947A3F71 ___positionsOut_1;
};
// UnityEngine.XR.ARSubsystems.XRDepthSubsystem
struct XRDepthSubsystem_tA1188AEE9FA009EAF2BDA064BEA1482FF4CD8AD7 : public TrackingSubsystem_2_t70B6F8BBDCEA193299D7F4FC34F9D63A1996CE0C
{
public:
// UnityEngine.XR.ARSubsystems.XRDepthSubsystem_IDepthApi UnityEngine.XR.ARSubsystems.XRDepthSubsystem::m_Interface
IDepthApi_t7CEE33C76911E53220D0242D5E38503D64736BE4 * ___m_Interface_0;
// UnityEngine.XR.ARSubsystems.XRPointCloud UnityEngine.XR.ARSubsystems.XRDepthSubsystem::m_DefaultPointCloud
XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 ___m_DefaultPointCloud_1;
public:
inline static int32_t get_offset_of_m_Interface_0() { return static_cast<int32_t>(offsetof(XRDepthSubsystem_tA1188AEE9FA009EAF2BDA064BEA1482FF4CD8AD7, ___m_Interface_0)); }
inline IDepthApi_t7CEE33C76911E53220D0242D5E38503D64736BE4 * get_m_Interface_0() const { return ___m_Interface_0; }
inline IDepthApi_t7CEE33C76911E53220D0242D5E38503D64736BE4 ** get_address_of_m_Interface_0() { return &___m_Interface_0; }
inline void set_m_Interface_0(IDepthApi_t7CEE33C76911E53220D0242D5E38503D64736BE4 * value)
{
___m_Interface_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Interface_0), (void*)value);
}
inline static int32_t get_offset_of_m_DefaultPointCloud_1() { return static_cast<int32_t>(offsetof(XRDepthSubsystem_tA1188AEE9FA009EAF2BDA064BEA1482FF4CD8AD7, ___m_DefaultPointCloud_1)); }
inline XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 get_m_DefaultPointCloud_1() const { return ___m_DefaultPointCloud_1; }
inline XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 * get_address_of_m_DefaultPointCloud_1() { return &___m_DefaultPointCloud_1; }
inline void set_m_DefaultPointCloud_1(XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 value)
{
___m_DefaultPointCloud_1 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRPlaneSubsystem
struct XRPlaneSubsystem_tCAFBDE4A030D5EB56FC6D968DB31FA2852836909 : public TrackingSubsystem_2_t758E80FC2D0E4A224AA733F5ED6419083CD56389
{
public:
// UnityEngine.XR.ARSubsystems.XRPlaneSubsystem_IProvider UnityEngine.XR.ARSubsystems.XRPlaneSubsystem::m_Provider
IProvider_t40982CEC3244CC0C726CED2C27336E95321F7469 * ___m_Provider_0;
// UnityEngine.XR.ARSubsystems.BoundedPlane UnityEngine.XR.ARSubsystems.XRPlaneSubsystem::m_DefaultPlane
BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 ___m_DefaultPlane_1;
public:
inline static int32_t get_offset_of_m_Provider_0() { return static_cast<int32_t>(offsetof(XRPlaneSubsystem_tCAFBDE4A030D5EB56FC6D968DB31FA2852836909, ___m_Provider_0)); }
inline IProvider_t40982CEC3244CC0C726CED2C27336E95321F7469 * get_m_Provider_0() const { return ___m_Provider_0; }
inline IProvider_t40982CEC3244CC0C726CED2C27336E95321F7469 ** get_address_of_m_Provider_0() { return &___m_Provider_0; }
inline void set_m_Provider_0(IProvider_t40982CEC3244CC0C726CED2C27336E95321F7469 * value)
{
___m_Provider_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Provider_0), (void*)value);
}
inline static int32_t get_offset_of_m_DefaultPlane_1() { return static_cast<int32_t>(offsetof(XRPlaneSubsystem_tCAFBDE4A030D5EB56FC6D968DB31FA2852836909, ___m_DefaultPlane_1)); }
inline BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 get_m_DefaultPlane_1() const { return ___m_DefaultPlane_1; }
inline BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 * get_address_of_m_DefaultPlane_1() { return &___m_DefaultPlane_1; }
inline void set_m_DefaultPlane_1(BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 value)
{
___m_DefaultPlane_1 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRRaycastSubsystem
struct XRRaycastSubsystem_t1181EA314910ABB4E1F50BF2F7650EC1512A0A20 : public Subsystem_1_t1D44399B8190A9E3533EE5C5D5915B75D79B2E66
{
public:
// UnityEngine.XR.ARSubsystems.XRRaycastSubsystem_IProvider UnityEngine.XR.ARSubsystems.XRRaycastSubsystem::m_Provider
IProvider_tB9DFB2CA3241B1F6107D01753C0F00628994A3ED * ___m_Provider_0;
// UnityEngine.XR.ARSubsystems.XRRaycastHit UnityEngine.XR.ARSubsystems.XRRaycastSubsystem::m_DefaultRaycastHit
XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 ___m_DefaultRaycastHit_1;
public:
inline static int32_t get_offset_of_m_Provider_0() { return static_cast<int32_t>(offsetof(XRRaycastSubsystem_t1181EA314910ABB4E1F50BF2F7650EC1512A0A20, ___m_Provider_0)); }
inline IProvider_tB9DFB2CA3241B1F6107D01753C0F00628994A3ED * get_m_Provider_0() const { return ___m_Provider_0; }
inline IProvider_tB9DFB2CA3241B1F6107D01753C0F00628994A3ED ** get_address_of_m_Provider_0() { return &___m_Provider_0; }
inline void set_m_Provider_0(IProvider_tB9DFB2CA3241B1F6107D01753C0F00628994A3ED * value)
{
___m_Provider_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Provider_0), (void*)value);
}
inline static int32_t get_offset_of_m_DefaultRaycastHit_1() { return static_cast<int32_t>(offsetof(XRRaycastSubsystem_t1181EA314910ABB4E1F50BF2F7650EC1512A0A20, ___m_DefaultRaycastHit_1)); }
inline XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 get_m_DefaultRaycastHit_1() const { return ___m_DefaultRaycastHit_1; }
inline XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 * get_address_of_m_DefaultRaycastHit_1() { return &___m_DefaultRaycastHit_1; }
inline void set_m_DefaultRaycastHit_1(XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 value)
{
___m_DefaultRaycastHit_1 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem
struct XRReferencePointSubsystem_tF175EC0188CC6EFB0A0633BA11FCA4D81A6A88E3 : public TrackingSubsystem_2_t62AFA2295FCEFC2C3818E3B9EDB3C1AF80509899
{
public:
// UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem_IProvider UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem::m_Provider
IProvider_tA80639246D0ED291E8332BE2FBC3FE3EA13A4459 * ___m_Provider_0;
// UnityEngine.XR.ARSubsystems.XRReferencePoint UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem::m_DefaultReferencePoint
XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 ___m_DefaultReferencePoint_1;
public:
inline static int32_t get_offset_of_m_Provider_0() { return static_cast<int32_t>(offsetof(XRReferencePointSubsystem_tF175EC0188CC6EFB0A0633BA11FCA4D81A6A88E3, ___m_Provider_0)); }
inline IProvider_tA80639246D0ED291E8332BE2FBC3FE3EA13A4459 * get_m_Provider_0() const { return ___m_Provider_0; }
inline IProvider_tA80639246D0ED291E8332BE2FBC3FE3EA13A4459 ** get_address_of_m_Provider_0() { return &___m_Provider_0; }
inline void set_m_Provider_0(IProvider_tA80639246D0ED291E8332BE2FBC3FE3EA13A4459 * value)
{
___m_Provider_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Provider_0), (void*)value);
}
inline static int32_t get_offset_of_m_DefaultReferencePoint_1() { return static_cast<int32_t>(offsetof(XRReferencePointSubsystem_tF175EC0188CC6EFB0A0633BA11FCA4D81A6A88E3, ___m_DefaultReferencePoint_1)); }
inline XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 get_m_DefaultReferencePoint_1() const { return ___m_DefaultReferencePoint_1; }
inline XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 * get_address_of_m_DefaultReferencePoint_1() { return &___m_DefaultReferencePoint_1; }
inline void set_m_DefaultReferencePoint_1(XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 value)
{
___m_DefaultReferencePoint_1 = value;
}
};
// UnityEngine.XR.iOS.ARFaceAnchor
struct ARFaceAnchor_tFD943197F892D93FB7E2C8F7B8BDAABE62714AC6 : public RuntimeObject
{
public:
// UnityEngine.XR.iOS.UnityARFaceAnchorData UnityEngine.XR.iOS.ARFaceAnchor::faceAnchorData
UnityARFaceAnchorData_t3A457F763D64A6BE658018C01B8B4DACA73E87C1 ___faceAnchorData_0;
// UnityEngine.XR.iOS.ARFaceGeometry UnityEngine.XR.iOS.ARFaceAnchor::m_FaceGeometry
ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2 * ___m_FaceGeometry_2;
public:
inline static int32_t get_offset_of_faceAnchorData_0() { return static_cast<int32_t>(offsetof(ARFaceAnchor_tFD943197F892D93FB7E2C8F7B8BDAABE62714AC6, ___faceAnchorData_0)); }
inline UnityARFaceAnchorData_t3A457F763D64A6BE658018C01B8B4DACA73E87C1 get_faceAnchorData_0() const { return ___faceAnchorData_0; }
inline UnityARFaceAnchorData_t3A457F763D64A6BE658018C01B8B4DACA73E87C1 * get_address_of_faceAnchorData_0() { return &___faceAnchorData_0; }
inline void set_faceAnchorData_0(UnityARFaceAnchorData_t3A457F763D64A6BE658018C01B8B4DACA73E87C1 value)
{
___faceAnchorData_0 = value;
}
inline static int32_t get_offset_of_m_FaceGeometry_2() { return static_cast<int32_t>(offsetof(ARFaceAnchor_tFD943197F892D93FB7E2C8F7B8BDAABE62714AC6, ___m_FaceGeometry_2)); }
inline ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2 * get_m_FaceGeometry_2() const { return ___m_FaceGeometry_2; }
inline ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2 ** get_address_of_m_FaceGeometry_2() { return &___m_FaceGeometry_2; }
inline void set_m_FaceGeometry_2(ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2 * value)
{
___m_FaceGeometry_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_FaceGeometry_2), (void*)value);
}
};
struct ARFaceAnchor_tFD943197F892D93FB7E2C8F7B8BDAABE62714AC6_StaticFields
{
public:
// System.Collections.Generic.Dictionary`2<System.String,System.Single> UnityEngine.XR.iOS.ARFaceAnchor::blendshapesDictionary
Dictionary_2_t89F484A77FD6673A172CE80BD0A37031FBD1FD6A * ___blendshapesDictionary_1;
public:
inline static int32_t get_offset_of_blendshapesDictionary_1() { return static_cast<int32_t>(offsetof(ARFaceAnchor_tFD943197F892D93FB7E2C8F7B8BDAABE62714AC6_StaticFields, ___blendshapesDictionary_1)); }
inline Dictionary_2_t89F484A77FD6673A172CE80BD0A37031FBD1FD6A * get_blendshapesDictionary_1() const { return ___blendshapesDictionary_1; }
inline Dictionary_2_t89F484A77FD6673A172CE80BD0A37031FBD1FD6A ** get_address_of_blendshapesDictionary_1() { return &___blendshapesDictionary_1; }
inline void set_blendshapesDictionary_1(Dictionary_2_t89F484A77FD6673A172CE80BD0A37031FBD1FD6A * value)
{
___blendshapesDictionary_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___blendshapesDictionary_1), (void*)value);
}
};
// UnityEngine.XR.iOS.ARFaceAnchor_DictionaryVisitorHandler
struct DictionaryVisitorHandler_tB4DF9F067684F7ED46A78673D50451E3AD07FB79 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.ARFrame
struct ARFrame_t2A3F4327D4C5A7FD1301CFE42BA88D9DB95CD1B7
{
public:
// System.Double UnityEngine.XR.iOS.ARFrame::timestamp
double ___timestamp_0;
// System.IntPtr UnityEngine.XR.iOS.ARFrame::capturedImage
intptr_t ___capturedImage_1;
// UnityEngine.XR.iOS.ARCamera UnityEngine.XR.iOS.ARFrame::camera
ARCamera_t1B74DF09B6BC55080382921442125103F2140D46 ___camera_2;
// UnityEngine.XR.iOS.ARLightEstimate UnityEngine.XR.iOS.ARFrame::lightEstimate
ARLightEstimate_t1D878D701972E94A36A287385FE1D8E932C05166 ___lightEstimate_3;
public:
inline static int32_t get_offset_of_timestamp_0() { return static_cast<int32_t>(offsetof(ARFrame_t2A3F4327D4C5A7FD1301CFE42BA88D9DB95CD1B7, ___timestamp_0)); }
inline double get_timestamp_0() const { return ___timestamp_0; }
inline double* get_address_of_timestamp_0() { return &___timestamp_0; }
inline void set_timestamp_0(double value)
{
___timestamp_0 = value;
}
inline static int32_t get_offset_of_capturedImage_1() { return static_cast<int32_t>(offsetof(ARFrame_t2A3F4327D4C5A7FD1301CFE42BA88D9DB95CD1B7, ___capturedImage_1)); }
inline intptr_t get_capturedImage_1() const { return ___capturedImage_1; }
inline intptr_t* get_address_of_capturedImage_1() { return &___capturedImage_1; }
inline void set_capturedImage_1(intptr_t value)
{
___capturedImage_1 = value;
}
inline static int32_t get_offset_of_camera_2() { return static_cast<int32_t>(offsetof(ARFrame_t2A3F4327D4C5A7FD1301CFE42BA88D9DB95CD1B7, ___camera_2)); }
inline ARCamera_t1B74DF09B6BC55080382921442125103F2140D46 get_camera_2() const { return ___camera_2; }
inline ARCamera_t1B74DF09B6BC55080382921442125103F2140D46 * get_address_of_camera_2() { return &___camera_2; }
inline void set_camera_2(ARCamera_t1B74DF09B6BC55080382921442125103F2140D46 value)
{
___camera_2 = value;
}
inline static int32_t get_offset_of_lightEstimate_3() { return static_cast<int32_t>(offsetof(ARFrame_t2A3F4327D4C5A7FD1301CFE42BA88D9DB95CD1B7, ___lightEstimate_3)); }
inline ARLightEstimate_t1D878D701972E94A36A287385FE1D8E932C05166 get_lightEstimate_3() const { return ___lightEstimate_3; }
inline ARLightEstimate_t1D878D701972E94A36A287385FE1D8E932C05166 * get_address_of_lightEstimate_3() { return &___lightEstimate_3; }
inline void set_lightEstimate_3(ARLightEstimate_t1D878D701972E94A36A287385FE1D8E932C05166 value)
{
___lightEstimate_3 = value;
}
};
// UnityEngine.XR.iOS.ARImageAnchor
struct ARImageAnchor_tA5DACC4D1B31D4AD6E70B8BC112CBF98AFA68EF6 : public RuntimeObject
{
public:
// UnityEngine.XR.iOS.UnityARImageAnchorData UnityEngine.XR.iOS.ARImageAnchor::imageAnchorData
UnityARImageAnchorData_t2EA02386DC32BBCA4A3EB205918BF28F7663B13E ___imageAnchorData_0;
public:
inline static int32_t get_offset_of_imageAnchorData_0() { return static_cast<int32_t>(offsetof(ARImageAnchor_tA5DACC4D1B31D4AD6E70B8BC112CBF98AFA68EF6, ___imageAnchorData_0)); }
inline UnityARImageAnchorData_t2EA02386DC32BBCA4A3EB205918BF28F7663B13E get_imageAnchorData_0() const { return ___imageAnchorData_0; }
inline UnityARImageAnchorData_t2EA02386DC32BBCA4A3EB205918BF28F7663B13E * get_address_of_imageAnchorData_0() { return &___imageAnchorData_0; }
inline void set_imageAnchorData_0(UnityARImageAnchorData_t2EA02386DC32BBCA4A3EB205918BF28F7663B13E value)
{
___imageAnchorData_0 = value;
}
};
// UnityEngine.XR.iOS.ARObjectAnchor
struct ARObjectAnchor_tCA17987C77A04DACBE8323DE90B79D7B7668A8DF : public RuntimeObject
{
public:
// UnityEngine.XR.iOS.UnityARObjectAnchorData UnityEngine.XR.iOS.ARObjectAnchor::objectAnchorData
UnityARObjectAnchorData_t0FBFBB46ADB385CAD870834CAB7F892C8E2FEC57 ___objectAnchorData_0;
public:
inline static int32_t get_offset_of_objectAnchorData_0() { return static_cast<int32_t>(offsetof(ARObjectAnchor_tCA17987C77A04DACBE8323DE90B79D7B7668A8DF, ___objectAnchorData_0)); }
inline UnityARObjectAnchorData_t0FBFBB46ADB385CAD870834CAB7F892C8E2FEC57 get_objectAnchorData_0() const { return ___objectAnchorData_0; }
inline UnityARObjectAnchorData_t0FBFBB46ADB385CAD870834CAB7F892C8E2FEC57 * get_address_of_objectAnchorData_0() { return &___objectAnchorData_0; }
inline void set_objectAnchorData_0(UnityARObjectAnchorData_t0FBFBB46ADB385CAD870834CAB7F892C8E2FEC57 value)
{
___objectAnchorData_0 = value;
}
};
// UnityEngine.XR.iOS.ARPlaneAnchor
struct ARPlaneAnchor_t0FFC0A1F23FF68703D127AFF1D9D11BB18EAC189 : public RuntimeObject
{
public:
// UnityEngine.XR.iOS.UnityARAnchorData UnityEngine.XR.iOS.ARPlaneAnchor::planeAnchorData
UnityARAnchorData_t1B8580CF3564F44D8BA78ACFCB3E75B897EECB13 ___planeAnchorData_0;
// System.String UnityEngine.XR.iOS.ARPlaneAnchor::<identifierStr>k__BackingField
String_t* ___U3CidentifierStrU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_planeAnchorData_0() { return static_cast<int32_t>(offsetof(ARPlaneAnchor_t0FFC0A1F23FF68703D127AFF1D9D11BB18EAC189, ___planeAnchorData_0)); }
inline UnityARAnchorData_t1B8580CF3564F44D8BA78ACFCB3E75B897EECB13 get_planeAnchorData_0() const { return ___planeAnchorData_0; }
inline UnityARAnchorData_t1B8580CF3564F44D8BA78ACFCB3E75B897EECB13 * get_address_of_planeAnchorData_0() { return &___planeAnchorData_0; }
inline void set_planeAnchorData_0(UnityARAnchorData_t1B8580CF3564F44D8BA78ACFCB3E75B897EECB13 value)
{
___planeAnchorData_0 = value;
}
inline static int32_t get_offset_of_U3CidentifierStrU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(ARPlaneAnchor_t0FFC0A1F23FF68703D127AFF1D9D11BB18EAC189, ___U3CidentifierStrU3Ek__BackingField_1)); }
inline String_t* get_U3CidentifierStrU3Ek__BackingField_1() const { return ___U3CidentifierStrU3Ek__BackingField_1; }
inline String_t** get_address_of_U3CidentifierStrU3Ek__BackingField_1() { return &___U3CidentifierStrU3Ek__BackingField_1; }
inline void set_U3CidentifierStrU3Ek__BackingField_1(String_t* value)
{
___U3CidentifierStrU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CidentifierStrU3Ek__BackingField_1), (void*)value);
}
};
// UnityEngine.XR.iOS.UnityARCamera
struct UnityARCamera_t4C2AF5738761FACBA2DCDE8B87228F38FE12EFE4
{
public:
// UnityEngine.XR.iOS.UnityARMatrix4x4 UnityEngine.XR.iOS.UnityARCamera::worldTransform
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ___worldTransform_0;
// UnityEngine.XR.iOS.UnityARMatrix4x4 UnityEngine.XR.iOS.UnityARCamera::projectionMatrix
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ___projectionMatrix_1;
// UnityEngine.XR.iOS.ARTrackingState UnityEngine.XR.iOS.UnityARCamera::trackingState
int32_t ___trackingState_2;
// UnityEngine.XR.iOS.ARTrackingStateReason UnityEngine.XR.iOS.UnityARCamera::trackingReason
int32_t ___trackingReason_3;
// UnityEngine.XR.iOS.UnityVideoParams UnityEngine.XR.iOS.UnityARCamera::videoParams
UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1 ___videoParams_4;
// UnityEngine.XR.iOS.UnityARLightData UnityEngine.XR.iOS.UnityARCamera::lightData
UnityARLightData_t65CE5E12F3A5F26CF443B38F432BD4CD5CF7B39C ___lightData_5;
// UnityEngine.XR.iOS.UnityARMatrix4x4 UnityEngine.XR.iOS.UnityARCamera::displayTransform
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ___displayTransform_6;
// UnityEngine.XR.iOS.ARPointCloud UnityEngine.XR.iOS.UnityARCamera::pointCloud
ARPointCloud_t57E36E6C732B90C48B77D64E9FAE17668784064C * ___pointCloud_7;
// UnityEngine.XR.iOS.ARWorldMappingStatus UnityEngine.XR.iOS.UnityARCamera::worldMappingStatus
int32_t ___worldMappingStatus_8;
public:
inline static int32_t get_offset_of_worldTransform_0() { return static_cast<int32_t>(offsetof(UnityARCamera_t4C2AF5738761FACBA2DCDE8B87228F38FE12EFE4, ___worldTransform_0)); }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 get_worldTransform_0() const { return ___worldTransform_0; }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 * get_address_of_worldTransform_0() { return &___worldTransform_0; }
inline void set_worldTransform_0(UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 value)
{
___worldTransform_0 = value;
}
inline static int32_t get_offset_of_projectionMatrix_1() { return static_cast<int32_t>(offsetof(UnityARCamera_t4C2AF5738761FACBA2DCDE8B87228F38FE12EFE4, ___projectionMatrix_1)); }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 get_projectionMatrix_1() const { return ___projectionMatrix_1; }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 * get_address_of_projectionMatrix_1() { return &___projectionMatrix_1; }
inline void set_projectionMatrix_1(UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 value)
{
___projectionMatrix_1 = value;
}
inline static int32_t get_offset_of_trackingState_2() { return static_cast<int32_t>(offsetof(UnityARCamera_t4C2AF5738761FACBA2DCDE8B87228F38FE12EFE4, ___trackingState_2)); }
inline int32_t get_trackingState_2() const { return ___trackingState_2; }
inline int32_t* get_address_of_trackingState_2() { return &___trackingState_2; }
inline void set_trackingState_2(int32_t value)
{
___trackingState_2 = value;
}
inline static int32_t get_offset_of_trackingReason_3() { return static_cast<int32_t>(offsetof(UnityARCamera_t4C2AF5738761FACBA2DCDE8B87228F38FE12EFE4, ___trackingReason_3)); }
inline int32_t get_trackingReason_3() const { return ___trackingReason_3; }
inline int32_t* get_address_of_trackingReason_3() { return &___trackingReason_3; }
inline void set_trackingReason_3(int32_t value)
{
___trackingReason_3 = value;
}
inline static int32_t get_offset_of_videoParams_4() { return static_cast<int32_t>(offsetof(UnityARCamera_t4C2AF5738761FACBA2DCDE8B87228F38FE12EFE4, ___videoParams_4)); }
inline UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1 get_videoParams_4() const { return ___videoParams_4; }
inline UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1 * get_address_of_videoParams_4() { return &___videoParams_4; }
inline void set_videoParams_4(UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1 value)
{
___videoParams_4 = value;
}
inline static int32_t get_offset_of_lightData_5() { return static_cast<int32_t>(offsetof(UnityARCamera_t4C2AF5738761FACBA2DCDE8B87228F38FE12EFE4, ___lightData_5)); }
inline UnityARLightData_t65CE5E12F3A5F26CF443B38F432BD4CD5CF7B39C get_lightData_5() const { return ___lightData_5; }
inline UnityARLightData_t65CE5E12F3A5F26CF443B38F432BD4CD5CF7B39C * get_address_of_lightData_5() { return &___lightData_5; }
inline void set_lightData_5(UnityARLightData_t65CE5E12F3A5F26CF443B38F432BD4CD5CF7B39C value)
{
___lightData_5 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___lightData_5))->___arDirectonalLightEstimate_2), (void*)NULL);
}
inline static int32_t get_offset_of_displayTransform_6() { return static_cast<int32_t>(offsetof(UnityARCamera_t4C2AF5738761FACBA2DCDE8B87228F38FE12EFE4, ___displayTransform_6)); }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 get_displayTransform_6() const { return ___displayTransform_6; }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 * get_address_of_displayTransform_6() { return &___displayTransform_6; }
inline void set_displayTransform_6(UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 value)
{
___displayTransform_6 = value;
}
inline static int32_t get_offset_of_pointCloud_7() { return static_cast<int32_t>(offsetof(UnityARCamera_t4C2AF5738761FACBA2DCDE8B87228F38FE12EFE4, ___pointCloud_7)); }
inline ARPointCloud_t57E36E6C732B90C48B77D64E9FAE17668784064C * get_pointCloud_7() const { return ___pointCloud_7; }
inline ARPointCloud_t57E36E6C732B90C48B77D64E9FAE17668784064C ** get_address_of_pointCloud_7() { return &___pointCloud_7; }
inline void set_pointCloud_7(ARPointCloud_t57E36E6C732B90C48B77D64E9FAE17668784064C * value)
{
___pointCloud_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___pointCloud_7), (void*)value);
}
inline static int32_t get_offset_of_worldMappingStatus_8() { return static_cast<int32_t>(offsetof(UnityARCamera_t4C2AF5738761FACBA2DCDE8B87228F38FE12EFE4, ___worldMappingStatus_8)); }
inline int32_t get_worldMappingStatus_8() const { return ___worldMappingStatus_8; }
inline int32_t* get_address_of_worldMappingStatus_8() { return &___worldMappingStatus_8; }
inline void set_worldMappingStatus_8(int32_t value)
{
___worldMappingStatus_8 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.iOS.UnityARCamera
struct UnityARCamera_t4C2AF5738761FACBA2DCDE8B87228F38FE12EFE4_marshaled_pinvoke
{
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ___worldTransform_0;
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ___projectionMatrix_1;
int32_t ___trackingState_2;
int32_t ___trackingReason_3;
UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1 ___videoParams_4;
UnityARLightData_t65CE5E12F3A5F26CF443B38F432BD4CD5CF7B39C_marshaled_pinvoke ___lightData_5;
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ___displayTransform_6;
ARPointCloud_t57E36E6C732B90C48B77D64E9FAE17668784064C * ___pointCloud_7;
int32_t ___worldMappingStatus_8;
};
// Native definition for COM marshalling of UnityEngine.XR.iOS.UnityARCamera
struct UnityARCamera_t4C2AF5738761FACBA2DCDE8B87228F38FE12EFE4_marshaled_com
{
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ___worldTransform_0;
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ___projectionMatrix_1;
int32_t ___trackingState_2;
int32_t ___trackingReason_3;
UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1 ___videoParams_4;
UnityARLightData_t65CE5E12F3A5F26CF443B38F432BD4CD5CF7B39C_marshaled_com ___lightData_5;
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ___displayTransform_6;
ARPointCloud_t57E36E6C732B90C48B77D64E9FAE17668784064C * ___pointCloud_7;
int32_t ___worldMappingStatus_8;
};
// UnityEngine.XR.iOS.UnityAREnvironmentProbeAnchorData
struct UnityAREnvironmentProbeAnchorData_t211BF2642A51D3E86257F22D2E305F2DBE8FA649
{
public:
// System.IntPtr UnityEngine.XR.iOS.UnityAREnvironmentProbeAnchorData::ptrIdentifier
intptr_t ___ptrIdentifier_0;
// UnityEngine.XR.iOS.UnityARMatrix4x4 UnityEngine.XR.iOS.UnityAREnvironmentProbeAnchorData::transform
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ___transform_1;
// UnityEngine.XR.iOS.UnityAREnvironmentProbeCubemapData UnityEngine.XR.iOS.UnityAREnvironmentProbeAnchorData::cubemapData
UnityAREnvironmentProbeCubemapData_tAAC438F3F93347041F96A3D34421514C235CA98D ___cubemapData_2;
// UnityEngine.Vector3 UnityEngine.XR.iOS.UnityAREnvironmentProbeAnchorData::probeExtent
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___probeExtent_3;
public:
inline static int32_t get_offset_of_ptrIdentifier_0() { return static_cast<int32_t>(offsetof(UnityAREnvironmentProbeAnchorData_t211BF2642A51D3E86257F22D2E305F2DBE8FA649, ___ptrIdentifier_0)); }
inline intptr_t get_ptrIdentifier_0() const { return ___ptrIdentifier_0; }
inline intptr_t* get_address_of_ptrIdentifier_0() { return &___ptrIdentifier_0; }
inline void set_ptrIdentifier_0(intptr_t value)
{
___ptrIdentifier_0 = value;
}
inline static int32_t get_offset_of_transform_1() { return static_cast<int32_t>(offsetof(UnityAREnvironmentProbeAnchorData_t211BF2642A51D3E86257F22D2E305F2DBE8FA649, ___transform_1)); }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 get_transform_1() const { return ___transform_1; }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 * get_address_of_transform_1() { return &___transform_1; }
inline void set_transform_1(UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 value)
{
___transform_1 = value;
}
inline static int32_t get_offset_of_cubemapData_2() { return static_cast<int32_t>(offsetof(UnityAREnvironmentProbeAnchorData_t211BF2642A51D3E86257F22D2E305F2DBE8FA649, ___cubemapData_2)); }
inline UnityAREnvironmentProbeCubemapData_tAAC438F3F93347041F96A3D34421514C235CA98D get_cubemapData_2() const { return ___cubemapData_2; }
inline UnityAREnvironmentProbeCubemapData_tAAC438F3F93347041F96A3D34421514C235CA98D * get_address_of_cubemapData_2() { return &___cubemapData_2; }
inline void set_cubemapData_2(UnityAREnvironmentProbeCubemapData_tAAC438F3F93347041F96A3D34421514C235CA98D value)
{
___cubemapData_2 = value;
}
inline static int32_t get_offset_of_probeExtent_3() { return static_cast<int32_t>(offsetof(UnityAREnvironmentProbeAnchorData_t211BF2642A51D3E86257F22D2E305F2DBE8FA649, ___probeExtent_3)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_probeExtent_3() const { return ___probeExtent_3; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_probeExtent_3() { return &___probeExtent_3; }
inline void set_probeExtent_3(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___probeExtent_3 = value;
}
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARAnchorAdded
struct ARAnchorAdded_t6277A20DBBA2E63B85B55B429C008406053F7523 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARAnchorRemoved
struct ARAnchorRemoved_t13C2AF3BC2C3615FCECA1B2705B7874CC4B0D584 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARAnchorUpdated
struct ARAnchorUpdated_tE476B1348DE6CE5FA8935A67EA790CC3BB99D151 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_AREnvironmentProbeAnchorAdded
struct AREnvironmentProbeAnchorAdded_t352A2C6AEBFEFAF9FFC8E717E49036E7A2DB4E00 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_AREnvironmentProbeAnchorRemoved
struct AREnvironmentProbeAnchorRemoved_t3B32E5CFAC64DF8A23DB054842E6A67B21CCEB4F : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_AREnvironmentProbeAnchorUpdated
struct AREnvironmentProbeAnchorUpdated_t2649997F4BDBFDD212BD08787EA6B37DA6C4D9FE : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARFaceAnchorAdded
struct ARFaceAnchorAdded_t219D3D70464F8BB12D6A399E8064715E168A8EF8 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARFaceAnchorRemoved
struct ARFaceAnchorRemoved_t0077E6ADE5395C6F773A98EB147FDD18B2D09E0C : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARFaceAnchorUpdated
struct ARFaceAnchorUpdated_tDCA0EF503312CB7AE89357A3FD5529FF55CC6C35 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARImageAnchorAdded
struct ARImageAnchorAdded_t71A8F5EF09FE7FFD5FFA8E35FE2409FE59893A44 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARImageAnchorRemoved
struct ARImageAnchorRemoved_t55233D152AF70F8970D7F4598DADE918A99C82B2 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARImageAnchorUpdated
struct ARImageAnchorUpdated_t552C60653C0710AD7312589A16E6E8B4F00CE036 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARObjectAnchorAdded
struct ARObjectAnchorAdded_t44787F4D7B17D8D9D220C99ECB644F34E8DFF41C : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARObjectAnchorRemoved
struct ARObjectAnchorRemoved_t7365DB46860AE9393ABBD80691D81F38FA5A41B6 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARObjectAnchorUpdated
struct ARObjectAnchorUpdated_tECD9813AEC4C3F1B751595D3C48DA59F8105C88D : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARSessionCallback
struct ARSessionCallback_t309401D5599524DA96703ADFE0AC1702928C7151 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARSessionFailed
struct ARSessionFailed_tA00FB2F831AFF99EBDFAC43C61499421BDF9BE00 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARSessionLocalizeCallback
struct ARSessionLocalizeCallback_t639D87EE7A908EF8C7CF864CC81418DC25C1ADA1 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARUserAnchorAdded
struct ARUserAnchorAdded_tCBF6BB842498500A7E02669D8A22995FCD3F58A8 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARUserAnchorRemoved
struct ARUserAnchorRemoved_tD5C26EFD62DE28608B965D94537FD66C5D914411 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARUserAnchorUpdated
struct ARUserAnchorUpdated_tAB2AC251FF9E7CA5179BEF03D3E46C929A86DC1F : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_internal_ARAnchorAdded
struct internal_ARAnchorAdded_t1DC1BFE366457201FF10F3397AFF538774102CE2 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_internal_ARAnchorRemoved
struct internal_ARAnchorRemoved_t3B0017FC7404A4D953C19A81B92B674C88AC69B5 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_internal_ARAnchorUpdated
struct internal_ARAnchorUpdated_tFB1A275B5116DBED3E3D0B1D5BB61063F76B6A75 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_internal_ARFaceAnchorAdded
struct internal_ARFaceAnchorAdded_t365B295C359AEBAC2AAD8013E00C02BC75F63807 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_internal_ARFaceAnchorRemoved
struct internal_ARFaceAnchorRemoved_tAD4C751D5D11D8A4B5C0118226E5CD33F1835873 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_internal_ARFaceAnchorUpdated
struct internal_ARFaceAnchorUpdated_tBE8086BE58C775CF9E9E47D822BCCCB18453737A : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_internal_ARImageAnchorAdded
struct internal_ARImageAnchorAdded_t7F4E10B8127B30BA2B4BBB2602385E8AE2288958 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_internal_ARImageAnchorRemoved
struct internal_ARImageAnchorRemoved_t022F3C662F10FCD6E655761503138602FD34A28C : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_internal_ARImageAnchorUpdated
struct internal_ARImageAnchorUpdated_t9BAA541A1BDBB1623354CB38D224A742FDC3CF32 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_internal_ARObjectAnchorAdded
struct internal_ARObjectAnchorAdded_t8278ED68EC72D7FEF7F105F7B88A1C09DAC51F6C : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_internal_ARObjectAnchorRemoved
struct internal_ARObjectAnchorRemoved_t4E91BA2E6F6BCC06200105C98976EF456A65C9E0 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_internal_ARObjectAnchorUpdated
struct internal_ARObjectAnchorUpdated_t78B539EDDDBD4893BA203BE94D614F5533C1AC2A : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_internal_ARUserAnchorAdded
struct internal_ARUserAnchorAdded_tA6FEAC716383C82FFBA1EE103C6D886F0FF36328 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_internal_ARUserAnchorRemoved
struct internal_ARUserAnchorRemoved_t35E6F1259D940FFE1325AF4346824A5DCDA7F3F2 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_internal_ARUserAnchorUpdated
struct internal_ARUserAnchorUpdated_t5879DD34C76E50F20701BECA2A05680D1CDE15E9 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.VideoFormatEnumerator
struct VideoFormatEnumerator_tE8B6480DBDEBDC141AA932D8696673C644A2006D : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.internal_UnityARCamera
struct internal_UnityARCamera_t4AB8B121A980DA87721B883E394951D15D80D8E8
{
public:
// UnityEngine.XR.iOS.UnityARMatrix4x4 UnityEngine.XR.iOS.internal_UnityARCamera::worldTransform
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ___worldTransform_0;
// UnityEngine.XR.iOS.UnityARMatrix4x4 UnityEngine.XR.iOS.internal_UnityARCamera::projectionMatrix
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ___projectionMatrix_1;
// UnityEngine.XR.iOS.ARTrackingState UnityEngine.XR.iOS.internal_UnityARCamera::trackingState
int32_t ___trackingState_2;
// UnityEngine.XR.iOS.ARTrackingStateReason UnityEngine.XR.iOS.internal_UnityARCamera::trackingReason
int32_t ___trackingReason_3;
// UnityEngine.XR.iOS.UnityVideoParams UnityEngine.XR.iOS.internal_UnityARCamera::videoParams
UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1 ___videoParams_4;
// UnityEngine.XR.iOS.UnityMarshalLightData UnityEngine.XR.iOS.internal_UnityARCamera::lightData
UnityMarshalLightData_tF77EE50423BA991FDB1DECDD23E914C3D3928F9C ___lightData_5;
// UnityEngine.XR.iOS.UnityARMatrix4x4 UnityEngine.XR.iOS.internal_UnityARCamera::displayTransform
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ___displayTransform_6;
// System.IntPtr UnityEngine.XR.iOS.internal_UnityARCamera::pointCloud
intptr_t ___pointCloud_7;
// System.UInt32 UnityEngine.XR.iOS.internal_UnityARCamera::getLightEstimation
uint32_t ___getLightEstimation_8;
// UnityEngine.XR.iOS.ARWorldMappingStatus UnityEngine.XR.iOS.internal_UnityARCamera::worldMappngStatus
int32_t ___worldMappngStatus_9;
public:
inline static int32_t get_offset_of_worldTransform_0() { return static_cast<int32_t>(offsetof(internal_UnityARCamera_t4AB8B121A980DA87721B883E394951D15D80D8E8, ___worldTransform_0)); }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 get_worldTransform_0() const { return ___worldTransform_0; }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 * get_address_of_worldTransform_0() { return &___worldTransform_0; }
inline void set_worldTransform_0(UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 value)
{
___worldTransform_0 = value;
}
inline static int32_t get_offset_of_projectionMatrix_1() { return static_cast<int32_t>(offsetof(internal_UnityARCamera_t4AB8B121A980DA87721B883E394951D15D80D8E8, ___projectionMatrix_1)); }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 get_projectionMatrix_1() const { return ___projectionMatrix_1; }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 * get_address_of_projectionMatrix_1() { return &___projectionMatrix_1; }
inline void set_projectionMatrix_1(UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 value)
{
___projectionMatrix_1 = value;
}
inline static int32_t get_offset_of_trackingState_2() { return static_cast<int32_t>(offsetof(internal_UnityARCamera_t4AB8B121A980DA87721B883E394951D15D80D8E8, ___trackingState_2)); }
inline int32_t get_trackingState_2() const { return ___trackingState_2; }
inline int32_t* get_address_of_trackingState_2() { return &___trackingState_2; }
inline void set_trackingState_2(int32_t value)
{
___trackingState_2 = value;
}
inline static int32_t get_offset_of_trackingReason_3() { return static_cast<int32_t>(offsetof(internal_UnityARCamera_t4AB8B121A980DA87721B883E394951D15D80D8E8, ___trackingReason_3)); }
inline int32_t get_trackingReason_3() const { return ___trackingReason_3; }
inline int32_t* get_address_of_trackingReason_3() { return &___trackingReason_3; }
inline void set_trackingReason_3(int32_t value)
{
___trackingReason_3 = value;
}
inline static int32_t get_offset_of_videoParams_4() { return static_cast<int32_t>(offsetof(internal_UnityARCamera_t4AB8B121A980DA87721B883E394951D15D80D8E8, ___videoParams_4)); }
inline UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1 get_videoParams_4() const { return ___videoParams_4; }
inline UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1 * get_address_of_videoParams_4() { return &___videoParams_4; }
inline void set_videoParams_4(UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1 value)
{
___videoParams_4 = value;
}
inline static int32_t get_offset_of_lightData_5() { return static_cast<int32_t>(offsetof(internal_UnityARCamera_t4AB8B121A980DA87721B883E394951D15D80D8E8, ___lightData_5)); }
inline UnityMarshalLightData_tF77EE50423BA991FDB1DECDD23E914C3D3928F9C get_lightData_5() const { return ___lightData_5; }
inline UnityMarshalLightData_tF77EE50423BA991FDB1DECDD23E914C3D3928F9C * get_address_of_lightData_5() { return &___lightData_5; }
inline void set_lightData_5(UnityMarshalLightData_tF77EE50423BA991FDB1DECDD23E914C3D3928F9C value)
{
___lightData_5 = value;
}
inline static int32_t get_offset_of_displayTransform_6() { return static_cast<int32_t>(offsetof(internal_UnityARCamera_t4AB8B121A980DA87721B883E394951D15D80D8E8, ___displayTransform_6)); }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 get_displayTransform_6() const { return ___displayTransform_6; }
inline UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 * get_address_of_displayTransform_6() { return &___displayTransform_6; }
inline void set_displayTransform_6(UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 value)
{
___displayTransform_6 = value;
}
inline static int32_t get_offset_of_pointCloud_7() { return static_cast<int32_t>(offsetof(internal_UnityARCamera_t4AB8B121A980DA87721B883E394951D15D80D8E8, ___pointCloud_7)); }
inline intptr_t get_pointCloud_7() const { return ___pointCloud_7; }
inline intptr_t* get_address_of_pointCloud_7() { return &___pointCloud_7; }
inline void set_pointCloud_7(intptr_t value)
{
___pointCloud_7 = value;
}
inline static int32_t get_offset_of_getLightEstimation_8() { return static_cast<int32_t>(offsetof(internal_UnityARCamera_t4AB8B121A980DA87721B883E394951D15D80D8E8, ___getLightEstimation_8)); }
inline uint32_t get_getLightEstimation_8() const { return ___getLightEstimation_8; }
inline uint32_t* get_address_of_getLightEstimation_8() { return &___getLightEstimation_8; }
inline void set_getLightEstimation_8(uint32_t value)
{
___getLightEstimation_8 = value;
}
inline static int32_t get_offset_of_worldMappngStatus_9() { return static_cast<int32_t>(offsetof(internal_UnityARCamera_t4AB8B121A980DA87721B883E394951D15D80D8E8, ___worldMappngStatus_9)); }
inline int32_t get_worldMappngStatus_9() const { return ___worldMappngStatus_9; }
inline int32_t* get_address_of_worldMappngStatus_9() { return &___worldMappngStatus_9; }
inline void set_worldMappngStatus_9(int32_t value)
{
___worldMappngStatus_9 = value;
}
};
// UnityEngineInternal.Input.NativeUpdateCallback
struct NativeUpdateCallback_tCC4B5A2692C21C00FC2FC1E4EC5280E98423B8D5 : public MulticastDelegate_t
{
public:
public:
};
// VideoFormatButton_VideoFormatButtonPressed
struct VideoFormatButtonPressed_tE2EB379E3E66B4C8D84030EA0FE11BE4714820CC : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Animation
struct Animation_tCFC171459D159DDEC6500B55543A76219D49BB9C : public Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8
{
public:
public:
};
// UnityEngine.Animator
struct Animator_tF1A88E66B3B731DDA75A066DBAE9C55837660F5A : public Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8
{
public:
public:
};
// UnityEngine.AudioBehaviour
struct AudioBehaviour_tC612EC4E17A648A5C568621F3FBF1DBD773C71C7 : public Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8
{
public:
public:
};
// 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.ParticleSystemRenderer
struct ParticleSystemRenderer_t86E4ED2C0ADF5D2E7FA3D636B6B070600D05C459 : public Renderer_t0556D67DD582620D1F495627EDE30D03284151F4
{
public:
public:
};
// UnityEngine.XR.ARKit.ARKitRaycastSubsystem
struct ARKitRaycastSubsystem_t603C87A6FBC8139D35116A61251EB289E21ABC09 : public XRRaycastSubsystem_t1181EA314910ABB4E1F50BF2F7650EC1512A0A20
{
public:
public:
};
// UnityEngine.XR.ARKit.ARKitReferencePointSubsystem
struct ARKitReferencePointSubsystem_t7883B8562F4226A121B744F99A8CE262F2D0E017 : public XRReferencePointSubsystem_tF175EC0188CC6EFB0A0633BA11FCA4D81A6A88E3
{
public:
public:
};
// UnityEngine.XR.ARKit.ARKitXRDepthSubsystem
struct ARKitXRDepthSubsystem_tA5A5BCEDB5F2217FEE76B4751167757193534501 : public XRDepthSubsystem_tA1188AEE9FA009EAF2BDA064BEA1482FF4CD8AD7
{
public:
public:
};
// UnityEngine.XR.ARKit.ARKitXRPlaneSubsystem
struct ARKitXRPlaneSubsystem_tBCCDC8EA086FD3B3AD556F50AECA1BBFA9A8272A : public XRPlaneSubsystem_tCAFBDE4A030D5EB56FC6D968DB31FA2852836909
{
public:
public:
};
// UnityEngine.XR.iOS.AREnvironmentProbeAnchor
struct AREnvironmentProbeAnchor_t068D62ED76D2BE71CA4F4806034043077EE33E69 : public RuntimeObject
{
public:
// UnityEngine.XR.iOS.UnityAREnvironmentProbeAnchorData UnityEngine.XR.iOS.AREnvironmentProbeAnchor::envProbeAnchorData
UnityAREnvironmentProbeAnchorData_t211BF2642A51D3E86257F22D2E305F2DBE8FA649 ___envProbeAnchorData_0;
public:
inline static int32_t get_offset_of_envProbeAnchorData_0() { return static_cast<int32_t>(offsetof(AREnvironmentProbeAnchor_t068D62ED76D2BE71CA4F4806034043077EE33E69, ___envProbeAnchorData_0)); }
inline UnityAREnvironmentProbeAnchorData_t211BF2642A51D3E86257F22D2E305F2DBE8FA649 get_envProbeAnchorData_0() const { return ___envProbeAnchorData_0; }
inline UnityAREnvironmentProbeAnchorData_t211BF2642A51D3E86257F22D2E305F2DBE8FA649 * get_address_of_envProbeAnchorData_0() { return &___envProbeAnchorData_0; }
inline void set_envProbeAnchorData_0(UnityAREnvironmentProbeAnchorData_t211BF2642A51D3E86257F22D2E305F2DBE8FA649 value)
{
___envProbeAnchorData_0 = value;
}
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface
struct UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.XR.iOS.UnityARSessionNativeInterface::m_NativeARSession
intptr_t ___m_NativeARSession_25;
public:
inline static int32_t get_offset_of_m_NativeARSession_25() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760, ___m_NativeARSession_25)); }
inline intptr_t get_m_NativeARSession_25() const { return ___m_NativeARSession_25; }
inline intptr_t* get_address_of_m_NativeARSession_25() { return &___m_NativeARSession_25; }
inline void set_m_NativeARSession_25(intptr_t value)
{
___m_NativeARSession_25 = value;
}
};
struct UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields
{
public:
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_AREnvironmentProbeAnchorAdded UnityEngine.XR.iOS.UnityARSessionNativeInterface::AREnvironmentProbeAnchorAddedEvent
AREnvironmentProbeAnchorAdded_t352A2C6AEBFEFAF9FFC8E717E49036E7A2DB4E00 * ___AREnvironmentProbeAnchorAddedEvent_0;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_AREnvironmentProbeAnchorUpdated UnityEngine.XR.iOS.UnityARSessionNativeInterface::AREnvironmentProbeAnchorUpdatedEvent
AREnvironmentProbeAnchorUpdated_t2649997F4BDBFDD212BD08787EA6B37DA6C4D9FE * ___AREnvironmentProbeAnchorUpdatedEvent_1;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_AREnvironmentProbeAnchorRemoved UnityEngine.XR.iOS.UnityARSessionNativeInterface::AREnvironmentProbeAnchorRemovedEvent
AREnvironmentProbeAnchorRemoved_t3B32E5CFAC64DF8A23DB054842E6A67B21CCEB4F * ___AREnvironmentProbeAnchorRemovedEvent_2;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARObjectAnchorAdded UnityEngine.XR.iOS.UnityARSessionNativeInterface::ARObjectAnchorAddedEvent
ARObjectAnchorAdded_t44787F4D7B17D8D9D220C99ECB644F34E8DFF41C * ___ARObjectAnchorAddedEvent_3;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARObjectAnchorUpdated UnityEngine.XR.iOS.UnityARSessionNativeInterface::ARObjectAnchorUpdatedEvent
ARObjectAnchorUpdated_tECD9813AEC4C3F1B751595D3C48DA59F8105C88D * ___ARObjectAnchorUpdatedEvent_4;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARObjectAnchorRemoved UnityEngine.XR.iOS.UnityARSessionNativeInterface::ARObjectAnchorRemovedEvent
ARObjectAnchorRemoved_t7365DB46860AE9393ABBD80691D81F38FA5A41B6 * ___ARObjectAnchorRemovedEvent_5;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARFrameUpdate UnityEngine.XR.iOS.UnityARSessionNativeInterface::ARFrameUpdatedEvent
ARFrameUpdate_t8A1092923CD7B733CB1B71B1EA5BC85B017E7A67 * ___ARFrameUpdatedEvent_6;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARAnchorAdded UnityEngine.XR.iOS.UnityARSessionNativeInterface::ARAnchorAddedEvent
ARAnchorAdded_t6277A20DBBA2E63B85B55B429C008406053F7523 * ___ARAnchorAddedEvent_7;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARAnchorUpdated UnityEngine.XR.iOS.UnityARSessionNativeInterface::ARAnchorUpdatedEvent
ARAnchorUpdated_tE476B1348DE6CE5FA8935A67EA790CC3BB99D151 * ___ARAnchorUpdatedEvent_8;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARAnchorRemoved UnityEngine.XR.iOS.UnityARSessionNativeInterface::ARAnchorRemovedEvent
ARAnchorRemoved_t13C2AF3BC2C3615FCECA1B2705B7874CC4B0D584 * ___ARAnchorRemovedEvent_9;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARUserAnchorAdded UnityEngine.XR.iOS.UnityARSessionNativeInterface::ARUserAnchorAddedEvent
ARUserAnchorAdded_tCBF6BB842498500A7E02669D8A22995FCD3F58A8 * ___ARUserAnchorAddedEvent_10;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARUserAnchorUpdated UnityEngine.XR.iOS.UnityARSessionNativeInterface::ARUserAnchorUpdatedEvent
ARUserAnchorUpdated_tAB2AC251FF9E7CA5179BEF03D3E46C929A86DC1F * ___ARUserAnchorUpdatedEvent_11;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARUserAnchorRemoved UnityEngine.XR.iOS.UnityARSessionNativeInterface::ARUserAnchorRemovedEvent
ARUserAnchorRemoved_tD5C26EFD62DE28608B965D94537FD66C5D914411 * ___ARUserAnchorRemovedEvent_12;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARFaceAnchorAdded UnityEngine.XR.iOS.UnityARSessionNativeInterface::ARFaceAnchorAddedEvent
ARFaceAnchorAdded_t219D3D70464F8BB12D6A399E8064715E168A8EF8 * ___ARFaceAnchorAddedEvent_13;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARFaceAnchorUpdated UnityEngine.XR.iOS.UnityARSessionNativeInterface::ARFaceAnchorUpdatedEvent
ARFaceAnchorUpdated_tDCA0EF503312CB7AE89357A3FD5529FF55CC6C35 * ___ARFaceAnchorUpdatedEvent_14;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARFaceAnchorRemoved UnityEngine.XR.iOS.UnityARSessionNativeInterface::ARFaceAnchorRemovedEvent
ARFaceAnchorRemoved_t0077E6ADE5395C6F773A98EB147FDD18B2D09E0C * ___ARFaceAnchorRemovedEvent_15;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARImageAnchorAdded UnityEngine.XR.iOS.UnityARSessionNativeInterface::ARImageAnchorAddedEvent
ARImageAnchorAdded_t71A8F5EF09FE7FFD5FFA8E35FE2409FE59893A44 * ___ARImageAnchorAddedEvent_16;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARImageAnchorUpdated UnityEngine.XR.iOS.UnityARSessionNativeInterface::ARImageAnchorUpdatedEvent
ARImageAnchorUpdated_t552C60653C0710AD7312589A16E6E8B4F00CE036 * ___ARImageAnchorUpdatedEvent_17;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARImageAnchorRemoved UnityEngine.XR.iOS.UnityARSessionNativeInterface::ARImageAnchorRemovedEvent
ARImageAnchorRemoved_t55233D152AF70F8970D7F4598DADE918A99C82B2 * ___ARImageAnchorRemovedEvent_18;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARSessionFailed UnityEngine.XR.iOS.UnityARSessionNativeInterface::ARSessionFailedEvent
ARSessionFailed_tA00FB2F831AFF99EBDFAC43C61499421BDF9BE00 * ___ARSessionFailedEvent_19;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARSessionCallback UnityEngine.XR.iOS.UnityARSessionNativeInterface::ARSessionInterruptedEvent
ARSessionCallback_t309401D5599524DA96703ADFE0AC1702928C7151 * ___ARSessionInterruptedEvent_20;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARSessionCallback UnityEngine.XR.iOS.UnityARSessionNativeInterface::ARSessioninterruptionEndedEvent
ARSessionCallback_t309401D5599524DA96703ADFE0AC1702928C7151 * ___ARSessioninterruptionEndedEvent_21;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARSessionTrackingChanged UnityEngine.XR.iOS.UnityARSessionNativeInterface::ARSessionTrackingChangedEvent
ARSessionTrackingChanged_t7D0F492F6B75A165F790A69F3F1ED307E00B1AB2 * ___ARSessionTrackingChangedEvent_22;
// System.Boolean UnityEngine.XR.iOS.UnityARSessionNativeInterface::<ARSessionShouldAttemptRelocalization>k__BackingField
bool ___U3CARSessionShouldAttemptRelocalizationU3Ek__BackingField_23;
// UnityEngine.XR.iOS.UnityARCamera UnityEngine.XR.iOS.UnityARSessionNativeInterface::s_Camera
UnityARCamera_t4C2AF5738761FACBA2DCDE8B87228F38FE12EFE4 ___s_Camera_24;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface UnityEngine.XR.iOS.UnityARSessionNativeInterface::s_UnityARSessionNativeInterface
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * ___s_UnityARSessionNativeInterface_26;
// UnityEngine.XR.iOS.ARFaceAnchor UnityEngine.XR.iOS.UnityARSessionNativeInterface::arFaceAnchor
ARFaceAnchor_tFD943197F892D93FB7E2C8F7B8BDAABE62714AC6 * ___arFaceAnchor_27;
public:
inline static int32_t get_offset_of_AREnvironmentProbeAnchorAddedEvent_0() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___AREnvironmentProbeAnchorAddedEvent_0)); }
inline AREnvironmentProbeAnchorAdded_t352A2C6AEBFEFAF9FFC8E717E49036E7A2DB4E00 * get_AREnvironmentProbeAnchorAddedEvent_0() const { return ___AREnvironmentProbeAnchorAddedEvent_0; }
inline AREnvironmentProbeAnchorAdded_t352A2C6AEBFEFAF9FFC8E717E49036E7A2DB4E00 ** get_address_of_AREnvironmentProbeAnchorAddedEvent_0() { return &___AREnvironmentProbeAnchorAddedEvent_0; }
inline void set_AREnvironmentProbeAnchorAddedEvent_0(AREnvironmentProbeAnchorAdded_t352A2C6AEBFEFAF9FFC8E717E49036E7A2DB4E00 * value)
{
___AREnvironmentProbeAnchorAddedEvent_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___AREnvironmentProbeAnchorAddedEvent_0), (void*)value);
}
inline static int32_t get_offset_of_AREnvironmentProbeAnchorUpdatedEvent_1() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___AREnvironmentProbeAnchorUpdatedEvent_1)); }
inline AREnvironmentProbeAnchorUpdated_t2649997F4BDBFDD212BD08787EA6B37DA6C4D9FE * get_AREnvironmentProbeAnchorUpdatedEvent_1() const { return ___AREnvironmentProbeAnchorUpdatedEvent_1; }
inline AREnvironmentProbeAnchorUpdated_t2649997F4BDBFDD212BD08787EA6B37DA6C4D9FE ** get_address_of_AREnvironmentProbeAnchorUpdatedEvent_1() { return &___AREnvironmentProbeAnchorUpdatedEvent_1; }
inline void set_AREnvironmentProbeAnchorUpdatedEvent_1(AREnvironmentProbeAnchorUpdated_t2649997F4BDBFDD212BD08787EA6B37DA6C4D9FE * value)
{
___AREnvironmentProbeAnchorUpdatedEvent_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___AREnvironmentProbeAnchorUpdatedEvent_1), (void*)value);
}
inline static int32_t get_offset_of_AREnvironmentProbeAnchorRemovedEvent_2() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___AREnvironmentProbeAnchorRemovedEvent_2)); }
inline AREnvironmentProbeAnchorRemoved_t3B32E5CFAC64DF8A23DB054842E6A67B21CCEB4F * get_AREnvironmentProbeAnchorRemovedEvent_2() const { return ___AREnvironmentProbeAnchorRemovedEvent_2; }
inline AREnvironmentProbeAnchorRemoved_t3B32E5CFAC64DF8A23DB054842E6A67B21CCEB4F ** get_address_of_AREnvironmentProbeAnchorRemovedEvent_2() { return &___AREnvironmentProbeAnchorRemovedEvent_2; }
inline void set_AREnvironmentProbeAnchorRemovedEvent_2(AREnvironmentProbeAnchorRemoved_t3B32E5CFAC64DF8A23DB054842E6A67B21CCEB4F * value)
{
___AREnvironmentProbeAnchorRemovedEvent_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___AREnvironmentProbeAnchorRemovedEvent_2), (void*)value);
}
inline static int32_t get_offset_of_ARObjectAnchorAddedEvent_3() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___ARObjectAnchorAddedEvent_3)); }
inline ARObjectAnchorAdded_t44787F4D7B17D8D9D220C99ECB644F34E8DFF41C * get_ARObjectAnchorAddedEvent_3() const { return ___ARObjectAnchorAddedEvent_3; }
inline ARObjectAnchorAdded_t44787F4D7B17D8D9D220C99ECB644F34E8DFF41C ** get_address_of_ARObjectAnchorAddedEvent_3() { return &___ARObjectAnchorAddedEvent_3; }
inline void set_ARObjectAnchorAddedEvent_3(ARObjectAnchorAdded_t44787F4D7B17D8D9D220C99ECB644F34E8DFF41C * value)
{
___ARObjectAnchorAddedEvent_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ARObjectAnchorAddedEvent_3), (void*)value);
}
inline static int32_t get_offset_of_ARObjectAnchorUpdatedEvent_4() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___ARObjectAnchorUpdatedEvent_4)); }
inline ARObjectAnchorUpdated_tECD9813AEC4C3F1B751595D3C48DA59F8105C88D * get_ARObjectAnchorUpdatedEvent_4() const { return ___ARObjectAnchorUpdatedEvent_4; }
inline ARObjectAnchorUpdated_tECD9813AEC4C3F1B751595D3C48DA59F8105C88D ** get_address_of_ARObjectAnchorUpdatedEvent_4() { return &___ARObjectAnchorUpdatedEvent_4; }
inline void set_ARObjectAnchorUpdatedEvent_4(ARObjectAnchorUpdated_tECD9813AEC4C3F1B751595D3C48DA59F8105C88D * value)
{
___ARObjectAnchorUpdatedEvent_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ARObjectAnchorUpdatedEvent_4), (void*)value);
}
inline static int32_t get_offset_of_ARObjectAnchorRemovedEvent_5() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___ARObjectAnchorRemovedEvent_5)); }
inline ARObjectAnchorRemoved_t7365DB46860AE9393ABBD80691D81F38FA5A41B6 * get_ARObjectAnchorRemovedEvent_5() const { return ___ARObjectAnchorRemovedEvent_5; }
inline ARObjectAnchorRemoved_t7365DB46860AE9393ABBD80691D81F38FA5A41B6 ** get_address_of_ARObjectAnchorRemovedEvent_5() { return &___ARObjectAnchorRemovedEvent_5; }
inline void set_ARObjectAnchorRemovedEvent_5(ARObjectAnchorRemoved_t7365DB46860AE9393ABBD80691D81F38FA5A41B6 * value)
{
___ARObjectAnchorRemovedEvent_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ARObjectAnchorRemovedEvent_5), (void*)value);
}
inline static int32_t get_offset_of_ARFrameUpdatedEvent_6() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___ARFrameUpdatedEvent_6)); }
inline ARFrameUpdate_t8A1092923CD7B733CB1B71B1EA5BC85B017E7A67 * get_ARFrameUpdatedEvent_6() const { return ___ARFrameUpdatedEvent_6; }
inline ARFrameUpdate_t8A1092923CD7B733CB1B71B1EA5BC85B017E7A67 ** get_address_of_ARFrameUpdatedEvent_6() { return &___ARFrameUpdatedEvent_6; }
inline void set_ARFrameUpdatedEvent_6(ARFrameUpdate_t8A1092923CD7B733CB1B71B1EA5BC85B017E7A67 * value)
{
___ARFrameUpdatedEvent_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ARFrameUpdatedEvent_6), (void*)value);
}
inline static int32_t get_offset_of_ARAnchorAddedEvent_7() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___ARAnchorAddedEvent_7)); }
inline ARAnchorAdded_t6277A20DBBA2E63B85B55B429C008406053F7523 * get_ARAnchorAddedEvent_7() const { return ___ARAnchorAddedEvent_7; }
inline ARAnchorAdded_t6277A20DBBA2E63B85B55B429C008406053F7523 ** get_address_of_ARAnchorAddedEvent_7() { return &___ARAnchorAddedEvent_7; }
inline void set_ARAnchorAddedEvent_7(ARAnchorAdded_t6277A20DBBA2E63B85B55B429C008406053F7523 * value)
{
___ARAnchorAddedEvent_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ARAnchorAddedEvent_7), (void*)value);
}
inline static int32_t get_offset_of_ARAnchorUpdatedEvent_8() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___ARAnchorUpdatedEvent_8)); }
inline ARAnchorUpdated_tE476B1348DE6CE5FA8935A67EA790CC3BB99D151 * get_ARAnchorUpdatedEvent_8() const { return ___ARAnchorUpdatedEvent_8; }
inline ARAnchorUpdated_tE476B1348DE6CE5FA8935A67EA790CC3BB99D151 ** get_address_of_ARAnchorUpdatedEvent_8() { return &___ARAnchorUpdatedEvent_8; }
inline void set_ARAnchorUpdatedEvent_8(ARAnchorUpdated_tE476B1348DE6CE5FA8935A67EA790CC3BB99D151 * value)
{
___ARAnchorUpdatedEvent_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ARAnchorUpdatedEvent_8), (void*)value);
}
inline static int32_t get_offset_of_ARAnchorRemovedEvent_9() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___ARAnchorRemovedEvent_9)); }
inline ARAnchorRemoved_t13C2AF3BC2C3615FCECA1B2705B7874CC4B0D584 * get_ARAnchorRemovedEvent_9() const { return ___ARAnchorRemovedEvent_9; }
inline ARAnchorRemoved_t13C2AF3BC2C3615FCECA1B2705B7874CC4B0D584 ** get_address_of_ARAnchorRemovedEvent_9() { return &___ARAnchorRemovedEvent_9; }
inline void set_ARAnchorRemovedEvent_9(ARAnchorRemoved_t13C2AF3BC2C3615FCECA1B2705B7874CC4B0D584 * value)
{
___ARAnchorRemovedEvent_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ARAnchorRemovedEvent_9), (void*)value);
}
inline static int32_t get_offset_of_ARUserAnchorAddedEvent_10() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___ARUserAnchorAddedEvent_10)); }
inline ARUserAnchorAdded_tCBF6BB842498500A7E02669D8A22995FCD3F58A8 * get_ARUserAnchorAddedEvent_10() const { return ___ARUserAnchorAddedEvent_10; }
inline ARUserAnchorAdded_tCBF6BB842498500A7E02669D8A22995FCD3F58A8 ** get_address_of_ARUserAnchorAddedEvent_10() { return &___ARUserAnchorAddedEvent_10; }
inline void set_ARUserAnchorAddedEvent_10(ARUserAnchorAdded_tCBF6BB842498500A7E02669D8A22995FCD3F58A8 * value)
{
___ARUserAnchorAddedEvent_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ARUserAnchorAddedEvent_10), (void*)value);
}
inline static int32_t get_offset_of_ARUserAnchorUpdatedEvent_11() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___ARUserAnchorUpdatedEvent_11)); }
inline ARUserAnchorUpdated_tAB2AC251FF9E7CA5179BEF03D3E46C929A86DC1F * get_ARUserAnchorUpdatedEvent_11() const { return ___ARUserAnchorUpdatedEvent_11; }
inline ARUserAnchorUpdated_tAB2AC251FF9E7CA5179BEF03D3E46C929A86DC1F ** get_address_of_ARUserAnchorUpdatedEvent_11() { return &___ARUserAnchorUpdatedEvent_11; }
inline void set_ARUserAnchorUpdatedEvent_11(ARUserAnchorUpdated_tAB2AC251FF9E7CA5179BEF03D3E46C929A86DC1F * value)
{
___ARUserAnchorUpdatedEvent_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ARUserAnchorUpdatedEvent_11), (void*)value);
}
inline static int32_t get_offset_of_ARUserAnchorRemovedEvent_12() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___ARUserAnchorRemovedEvent_12)); }
inline ARUserAnchorRemoved_tD5C26EFD62DE28608B965D94537FD66C5D914411 * get_ARUserAnchorRemovedEvent_12() const { return ___ARUserAnchorRemovedEvent_12; }
inline ARUserAnchorRemoved_tD5C26EFD62DE28608B965D94537FD66C5D914411 ** get_address_of_ARUserAnchorRemovedEvent_12() { return &___ARUserAnchorRemovedEvent_12; }
inline void set_ARUserAnchorRemovedEvent_12(ARUserAnchorRemoved_tD5C26EFD62DE28608B965D94537FD66C5D914411 * value)
{
___ARUserAnchorRemovedEvent_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ARUserAnchorRemovedEvent_12), (void*)value);
}
inline static int32_t get_offset_of_ARFaceAnchorAddedEvent_13() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___ARFaceAnchorAddedEvent_13)); }
inline ARFaceAnchorAdded_t219D3D70464F8BB12D6A399E8064715E168A8EF8 * get_ARFaceAnchorAddedEvent_13() const { return ___ARFaceAnchorAddedEvent_13; }
inline ARFaceAnchorAdded_t219D3D70464F8BB12D6A399E8064715E168A8EF8 ** get_address_of_ARFaceAnchorAddedEvent_13() { return &___ARFaceAnchorAddedEvent_13; }
inline void set_ARFaceAnchorAddedEvent_13(ARFaceAnchorAdded_t219D3D70464F8BB12D6A399E8064715E168A8EF8 * value)
{
___ARFaceAnchorAddedEvent_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ARFaceAnchorAddedEvent_13), (void*)value);
}
inline static int32_t get_offset_of_ARFaceAnchorUpdatedEvent_14() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___ARFaceAnchorUpdatedEvent_14)); }
inline ARFaceAnchorUpdated_tDCA0EF503312CB7AE89357A3FD5529FF55CC6C35 * get_ARFaceAnchorUpdatedEvent_14() const { return ___ARFaceAnchorUpdatedEvent_14; }
inline ARFaceAnchorUpdated_tDCA0EF503312CB7AE89357A3FD5529FF55CC6C35 ** get_address_of_ARFaceAnchorUpdatedEvent_14() { return &___ARFaceAnchorUpdatedEvent_14; }
inline void set_ARFaceAnchorUpdatedEvent_14(ARFaceAnchorUpdated_tDCA0EF503312CB7AE89357A3FD5529FF55CC6C35 * value)
{
___ARFaceAnchorUpdatedEvent_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ARFaceAnchorUpdatedEvent_14), (void*)value);
}
inline static int32_t get_offset_of_ARFaceAnchorRemovedEvent_15() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___ARFaceAnchorRemovedEvent_15)); }
inline ARFaceAnchorRemoved_t0077E6ADE5395C6F773A98EB147FDD18B2D09E0C * get_ARFaceAnchorRemovedEvent_15() const { return ___ARFaceAnchorRemovedEvent_15; }
inline ARFaceAnchorRemoved_t0077E6ADE5395C6F773A98EB147FDD18B2D09E0C ** get_address_of_ARFaceAnchorRemovedEvent_15() { return &___ARFaceAnchorRemovedEvent_15; }
inline void set_ARFaceAnchorRemovedEvent_15(ARFaceAnchorRemoved_t0077E6ADE5395C6F773A98EB147FDD18B2D09E0C * value)
{
___ARFaceAnchorRemovedEvent_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ARFaceAnchorRemovedEvent_15), (void*)value);
}
inline static int32_t get_offset_of_ARImageAnchorAddedEvent_16() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___ARImageAnchorAddedEvent_16)); }
inline ARImageAnchorAdded_t71A8F5EF09FE7FFD5FFA8E35FE2409FE59893A44 * get_ARImageAnchorAddedEvent_16() const { return ___ARImageAnchorAddedEvent_16; }
inline ARImageAnchorAdded_t71A8F5EF09FE7FFD5FFA8E35FE2409FE59893A44 ** get_address_of_ARImageAnchorAddedEvent_16() { return &___ARImageAnchorAddedEvent_16; }
inline void set_ARImageAnchorAddedEvent_16(ARImageAnchorAdded_t71A8F5EF09FE7FFD5FFA8E35FE2409FE59893A44 * value)
{
___ARImageAnchorAddedEvent_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ARImageAnchorAddedEvent_16), (void*)value);
}
inline static int32_t get_offset_of_ARImageAnchorUpdatedEvent_17() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___ARImageAnchorUpdatedEvent_17)); }
inline ARImageAnchorUpdated_t552C60653C0710AD7312589A16E6E8B4F00CE036 * get_ARImageAnchorUpdatedEvent_17() const { return ___ARImageAnchorUpdatedEvent_17; }
inline ARImageAnchorUpdated_t552C60653C0710AD7312589A16E6E8B4F00CE036 ** get_address_of_ARImageAnchorUpdatedEvent_17() { return &___ARImageAnchorUpdatedEvent_17; }
inline void set_ARImageAnchorUpdatedEvent_17(ARImageAnchorUpdated_t552C60653C0710AD7312589A16E6E8B4F00CE036 * value)
{
___ARImageAnchorUpdatedEvent_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ARImageAnchorUpdatedEvent_17), (void*)value);
}
inline static int32_t get_offset_of_ARImageAnchorRemovedEvent_18() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___ARImageAnchorRemovedEvent_18)); }
inline ARImageAnchorRemoved_t55233D152AF70F8970D7F4598DADE918A99C82B2 * get_ARImageAnchorRemovedEvent_18() const { return ___ARImageAnchorRemovedEvent_18; }
inline ARImageAnchorRemoved_t55233D152AF70F8970D7F4598DADE918A99C82B2 ** get_address_of_ARImageAnchorRemovedEvent_18() { return &___ARImageAnchorRemovedEvent_18; }
inline void set_ARImageAnchorRemovedEvent_18(ARImageAnchorRemoved_t55233D152AF70F8970D7F4598DADE918A99C82B2 * value)
{
___ARImageAnchorRemovedEvent_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ARImageAnchorRemovedEvent_18), (void*)value);
}
inline static int32_t get_offset_of_ARSessionFailedEvent_19() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___ARSessionFailedEvent_19)); }
inline ARSessionFailed_tA00FB2F831AFF99EBDFAC43C61499421BDF9BE00 * get_ARSessionFailedEvent_19() const { return ___ARSessionFailedEvent_19; }
inline ARSessionFailed_tA00FB2F831AFF99EBDFAC43C61499421BDF9BE00 ** get_address_of_ARSessionFailedEvent_19() { return &___ARSessionFailedEvent_19; }
inline void set_ARSessionFailedEvent_19(ARSessionFailed_tA00FB2F831AFF99EBDFAC43C61499421BDF9BE00 * value)
{
___ARSessionFailedEvent_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ARSessionFailedEvent_19), (void*)value);
}
inline static int32_t get_offset_of_ARSessionInterruptedEvent_20() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___ARSessionInterruptedEvent_20)); }
inline ARSessionCallback_t309401D5599524DA96703ADFE0AC1702928C7151 * get_ARSessionInterruptedEvent_20() const { return ___ARSessionInterruptedEvent_20; }
inline ARSessionCallback_t309401D5599524DA96703ADFE0AC1702928C7151 ** get_address_of_ARSessionInterruptedEvent_20() { return &___ARSessionInterruptedEvent_20; }
inline void set_ARSessionInterruptedEvent_20(ARSessionCallback_t309401D5599524DA96703ADFE0AC1702928C7151 * value)
{
___ARSessionInterruptedEvent_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ARSessionInterruptedEvent_20), (void*)value);
}
inline static int32_t get_offset_of_ARSessioninterruptionEndedEvent_21() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___ARSessioninterruptionEndedEvent_21)); }
inline ARSessionCallback_t309401D5599524DA96703ADFE0AC1702928C7151 * get_ARSessioninterruptionEndedEvent_21() const { return ___ARSessioninterruptionEndedEvent_21; }
inline ARSessionCallback_t309401D5599524DA96703ADFE0AC1702928C7151 ** get_address_of_ARSessioninterruptionEndedEvent_21() { return &___ARSessioninterruptionEndedEvent_21; }
inline void set_ARSessioninterruptionEndedEvent_21(ARSessionCallback_t309401D5599524DA96703ADFE0AC1702928C7151 * value)
{
___ARSessioninterruptionEndedEvent_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ARSessioninterruptionEndedEvent_21), (void*)value);
}
inline static int32_t get_offset_of_ARSessionTrackingChangedEvent_22() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___ARSessionTrackingChangedEvent_22)); }
inline ARSessionTrackingChanged_t7D0F492F6B75A165F790A69F3F1ED307E00B1AB2 * get_ARSessionTrackingChangedEvent_22() const { return ___ARSessionTrackingChangedEvent_22; }
inline ARSessionTrackingChanged_t7D0F492F6B75A165F790A69F3F1ED307E00B1AB2 ** get_address_of_ARSessionTrackingChangedEvent_22() { return &___ARSessionTrackingChangedEvent_22; }
inline void set_ARSessionTrackingChangedEvent_22(ARSessionTrackingChanged_t7D0F492F6B75A165F790A69F3F1ED307E00B1AB2 * value)
{
___ARSessionTrackingChangedEvent_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ARSessionTrackingChangedEvent_22), (void*)value);
}
inline static int32_t get_offset_of_U3CARSessionShouldAttemptRelocalizationU3Ek__BackingField_23() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___U3CARSessionShouldAttemptRelocalizationU3Ek__BackingField_23)); }
inline bool get_U3CARSessionShouldAttemptRelocalizationU3Ek__BackingField_23() const { return ___U3CARSessionShouldAttemptRelocalizationU3Ek__BackingField_23; }
inline bool* get_address_of_U3CARSessionShouldAttemptRelocalizationU3Ek__BackingField_23() { return &___U3CARSessionShouldAttemptRelocalizationU3Ek__BackingField_23; }
inline void set_U3CARSessionShouldAttemptRelocalizationU3Ek__BackingField_23(bool value)
{
___U3CARSessionShouldAttemptRelocalizationU3Ek__BackingField_23 = value;
}
inline static int32_t get_offset_of_s_Camera_24() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___s_Camera_24)); }
inline UnityARCamera_t4C2AF5738761FACBA2DCDE8B87228F38FE12EFE4 get_s_Camera_24() const { return ___s_Camera_24; }
inline UnityARCamera_t4C2AF5738761FACBA2DCDE8B87228F38FE12EFE4 * get_address_of_s_Camera_24() { return &___s_Camera_24; }
inline void set_s_Camera_24(UnityARCamera_t4C2AF5738761FACBA2DCDE8B87228F38FE12EFE4 value)
{
___s_Camera_24 = value;
Il2CppCodeGenWriteBarrier((void**)&((&(((&___s_Camera_24))->___lightData_5))->___arDirectonalLightEstimate_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___s_Camera_24))->___pointCloud_7), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_s_UnityARSessionNativeInterface_26() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___s_UnityARSessionNativeInterface_26)); }
inline UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * get_s_UnityARSessionNativeInterface_26() const { return ___s_UnityARSessionNativeInterface_26; }
inline UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 ** get_address_of_s_UnityARSessionNativeInterface_26() { return &___s_UnityARSessionNativeInterface_26; }
inline void set_s_UnityARSessionNativeInterface_26(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * value)
{
___s_UnityARSessionNativeInterface_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_UnityARSessionNativeInterface_26), (void*)value);
}
inline static int32_t get_offset_of_arFaceAnchor_27() { return static_cast<int32_t>(offsetof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields, ___arFaceAnchor_27)); }
inline ARFaceAnchor_tFD943197F892D93FB7E2C8F7B8BDAABE62714AC6 * get_arFaceAnchor_27() const { return ___arFaceAnchor_27; }
inline ARFaceAnchor_tFD943197F892D93FB7E2C8F7B8BDAABE62714AC6 ** get_address_of_arFaceAnchor_27() { return &___arFaceAnchor_27; }
inline void set_arFaceAnchor_27(ARFaceAnchor_tFD943197F892D93FB7E2C8F7B8BDAABE62714AC6 * value)
{
___arFaceAnchor_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___arFaceAnchor_27), (void*)value);
}
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARFrameUpdate
struct ARFrameUpdate_t8A1092923CD7B733CB1B71B1EA5BC85B017E7A67 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_ARSessionTrackingChanged
struct ARSessionTrackingChanged_t7D0F492F6B75A165F790A69F3F1ED307E00B1AB2 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_internal_AREnvironmentProbeAnchorAdded
struct internal_AREnvironmentProbeAnchorAdded_t2F1E9546957E37FA1E2E96C6913D6A30D891A99B : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_internal_AREnvironmentProbeAnchorRemoved
struct internal_AREnvironmentProbeAnchorRemoved_tF4ABE9DABC0E03D49F796903B992EE7D03174AC6 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_internal_AREnvironmentProbeAnchorUpdated
struct internal_AREnvironmentProbeAnchorUpdated_t2A2DF32F4A41BB38306453DE0C07EA0B5AEF7E6B : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_internal_ARFrameUpdate
struct internal_ARFrameUpdate_t2B76D688F1867F73D929D7E32287BA21150A8061 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.iOS.UnityARSessionNativeInterface_internal_ARSessionTrackingChanged
struct internal_ARSessionTrackingChanged_tB3DFD71470944D6370E634F337BBF39A5616DD89 : public MulticastDelegate_t
{
public:
public:
};
// AR3DOFCameraManager
struct AR3DOFCameraManager_t63FD3A6AF75537FF46A270BB4A22AA945670D9AD : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.Camera AR3DOFCameraManager::m_camera
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___m_camera_4;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface AR3DOFCameraManager::m_session
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * ___m_session_5;
// UnityEngine.Material AR3DOFCameraManager::savedClearMaterial
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___savedClearMaterial_6;
public:
inline static int32_t get_offset_of_m_camera_4() { return static_cast<int32_t>(offsetof(AR3DOFCameraManager_t63FD3A6AF75537FF46A270BB4A22AA945670D9AD, ___m_camera_4)); }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * get_m_camera_4() const { return ___m_camera_4; }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 ** get_address_of_m_camera_4() { return &___m_camera_4; }
inline void set_m_camera_4(Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * value)
{
___m_camera_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_camera_4), (void*)value);
}
inline static int32_t get_offset_of_m_session_5() { return static_cast<int32_t>(offsetof(AR3DOFCameraManager_t63FD3A6AF75537FF46A270BB4A22AA945670D9AD, ___m_session_5)); }
inline UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * get_m_session_5() const { return ___m_session_5; }
inline UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 ** get_address_of_m_session_5() { return &___m_session_5; }
inline void set_m_session_5(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * value)
{
___m_session_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_session_5), (void*)value);
}
inline static int32_t get_offset_of_savedClearMaterial_6() { return static_cast<int32_t>(offsetof(AR3DOFCameraManager_t63FD3A6AF75537FF46A270BB4A22AA945670D9AD, ___savedClearMaterial_6)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_savedClearMaterial_6() const { return ___savedClearMaterial_6; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_savedClearMaterial_6() { return &___savedClearMaterial_6; }
inline void set_savedClearMaterial_6(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___savedClearMaterial_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___savedClearMaterial_6), (void*)value);
}
};
// ARCameraTracker
struct ARCameraTracker_t5A87759C36869FAA79EFD8E79C44D29A7B01335F : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.Camera ARCameraTracker::trackedCamera
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___trackedCamera_4;
// System.Boolean ARCameraTracker::sessionStarted
bool ___sessionStarted_5;
public:
inline static int32_t get_offset_of_trackedCamera_4() { return static_cast<int32_t>(offsetof(ARCameraTracker_t5A87759C36869FAA79EFD8E79C44D29A7B01335F, ___trackedCamera_4)); }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * get_trackedCamera_4() const { return ___trackedCamera_4; }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 ** get_address_of_trackedCamera_4() { return &___trackedCamera_4; }
inline void set_trackedCamera_4(Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * value)
{
___trackedCamera_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___trackedCamera_4), (void*)value);
}
inline static int32_t get_offset_of_sessionStarted_5() { return static_cast<int32_t>(offsetof(ARCameraTracker_t5A87759C36869FAA79EFD8E79C44D29A7B01335F, ___sessionStarted_5)); }
inline bool get_sessionStarted_5() const { return ___sessionStarted_5; }
inline bool* get_address_of_sessionStarted_5() { return &___sessionStarted_5; }
inline void set_sessionStarted_5(bool value)
{
___sessionStarted_5 = value;
}
};
// ARKitPlaneMeshRender
struct ARKitPlaneMeshRender_tD9D84044808EBC829FDC337422CE6AC0045F5F22 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.MeshFilter ARKitPlaneMeshRender::meshFilter
MeshFilter_t8D4BA8E8723DE5CFF53B0DA5EE2F6B3A5B0E0FE0 * ___meshFilter_4;
// UnityEngine.LineRenderer ARKitPlaneMeshRender::lineRenderer
LineRenderer_tD225C480F28F28A4D737866474F21001B803B7C3 * ___lineRenderer_5;
// UnityEngine.Mesh ARKitPlaneMeshRender::planeMesh
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___planeMesh_6;
public:
inline static int32_t get_offset_of_meshFilter_4() { return static_cast<int32_t>(offsetof(ARKitPlaneMeshRender_tD9D84044808EBC829FDC337422CE6AC0045F5F22, ___meshFilter_4)); }
inline MeshFilter_t8D4BA8E8723DE5CFF53B0DA5EE2F6B3A5B0E0FE0 * get_meshFilter_4() const { return ___meshFilter_4; }
inline MeshFilter_t8D4BA8E8723DE5CFF53B0DA5EE2F6B3A5B0E0FE0 ** get_address_of_meshFilter_4() { return &___meshFilter_4; }
inline void set_meshFilter_4(MeshFilter_t8D4BA8E8723DE5CFF53B0DA5EE2F6B3A5B0E0FE0 * value)
{
___meshFilter_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___meshFilter_4), (void*)value);
}
inline static int32_t get_offset_of_lineRenderer_5() { return static_cast<int32_t>(offsetof(ARKitPlaneMeshRender_tD9D84044808EBC829FDC337422CE6AC0045F5F22, ___lineRenderer_5)); }
inline LineRenderer_tD225C480F28F28A4D737866474F21001B803B7C3 * get_lineRenderer_5() const { return ___lineRenderer_5; }
inline LineRenderer_tD225C480F28F28A4D737866474F21001B803B7C3 ** get_address_of_lineRenderer_5() { return &___lineRenderer_5; }
inline void set_lineRenderer_5(LineRenderer_tD225C480F28F28A4D737866474F21001B803B7C3 * value)
{
___lineRenderer_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___lineRenderer_5), (void*)value);
}
inline static int32_t get_offset_of_planeMesh_6() { return static_cast<int32_t>(offsetof(ARKitPlaneMeshRender_tD9D84044808EBC829FDC337422CE6AC0045F5F22, ___planeMesh_6)); }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * get_planeMesh_6() const { return ___planeMesh_6; }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C ** get_address_of_planeMesh_6() { return &___planeMesh_6; }
inline void set_planeMesh_6(Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * value)
{
___planeMesh_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___planeMesh_6), (void*)value);
}
};
// BallMaker
struct BallMaker_t445DA39119C2725BF0A209F5621CC47250869EBF : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.GameObject BallMaker::ballPrefab
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___ballPrefab_4;
// System.Single BallMaker::createHeight
float ___createHeight_5;
// System.Single BallMaker::maxRayDistance
float ___maxRayDistance_6;
// UnityEngine.LayerMask BallMaker::collisionLayer
LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 ___collisionLayer_7;
// UnityEngine.MaterialPropertyBlock BallMaker::props
MaterialPropertyBlock_t72A481768111C6F11DCDCD44F0C7F99F1CA79E13 * ___props_8;
public:
inline static int32_t get_offset_of_ballPrefab_4() { return static_cast<int32_t>(offsetof(BallMaker_t445DA39119C2725BF0A209F5621CC47250869EBF, ___ballPrefab_4)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_ballPrefab_4() const { return ___ballPrefab_4; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_ballPrefab_4() { return &___ballPrefab_4; }
inline void set_ballPrefab_4(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___ballPrefab_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ballPrefab_4), (void*)value);
}
inline static int32_t get_offset_of_createHeight_5() { return static_cast<int32_t>(offsetof(BallMaker_t445DA39119C2725BF0A209F5621CC47250869EBF, ___createHeight_5)); }
inline float get_createHeight_5() const { return ___createHeight_5; }
inline float* get_address_of_createHeight_5() { return &___createHeight_5; }
inline void set_createHeight_5(float value)
{
___createHeight_5 = value;
}
inline static int32_t get_offset_of_maxRayDistance_6() { return static_cast<int32_t>(offsetof(BallMaker_t445DA39119C2725BF0A209F5621CC47250869EBF, ___maxRayDistance_6)); }
inline float get_maxRayDistance_6() const { return ___maxRayDistance_6; }
inline float* get_address_of_maxRayDistance_6() { return &___maxRayDistance_6; }
inline void set_maxRayDistance_6(float value)
{
___maxRayDistance_6 = value;
}
inline static int32_t get_offset_of_collisionLayer_7() { return static_cast<int32_t>(offsetof(BallMaker_t445DA39119C2725BF0A209F5621CC47250869EBF, ___collisionLayer_7)); }
inline LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 get_collisionLayer_7() const { return ___collisionLayer_7; }
inline LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 * get_address_of_collisionLayer_7() { return &___collisionLayer_7; }
inline void set_collisionLayer_7(LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 value)
{
___collisionLayer_7 = value;
}
inline static int32_t get_offset_of_props_8() { return static_cast<int32_t>(offsetof(BallMaker_t445DA39119C2725BF0A209F5621CC47250869EBF, ___props_8)); }
inline MaterialPropertyBlock_t72A481768111C6F11DCDCD44F0C7F99F1CA79E13 * get_props_8() const { return ___props_8; }
inline MaterialPropertyBlock_t72A481768111C6F11DCDCD44F0C7F99F1CA79E13 ** get_address_of_props_8() { return &___props_8; }
inline void set_props_8(MaterialPropertyBlock_t72A481768111C6F11DCDCD44F0C7F99F1CA79E13 * value)
{
___props_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___props_8), (void*)value);
}
};
// BallMover
struct BallMover_t696C670720FE1CD8219B87A8278193B52C1E9413 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.GameObject BallMover::collBallPrefab
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___collBallPrefab_4;
// System.Single BallMover::maxRayDistance
float ___maxRayDistance_5;
// UnityEngine.LayerMask BallMover::collisionLayer
LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 ___collisionLayer_6;
// UnityEngine.GameObject BallMover::collBallGO
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___collBallGO_7;
public:
inline static int32_t get_offset_of_collBallPrefab_4() { return static_cast<int32_t>(offsetof(BallMover_t696C670720FE1CD8219B87A8278193B52C1E9413, ___collBallPrefab_4)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_collBallPrefab_4() const { return ___collBallPrefab_4; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_collBallPrefab_4() { return &___collBallPrefab_4; }
inline void set_collBallPrefab_4(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___collBallPrefab_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___collBallPrefab_4), (void*)value);
}
inline static int32_t get_offset_of_maxRayDistance_5() { return static_cast<int32_t>(offsetof(BallMover_t696C670720FE1CD8219B87A8278193B52C1E9413, ___maxRayDistance_5)); }
inline float get_maxRayDistance_5() const { return ___maxRayDistance_5; }
inline float* get_address_of_maxRayDistance_5() { return &___maxRayDistance_5; }
inline void set_maxRayDistance_5(float value)
{
___maxRayDistance_5 = value;
}
inline static int32_t get_offset_of_collisionLayer_6() { return static_cast<int32_t>(offsetof(BallMover_t696C670720FE1CD8219B87A8278193B52C1E9413, ___collisionLayer_6)); }
inline LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 get_collisionLayer_6() const { return ___collisionLayer_6; }
inline LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 * get_address_of_collisionLayer_6() { return &___collisionLayer_6; }
inline void set_collisionLayer_6(LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 value)
{
___collisionLayer_6 = value;
}
inline static int32_t get_offset_of_collBallGO_7() { return static_cast<int32_t>(offsetof(BallMover_t696C670720FE1CD8219B87A8278193B52C1E9413, ___collBallGO_7)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_collBallGO_7() const { return ___collBallGO_7; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_collBallGO_7() { return &___collBallGO_7; }
inline void set_collBallGO_7(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___collBallGO_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___collBallGO_7), (void*)value);
}
};
// Ballz
struct Ballz_t35A6EFA1D751EB0ADEC94057232BC51F10D415E9 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// System.Single Ballz::yDistanceThreshold
float ___yDistanceThreshold_4;
// System.Single Ballz::startingY
float ___startingY_5;
public:
inline static int32_t get_offset_of_yDistanceThreshold_4() { return static_cast<int32_t>(offsetof(Ballz_t35A6EFA1D751EB0ADEC94057232BC51F10D415E9, ___yDistanceThreshold_4)); }
inline float get_yDistanceThreshold_4() const { return ___yDistanceThreshold_4; }
inline float* get_address_of_yDistanceThreshold_4() { return &___yDistanceThreshold_4; }
inline void set_yDistanceThreshold_4(float value)
{
___yDistanceThreshold_4 = value;
}
inline static int32_t get_offset_of_startingY_5() { return static_cast<int32_t>(offsetof(Ballz_t35A6EFA1D751EB0ADEC94057232BC51F10D415E9, ___startingY_5)); }
inline float get_startingY_5() const { return ___startingY_5; }
inline float* get_address_of_startingY_5() { return &___startingY_5; }
inline void set_startingY_5(float value)
{
___startingY_5 = value;
}
};
// BlendshapeDriver
struct BlendshapeDriver_t2618FEC6419AB7092B5C35040211AB91B92F7C45 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.SkinnedMeshRenderer BlendshapeDriver::skinnedMeshRenderer
SkinnedMeshRenderer_tFC8103EE7842F7F8A98BEF0C855D32A9711B7B65 * ___skinnedMeshRenderer_4;
// System.Collections.Generic.Dictionary`2<System.String,System.Single> BlendshapeDriver::currentBlendShapes
Dictionary_2_t89F484A77FD6673A172CE80BD0A37031FBD1FD6A * ___currentBlendShapes_5;
public:
inline static int32_t get_offset_of_skinnedMeshRenderer_4() { return static_cast<int32_t>(offsetof(BlendshapeDriver_t2618FEC6419AB7092B5C35040211AB91B92F7C45, ___skinnedMeshRenderer_4)); }
inline SkinnedMeshRenderer_tFC8103EE7842F7F8A98BEF0C855D32A9711B7B65 * get_skinnedMeshRenderer_4() const { return ___skinnedMeshRenderer_4; }
inline SkinnedMeshRenderer_tFC8103EE7842F7F8A98BEF0C855D32A9711B7B65 ** get_address_of_skinnedMeshRenderer_4() { return &___skinnedMeshRenderer_4; }
inline void set_skinnedMeshRenderer_4(SkinnedMeshRenderer_tFC8103EE7842F7F8A98BEF0C855D32A9711B7B65 * value)
{
___skinnedMeshRenderer_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___skinnedMeshRenderer_4), (void*)value);
}
inline static int32_t get_offset_of_currentBlendShapes_5() { return static_cast<int32_t>(offsetof(BlendshapeDriver_t2618FEC6419AB7092B5C35040211AB91B92F7C45, ___currentBlendShapes_5)); }
inline Dictionary_2_t89F484A77FD6673A172CE80BD0A37031FBD1FD6A * get_currentBlendShapes_5() const { return ___currentBlendShapes_5; }
inline Dictionary_2_t89F484A77FD6673A172CE80BD0A37031FBD1FD6A ** get_address_of_currentBlendShapes_5() { return &___currentBlendShapes_5; }
inline void set_currentBlendShapes_5(Dictionary_2_t89F484A77FD6673A172CE80BD0A37031FBD1FD6A * value)
{
___currentBlendShapes_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentBlendShapes_5), (void*)value);
}
};
// BlendshapePrinter
struct BlendshapePrinter_t1CF7CEDEFEEE5EB2BB4E75A9E576E90422019FEE : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// System.Boolean BlendshapePrinter::shapeEnabled
bool ___shapeEnabled_4;
// System.Collections.Generic.Dictionary`2<System.String,System.Single> BlendshapePrinter::currentBlendShapes
Dictionary_2_t89F484A77FD6673A172CE80BD0A37031FBD1FD6A * ___currentBlendShapes_5;
public:
inline static int32_t get_offset_of_shapeEnabled_4() { return static_cast<int32_t>(offsetof(BlendshapePrinter_t1CF7CEDEFEEE5EB2BB4E75A9E576E90422019FEE, ___shapeEnabled_4)); }
inline bool get_shapeEnabled_4() const { return ___shapeEnabled_4; }
inline bool* get_address_of_shapeEnabled_4() { return &___shapeEnabled_4; }
inline void set_shapeEnabled_4(bool value)
{
___shapeEnabled_4 = value;
}
inline static int32_t get_offset_of_currentBlendShapes_5() { return static_cast<int32_t>(offsetof(BlendshapePrinter_t1CF7CEDEFEEE5EB2BB4E75A9E576E90422019FEE, ___currentBlendShapes_5)); }
inline Dictionary_2_t89F484A77FD6673A172CE80BD0A37031FBD1FD6A * get_currentBlendShapes_5() const { return ___currentBlendShapes_5; }
inline Dictionary_2_t89F484A77FD6673A172CE80BD0A37031FBD1FD6A ** get_address_of_currentBlendShapes_5() { return &___currentBlendShapes_5; }
inline void set_currentBlendShapes_5(Dictionary_2_t89F484A77FD6673A172CE80BD0A37031FBD1FD6A * value)
{
___currentBlendShapes_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentBlendShapes_5), (void*)value);
}
};
// ColorImage
struct ColorImage_tC0BE16447172688733C951BC16CE1C1913AC1257 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// ColorPicker ColorImage::picker
ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * ___picker_4;
// UnityEngine.UI.Image ColorImage::image
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * ___image_5;
public:
inline static int32_t get_offset_of_picker_4() { return static_cast<int32_t>(offsetof(ColorImage_tC0BE16447172688733C951BC16CE1C1913AC1257, ___picker_4)); }
inline ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * get_picker_4() const { return ___picker_4; }
inline ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 ** get_address_of_picker_4() { return &___picker_4; }
inline void set_picker_4(ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * value)
{
___picker_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___picker_4), (void*)value);
}
inline static int32_t get_offset_of_image_5() { return static_cast<int32_t>(offsetof(ColorImage_tC0BE16447172688733C951BC16CE1C1913AC1257, ___image_5)); }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * get_image_5() const { return ___image_5; }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E ** get_address_of_image_5() { return &___image_5; }
inline void set_image_5(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * value)
{
___image_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___image_5), (void*)value);
}
};
// ColorLabel
struct ColorLabel_t2AE184CA8DF17ACD68C7AFD578C25284D357B823 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// ColorPicker ColorLabel::picker
ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * ___picker_4;
// ColorValues ColorLabel::type
int32_t ___type_5;
// System.String ColorLabel::prefix
String_t* ___prefix_6;
// System.Single ColorLabel::minValue
float ___minValue_7;
// System.Single ColorLabel::maxValue
float ___maxValue_8;
// System.Int32 ColorLabel::precision
int32_t ___precision_9;
// UnityEngine.UI.Text ColorLabel::label
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___label_10;
public:
inline static int32_t get_offset_of_picker_4() { return static_cast<int32_t>(offsetof(ColorLabel_t2AE184CA8DF17ACD68C7AFD578C25284D357B823, ___picker_4)); }
inline ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * get_picker_4() const { return ___picker_4; }
inline ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 ** get_address_of_picker_4() { return &___picker_4; }
inline void set_picker_4(ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * value)
{
___picker_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___picker_4), (void*)value);
}
inline static int32_t get_offset_of_type_5() { return static_cast<int32_t>(offsetof(ColorLabel_t2AE184CA8DF17ACD68C7AFD578C25284D357B823, ___type_5)); }
inline int32_t get_type_5() const { return ___type_5; }
inline int32_t* get_address_of_type_5() { return &___type_5; }
inline void set_type_5(int32_t value)
{
___type_5 = value;
}
inline static int32_t get_offset_of_prefix_6() { return static_cast<int32_t>(offsetof(ColorLabel_t2AE184CA8DF17ACD68C7AFD578C25284D357B823, ___prefix_6)); }
inline String_t* get_prefix_6() const { return ___prefix_6; }
inline String_t** get_address_of_prefix_6() { return &___prefix_6; }
inline void set_prefix_6(String_t* value)
{
___prefix_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___prefix_6), (void*)value);
}
inline static int32_t get_offset_of_minValue_7() { return static_cast<int32_t>(offsetof(ColorLabel_t2AE184CA8DF17ACD68C7AFD578C25284D357B823, ___minValue_7)); }
inline float get_minValue_7() const { return ___minValue_7; }
inline float* get_address_of_minValue_7() { return &___minValue_7; }
inline void set_minValue_7(float value)
{
___minValue_7 = value;
}
inline static int32_t get_offset_of_maxValue_8() { return static_cast<int32_t>(offsetof(ColorLabel_t2AE184CA8DF17ACD68C7AFD578C25284D357B823, ___maxValue_8)); }
inline float get_maxValue_8() const { return ___maxValue_8; }
inline float* get_address_of_maxValue_8() { return &___maxValue_8; }
inline void set_maxValue_8(float value)
{
___maxValue_8 = value;
}
inline static int32_t get_offset_of_precision_9() { return static_cast<int32_t>(offsetof(ColorLabel_t2AE184CA8DF17ACD68C7AFD578C25284D357B823, ___precision_9)); }
inline int32_t get_precision_9() const { return ___precision_9; }
inline int32_t* get_address_of_precision_9() { return &___precision_9; }
inline void set_precision_9(int32_t value)
{
___precision_9 = value;
}
inline static int32_t get_offset_of_label_10() { return static_cast<int32_t>(offsetof(ColorLabel_t2AE184CA8DF17ACD68C7AFD578C25284D357B823, ___label_10)); }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * get_label_10() const { return ___label_10; }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 ** get_address_of_label_10() { return &___label_10; }
inline void set_label_10(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * value)
{
___label_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___label_10), (void*)value);
}
};
// ColorPicker
struct ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// System.Single ColorPicker::_hue
float ____hue_4;
// System.Single ColorPicker::_saturation
float ____saturation_5;
// System.Single ColorPicker::_brightness
float ____brightness_6;
// System.Single ColorPicker::_red
float ____red_7;
// System.Single ColorPicker::_green
float ____green_8;
// System.Single ColorPicker::_blue
float ____blue_9;
// System.Single ColorPicker::_alpha
float ____alpha_10;
// ColorChangedEvent ColorPicker::onValueChanged
ColorChangedEvent_tD7675EE515A344B6B9A4877082202AC7B307FD9F * ___onValueChanged_11;
// HSVChangedEvent ColorPicker::onHSVChanged
HSVChangedEvent_t448E1E151C6D975F5EEA20A9B9024B61B1ACF482 * ___onHSVChanged_12;
public:
inline static int32_t get_offset_of__hue_4() { return static_cast<int32_t>(offsetof(ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83, ____hue_4)); }
inline float get__hue_4() const { return ____hue_4; }
inline float* get_address_of__hue_4() { return &____hue_4; }
inline void set__hue_4(float value)
{
____hue_4 = value;
}
inline static int32_t get_offset_of__saturation_5() { return static_cast<int32_t>(offsetof(ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83, ____saturation_5)); }
inline float get__saturation_5() const { return ____saturation_5; }
inline float* get_address_of__saturation_5() { return &____saturation_5; }
inline void set__saturation_5(float value)
{
____saturation_5 = value;
}
inline static int32_t get_offset_of__brightness_6() { return static_cast<int32_t>(offsetof(ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83, ____brightness_6)); }
inline float get__brightness_6() const { return ____brightness_6; }
inline float* get_address_of__brightness_6() { return &____brightness_6; }
inline void set__brightness_6(float value)
{
____brightness_6 = value;
}
inline static int32_t get_offset_of__red_7() { return static_cast<int32_t>(offsetof(ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83, ____red_7)); }
inline float get__red_7() const { return ____red_7; }
inline float* get_address_of__red_7() { return &____red_7; }
inline void set__red_7(float value)
{
____red_7 = value;
}
inline static int32_t get_offset_of__green_8() { return static_cast<int32_t>(offsetof(ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83, ____green_8)); }
inline float get__green_8() const { return ____green_8; }
inline float* get_address_of__green_8() { return &____green_8; }
inline void set__green_8(float value)
{
____green_8 = value;
}
inline static int32_t get_offset_of__blue_9() { return static_cast<int32_t>(offsetof(ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83, ____blue_9)); }
inline float get__blue_9() const { return ____blue_9; }
inline float* get_address_of__blue_9() { return &____blue_9; }
inline void set__blue_9(float value)
{
____blue_9 = value;
}
inline static int32_t get_offset_of__alpha_10() { return static_cast<int32_t>(offsetof(ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83, ____alpha_10)); }
inline float get__alpha_10() const { return ____alpha_10; }
inline float* get_address_of__alpha_10() { return &____alpha_10; }
inline void set__alpha_10(float value)
{
____alpha_10 = value;
}
inline static int32_t get_offset_of_onValueChanged_11() { return static_cast<int32_t>(offsetof(ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83, ___onValueChanged_11)); }
inline ColorChangedEvent_tD7675EE515A344B6B9A4877082202AC7B307FD9F * get_onValueChanged_11() const { return ___onValueChanged_11; }
inline ColorChangedEvent_tD7675EE515A344B6B9A4877082202AC7B307FD9F ** get_address_of_onValueChanged_11() { return &___onValueChanged_11; }
inline void set_onValueChanged_11(ColorChangedEvent_tD7675EE515A344B6B9A4877082202AC7B307FD9F * value)
{
___onValueChanged_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onValueChanged_11), (void*)value);
}
inline static int32_t get_offset_of_onHSVChanged_12() { return static_cast<int32_t>(offsetof(ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83, ___onHSVChanged_12)); }
inline HSVChangedEvent_t448E1E151C6D975F5EEA20A9B9024B61B1ACF482 * get_onHSVChanged_12() const { return ___onHSVChanged_12; }
inline HSVChangedEvent_t448E1E151C6D975F5EEA20A9B9024B61B1ACF482 ** get_address_of_onHSVChanged_12() { return &___onHSVChanged_12; }
inline void set_onHSVChanged_12(HSVChangedEvent_t448E1E151C6D975F5EEA20A9B9024B61B1ACF482 * value)
{
___onHSVChanged_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onHSVChanged_12), (void*)value);
}
};
// ColorPickerTester
struct ColorPickerTester_tD29592EB715E4C3D5BBC9A3F92C28A80A5F7DB94 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.Renderer ColorPickerTester::renderer
Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * ___renderer_4;
// ColorPicker ColorPickerTester::picker
ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * ___picker_5;
public:
inline static int32_t get_offset_of_renderer_4() { return static_cast<int32_t>(offsetof(ColorPickerTester_tD29592EB715E4C3D5BBC9A3F92C28A80A5F7DB94, ___renderer_4)); }
inline Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * get_renderer_4() const { return ___renderer_4; }
inline Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 ** get_address_of_renderer_4() { return &___renderer_4; }
inline void set_renderer_4(Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * value)
{
___renderer_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___renderer_4), (void*)value);
}
inline static int32_t get_offset_of_picker_5() { return static_cast<int32_t>(offsetof(ColorPickerTester_tD29592EB715E4C3D5BBC9A3F92C28A80A5F7DB94, ___picker_5)); }
inline ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * get_picker_5() const { return ___picker_5; }
inline ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 ** get_address_of_picker_5() { return &___picker_5; }
inline void set_picker_5(ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * value)
{
___picker_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___picker_5), (void*)value);
}
};
// ColorPresets
struct ColorPresets_t479C8E0C2B363CAD96E07F2B8D0A558C5192A68F : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// ColorPicker ColorPresets::picker
ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * ___picker_4;
// UnityEngine.GameObject[] ColorPresets::presets
GameObjectU5BU5D_tBF9D474747511CF34A040A1697E34C74C19BB520* ___presets_5;
// UnityEngine.UI.Image ColorPresets::createPresetImage
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * ___createPresetImage_6;
public:
inline static int32_t get_offset_of_picker_4() { return static_cast<int32_t>(offsetof(ColorPresets_t479C8E0C2B363CAD96E07F2B8D0A558C5192A68F, ___picker_4)); }
inline ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * get_picker_4() const { return ___picker_4; }
inline ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 ** get_address_of_picker_4() { return &___picker_4; }
inline void set_picker_4(ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * value)
{
___picker_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___picker_4), (void*)value);
}
inline static int32_t get_offset_of_presets_5() { return static_cast<int32_t>(offsetof(ColorPresets_t479C8E0C2B363CAD96E07F2B8D0A558C5192A68F, ___presets_5)); }
inline GameObjectU5BU5D_tBF9D474747511CF34A040A1697E34C74C19BB520* get_presets_5() const { return ___presets_5; }
inline GameObjectU5BU5D_tBF9D474747511CF34A040A1697E34C74C19BB520** get_address_of_presets_5() { return &___presets_5; }
inline void set_presets_5(GameObjectU5BU5D_tBF9D474747511CF34A040A1697E34C74C19BB520* value)
{
___presets_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___presets_5), (void*)value);
}
inline static int32_t get_offset_of_createPresetImage_6() { return static_cast<int32_t>(offsetof(ColorPresets_t479C8E0C2B363CAD96E07F2B8D0A558C5192A68F, ___createPresetImage_6)); }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * get_createPresetImage_6() const { return ___createPresetImage_6; }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E ** get_address_of_createPresetImage_6() { return &___createPresetImage_6; }
inline void set_createPresetImage_6(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * value)
{
___createPresetImage_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___createPresetImage_6), (void*)value);
}
};
// ColorSlider
struct ColorSlider_tA7CDAE2A85B5612942DBC5DE68349311DB4286B3 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// ColorPicker ColorSlider::hsvpicker
ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * ___hsvpicker_4;
// ColorValues ColorSlider::type
int32_t ___type_5;
// UnityEngine.UI.Slider ColorSlider::slider
Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09 * ___slider_6;
// System.Boolean ColorSlider::listen
bool ___listen_7;
public:
inline static int32_t get_offset_of_hsvpicker_4() { return static_cast<int32_t>(offsetof(ColorSlider_tA7CDAE2A85B5612942DBC5DE68349311DB4286B3, ___hsvpicker_4)); }
inline ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * get_hsvpicker_4() const { return ___hsvpicker_4; }
inline ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 ** get_address_of_hsvpicker_4() { return &___hsvpicker_4; }
inline void set_hsvpicker_4(ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * value)
{
___hsvpicker_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___hsvpicker_4), (void*)value);
}
inline static int32_t get_offset_of_type_5() { return static_cast<int32_t>(offsetof(ColorSlider_tA7CDAE2A85B5612942DBC5DE68349311DB4286B3, ___type_5)); }
inline int32_t get_type_5() const { return ___type_5; }
inline int32_t* get_address_of_type_5() { return &___type_5; }
inline void set_type_5(int32_t value)
{
___type_5 = value;
}
inline static int32_t get_offset_of_slider_6() { return static_cast<int32_t>(offsetof(ColorSlider_tA7CDAE2A85B5612942DBC5DE68349311DB4286B3, ___slider_6)); }
inline Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09 * get_slider_6() const { return ___slider_6; }
inline Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09 ** get_address_of_slider_6() { return &___slider_6; }
inline void set_slider_6(Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09 * value)
{
___slider_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___slider_6), (void*)value);
}
inline static int32_t get_offset_of_listen_7() { return static_cast<int32_t>(offsetof(ColorSlider_tA7CDAE2A85B5612942DBC5DE68349311DB4286B3, ___listen_7)); }
inline bool get_listen_7() const { return ___listen_7; }
inline bool* get_address_of_listen_7() { return &___listen_7; }
inline void set_listen_7(bool value)
{
___listen_7 = value;
}
};
// ColorSliderImage
struct ColorSliderImage_tFE0F2136443DFFEC5FEB98F3C67D235A26DF3BE5 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// ColorPicker ColorSliderImage::picker
ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * ___picker_4;
// ColorValues ColorSliderImage::type
int32_t ___type_5;
// UnityEngine.UI.Slider_Direction ColorSliderImage::direction
int32_t ___direction_6;
// UnityEngine.UI.RawImage ColorSliderImage::image
RawImage_t68991514DB8F48442D614E7904A298C936B3C7C8 * ___image_7;
public:
inline static int32_t get_offset_of_picker_4() { return static_cast<int32_t>(offsetof(ColorSliderImage_tFE0F2136443DFFEC5FEB98F3C67D235A26DF3BE5, ___picker_4)); }
inline ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * get_picker_4() const { return ___picker_4; }
inline ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 ** get_address_of_picker_4() { return &___picker_4; }
inline void set_picker_4(ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * value)
{
___picker_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___picker_4), (void*)value);
}
inline static int32_t get_offset_of_type_5() { return static_cast<int32_t>(offsetof(ColorSliderImage_tFE0F2136443DFFEC5FEB98F3C67D235A26DF3BE5, ___type_5)); }
inline int32_t get_type_5() const { return ___type_5; }
inline int32_t* get_address_of_type_5() { return &___type_5; }
inline void set_type_5(int32_t value)
{
___type_5 = value;
}
inline static int32_t get_offset_of_direction_6() { return static_cast<int32_t>(offsetof(ColorSliderImage_tFE0F2136443DFFEC5FEB98F3C67D235A26DF3BE5, ___direction_6)); }
inline int32_t get_direction_6() const { return ___direction_6; }
inline int32_t* get_address_of_direction_6() { return &___direction_6; }
inline void set_direction_6(int32_t value)
{
___direction_6 = value;
}
inline static int32_t get_offset_of_image_7() { return static_cast<int32_t>(offsetof(ColorSliderImage_tFE0F2136443DFFEC5FEB98F3C67D235A26DF3BE5, ___image_7)); }
inline RawImage_t68991514DB8F48442D614E7904A298C936B3C7C8 * get_image_7() const { return ___image_7; }
inline RawImage_t68991514DB8F48442D614E7904A298C936B3C7C8 ** get_address_of_image_7() { return &___image_7; }
inline void set_image_7(RawImage_t68991514DB8F48442D614E7904A298C936B3C7C8 * value)
{
___image_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___image_7), (void*)value);
}
};
// DetectedObjectManager
struct DetectedObjectManager_tCEE47583DD2EABFAA00DA5A636B378282CDC5570 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.GameObject DetectedObjectManager::m_ObjectPrefab
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_ObjectPrefab_4;
// Collections.Hybrid.Generic.LinkedListDictionary`2<System.String,UnityEngine.GameObject> DetectedObjectManager::objectAnchorMap
LinkedListDictionary_2_t69130A8AB1756EA2252E9CAD21E842F4799E644B * ___objectAnchorMap_5;
public:
inline static int32_t get_offset_of_m_ObjectPrefab_4() { return static_cast<int32_t>(offsetof(DetectedObjectManager_tCEE47583DD2EABFAA00DA5A636B378282CDC5570, ___m_ObjectPrefab_4)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_m_ObjectPrefab_4() const { return ___m_ObjectPrefab_4; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_m_ObjectPrefab_4() { return &___m_ObjectPrefab_4; }
inline void set_m_ObjectPrefab_4(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___m_ObjectPrefab_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ObjectPrefab_4), (void*)value);
}
inline static int32_t get_offset_of_objectAnchorMap_5() { return static_cast<int32_t>(offsetof(DetectedObjectManager_tCEE47583DD2EABFAA00DA5A636B378282CDC5570, ___objectAnchorMap_5)); }
inline LinkedListDictionary_2_t69130A8AB1756EA2252E9CAD21E842F4799E644B * get_objectAnchorMap_5() const { return ___objectAnchorMap_5; }
inline LinkedListDictionary_2_t69130A8AB1756EA2252E9CAD21E842F4799E644B ** get_address_of_objectAnchorMap_5() { return &___objectAnchorMap_5; }
inline void set_objectAnchorMap_5(LinkedListDictionary_2_t69130A8AB1756EA2252E9CAD21E842F4799E644B * value)
{
___objectAnchorMap_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___objectAnchorMap_5), (void*)value);
}
};
// DigitalRuby.PyroParticles.FireBaseScript
struct FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.AudioSource DigitalRuby.PyroParticles.FireBaseScript::AudioSource
AudioSource_t5196F862B4E60F404613361C90D87FBDD041E93C * ___AudioSource_4;
// System.Single DigitalRuby.PyroParticles.FireBaseScript::StartTime
float ___StartTime_5;
// System.Single DigitalRuby.PyroParticles.FireBaseScript::StopTime
float ___StopTime_6;
// System.Single DigitalRuby.PyroParticles.FireBaseScript::Duration
float ___Duration_7;
// System.Single DigitalRuby.PyroParticles.FireBaseScript::ForceAmount
float ___ForceAmount_8;
// System.Single DigitalRuby.PyroParticles.FireBaseScript::ForceRadius
float ___ForceRadius_9;
// System.Boolean DigitalRuby.PyroParticles.FireBaseScript::IsProjectile
bool ___IsProjectile_10;
// UnityEngine.ParticleSystem[] DigitalRuby.PyroParticles.FireBaseScript::ManualParticleSystems
ParticleSystemU5BU5D_t58EE604F685D8CBA8EFC9353456969F5A1B2FBB9* ___ManualParticleSystems_11;
// System.Single DigitalRuby.PyroParticles.FireBaseScript::startTimeMultiplier
float ___startTimeMultiplier_12;
// System.Single DigitalRuby.PyroParticles.FireBaseScript::startTimeIncrement
float ___startTimeIncrement_13;
// System.Single DigitalRuby.PyroParticles.FireBaseScript::stopTimeMultiplier
float ___stopTimeMultiplier_14;
// System.Single DigitalRuby.PyroParticles.FireBaseScript::stopTimeIncrement
float ___stopTimeIncrement_15;
// System.Boolean DigitalRuby.PyroParticles.FireBaseScript::<Starting>k__BackingField
bool ___U3CStartingU3Ek__BackingField_16;
// System.Single DigitalRuby.PyroParticles.FireBaseScript::<StartPercent>k__BackingField
float ___U3CStartPercentU3Ek__BackingField_17;
// System.Boolean DigitalRuby.PyroParticles.FireBaseScript::<Stopping>k__BackingField
bool ___U3CStoppingU3Ek__BackingField_18;
// System.Single DigitalRuby.PyroParticles.FireBaseScript::<StopPercent>k__BackingField
float ___U3CStopPercentU3Ek__BackingField_19;
public:
inline static int32_t get_offset_of_AudioSource_4() { return static_cast<int32_t>(offsetof(FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E, ___AudioSource_4)); }
inline AudioSource_t5196F862B4E60F404613361C90D87FBDD041E93C * get_AudioSource_4() const { return ___AudioSource_4; }
inline AudioSource_t5196F862B4E60F404613361C90D87FBDD041E93C ** get_address_of_AudioSource_4() { return &___AudioSource_4; }
inline void set_AudioSource_4(AudioSource_t5196F862B4E60F404613361C90D87FBDD041E93C * value)
{
___AudioSource_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___AudioSource_4), (void*)value);
}
inline static int32_t get_offset_of_StartTime_5() { return static_cast<int32_t>(offsetof(FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E, ___StartTime_5)); }
inline float get_StartTime_5() const { return ___StartTime_5; }
inline float* get_address_of_StartTime_5() { return &___StartTime_5; }
inline void set_StartTime_5(float value)
{
___StartTime_5 = value;
}
inline static int32_t get_offset_of_StopTime_6() { return static_cast<int32_t>(offsetof(FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E, ___StopTime_6)); }
inline float get_StopTime_6() const { return ___StopTime_6; }
inline float* get_address_of_StopTime_6() { return &___StopTime_6; }
inline void set_StopTime_6(float value)
{
___StopTime_6 = value;
}
inline static int32_t get_offset_of_Duration_7() { return static_cast<int32_t>(offsetof(FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E, ___Duration_7)); }
inline float get_Duration_7() const { return ___Duration_7; }
inline float* get_address_of_Duration_7() { return &___Duration_7; }
inline void set_Duration_7(float value)
{
___Duration_7 = value;
}
inline static int32_t get_offset_of_ForceAmount_8() { return static_cast<int32_t>(offsetof(FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E, ___ForceAmount_8)); }
inline float get_ForceAmount_8() const { return ___ForceAmount_8; }
inline float* get_address_of_ForceAmount_8() { return &___ForceAmount_8; }
inline void set_ForceAmount_8(float value)
{
___ForceAmount_8 = value;
}
inline static int32_t get_offset_of_ForceRadius_9() { return static_cast<int32_t>(offsetof(FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E, ___ForceRadius_9)); }
inline float get_ForceRadius_9() const { return ___ForceRadius_9; }
inline float* get_address_of_ForceRadius_9() { return &___ForceRadius_9; }
inline void set_ForceRadius_9(float value)
{
___ForceRadius_9 = value;
}
inline static int32_t get_offset_of_IsProjectile_10() { return static_cast<int32_t>(offsetof(FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E, ___IsProjectile_10)); }
inline bool get_IsProjectile_10() const { return ___IsProjectile_10; }
inline bool* get_address_of_IsProjectile_10() { return &___IsProjectile_10; }
inline void set_IsProjectile_10(bool value)
{
___IsProjectile_10 = value;
}
inline static int32_t get_offset_of_ManualParticleSystems_11() { return static_cast<int32_t>(offsetof(FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E, ___ManualParticleSystems_11)); }
inline ParticleSystemU5BU5D_t58EE604F685D8CBA8EFC9353456969F5A1B2FBB9* get_ManualParticleSystems_11() const { return ___ManualParticleSystems_11; }
inline ParticleSystemU5BU5D_t58EE604F685D8CBA8EFC9353456969F5A1B2FBB9** get_address_of_ManualParticleSystems_11() { return &___ManualParticleSystems_11; }
inline void set_ManualParticleSystems_11(ParticleSystemU5BU5D_t58EE604F685D8CBA8EFC9353456969F5A1B2FBB9* value)
{
___ManualParticleSystems_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ManualParticleSystems_11), (void*)value);
}
inline static int32_t get_offset_of_startTimeMultiplier_12() { return static_cast<int32_t>(offsetof(FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E, ___startTimeMultiplier_12)); }
inline float get_startTimeMultiplier_12() const { return ___startTimeMultiplier_12; }
inline float* get_address_of_startTimeMultiplier_12() { return &___startTimeMultiplier_12; }
inline void set_startTimeMultiplier_12(float value)
{
___startTimeMultiplier_12 = value;
}
inline static int32_t get_offset_of_startTimeIncrement_13() { return static_cast<int32_t>(offsetof(FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E, ___startTimeIncrement_13)); }
inline float get_startTimeIncrement_13() const { return ___startTimeIncrement_13; }
inline float* get_address_of_startTimeIncrement_13() { return &___startTimeIncrement_13; }
inline void set_startTimeIncrement_13(float value)
{
___startTimeIncrement_13 = value;
}
inline static int32_t get_offset_of_stopTimeMultiplier_14() { return static_cast<int32_t>(offsetof(FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E, ___stopTimeMultiplier_14)); }
inline float get_stopTimeMultiplier_14() const { return ___stopTimeMultiplier_14; }
inline float* get_address_of_stopTimeMultiplier_14() { return &___stopTimeMultiplier_14; }
inline void set_stopTimeMultiplier_14(float value)
{
___stopTimeMultiplier_14 = value;
}
inline static int32_t get_offset_of_stopTimeIncrement_15() { return static_cast<int32_t>(offsetof(FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E, ___stopTimeIncrement_15)); }
inline float get_stopTimeIncrement_15() const { return ___stopTimeIncrement_15; }
inline float* get_address_of_stopTimeIncrement_15() { return &___stopTimeIncrement_15; }
inline void set_stopTimeIncrement_15(float value)
{
___stopTimeIncrement_15 = value;
}
inline static int32_t get_offset_of_U3CStartingU3Ek__BackingField_16() { return static_cast<int32_t>(offsetof(FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E, ___U3CStartingU3Ek__BackingField_16)); }
inline bool get_U3CStartingU3Ek__BackingField_16() const { return ___U3CStartingU3Ek__BackingField_16; }
inline bool* get_address_of_U3CStartingU3Ek__BackingField_16() { return &___U3CStartingU3Ek__BackingField_16; }
inline void set_U3CStartingU3Ek__BackingField_16(bool value)
{
___U3CStartingU3Ek__BackingField_16 = value;
}
inline static int32_t get_offset_of_U3CStartPercentU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E, ___U3CStartPercentU3Ek__BackingField_17)); }
inline float get_U3CStartPercentU3Ek__BackingField_17() const { return ___U3CStartPercentU3Ek__BackingField_17; }
inline float* get_address_of_U3CStartPercentU3Ek__BackingField_17() { return &___U3CStartPercentU3Ek__BackingField_17; }
inline void set_U3CStartPercentU3Ek__BackingField_17(float value)
{
___U3CStartPercentU3Ek__BackingField_17 = value;
}
inline static int32_t get_offset_of_U3CStoppingU3Ek__BackingField_18() { return static_cast<int32_t>(offsetof(FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E, ___U3CStoppingU3Ek__BackingField_18)); }
inline bool get_U3CStoppingU3Ek__BackingField_18() const { return ___U3CStoppingU3Ek__BackingField_18; }
inline bool* get_address_of_U3CStoppingU3Ek__BackingField_18() { return &___U3CStoppingU3Ek__BackingField_18; }
inline void set_U3CStoppingU3Ek__BackingField_18(bool value)
{
___U3CStoppingU3Ek__BackingField_18 = value;
}
inline static int32_t get_offset_of_U3CStopPercentU3Ek__BackingField_19() { return static_cast<int32_t>(offsetof(FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E, ___U3CStopPercentU3Ek__BackingField_19)); }
inline float get_U3CStopPercentU3Ek__BackingField_19() const { return ___U3CStopPercentU3Ek__BackingField_19; }
inline float* get_address_of_U3CStopPercentU3Ek__BackingField_19() { return &___U3CStopPercentU3Ek__BackingField_19; }
inline void set_U3CStopPercentU3Ek__BackingField_19(float value)
{
___U3CStopPercentU3Ek__BackingField_19 = value;
}
};
// DigitalRuby.PyroParticles.FireCollisionForwardScript
struct FireCollisionForwardScript_t5525551AAC4835F71A6E23CC24F43BC750C67C5D : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// DigitalRuby.PyroParticles.ICollisionHandler DigitalRuby.PyroParticles.FireCollisionForwardScript::CollisionHandler
RuntimeObject* ___CollisionHandler_4;
public:
inline static int32_t get_offset_of_CollisionHandler_4() { return static_cast<int32_t>(offsetof(FireCollisionForwardScript_t5525551AAC4835F71A6E23CC24F43BC750C67C5D, ___CollisionHandler_4)); }
inline RuntimeObject* get_CollisionHandler_4() const { return ___CollisionHandler_4; }
inline RuntimeObject** get_address_of_CollisionHandler_4() { return &___CollisionHandler_4; }
inline void set_CollisionHandler_4(RuntimeObject* value)
{
___CollisionHandler_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___CollisionHandler_4), (void*)value);
}
};
// DigitalRuby.PyroParticles.FireLightScript
struct FireLightScript_t765D9CC8546C06A445E7FBA5A80C7E4F60BE33E6 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// System.Single DigitalRuby.PyroParticles.FireLightScript::Seed
float ___Seed_4;
// System.Single DigitalRuby.PyroParticles.FireLightScript::IntensityModifier
float ___IntensityModifier_5;
// DigitalRuby.PyroParticles.RangeOfFloats DigitalRuby.PyroParticles.FireLightScript::IntensityMaxRange
RangeOfFloats_t76ACB04A2C313C41EE04ED57A2F0E2A9F30EA4F9 ___IntensityMaxRange_6;
// UnityEngine.Light DigitalRuby.PyroParticles.FireLightScript::firePointLight
Light_tFDE490EADBC7E080F74CA804929513AF07C31A6C * ___firePointLight_7;
// System.Single DigitalRuby.PyroParticles.FireLightScript::lightIntensity
float ___lightIntensity_8;
// System.Single DigitalRuby.PyroParticles.FireLightScript::seed
float ___seed_9;
// DigitalRuby.PyroParticles.FireBaseScript DigitalRuby.PyroParticles.FireLightScript::fireBaseScript
FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E * ___fireBaseScript_10;
// System.Single DigitalRuby.PyroParticles.FireLightScript::baseY
float ___baseY_11;
public:
inline static int32_t get_offset_of_Seed_4() { return static_cast<int32_t>(offsetof(FireLightScript_t765D9CC8546C06A445E7FBA5A80C7E4F60BE33E6, ___Seed_4)); }
inline float get_Seed_4() const { return ___Seed_4; }
inline float* get_address_of_Seed_4() { return &___Seed_4; }
inline void set_Seed_4(float value)
{
___Seed_4 = value;
}
inline static int32_t get_offset_of_IntensityModifier_5() { return static_cast<int32_t>(offsetof(FireLightScript_t765D9CC8546C06A445E7FBA5A80C7E4F60BE33E6, ___IntensityModifier_5)); }
inline float get_IntensityModifier_5() const { return ___IntensityModifier_5; }
inline float* get_address_of_IntensityModifier_5() { return &___IntensityModifier_5; }
inline void set_IntensityModifier_5(float value)
{
___IntensityModifier_5 = value;
}
inline static int32_t get_offset_of_IntensityMaxRange_6() { return static_cast<int32_t>(offsetof(FireLightScript_t765D9CC8546C06A445E7FBA5A80C7E4F60BE33E6, ___IntensityMaxRange_6)); }
inline RangeOfFloats_t76ACB04A2C313C41EE04ED57A2F0E2A9F30EA4F9 get_IntensityMaxRange_6() const { return ___IntensityMaxRange_6; }
inline RangeOfFloats_t76ACB04A2C313C41EE04ED57A2F0E2A9F30EA4F9 * get_address_of_IntensityMaxRange_6() { return &___IntensityMaxRange_6; }
inline void set_IntensityMaxRange_6(RangeOfFloats_t76ACB04A2C313C41EE04ED57A2F0E2A9F30EA4F9 value)
{
___IntensityMaxRange_6 = value;
}
inline static int32_t get_offset_of_firePointLight_7() { return static_cast<int32_t>(offsetof(FireLightScript_t765D9CC8546C06A445E7FBA5A80C7E4F60BE33E6, ___firePointLight_7)); }
inline Light_tFDE490EADBC7E080F74CA804929513AF07C31A6C * get_firePointLight_7() const { return ___firePointLight_7; }
inline Light_tFDE490EADBC7E080F74CA804929513AF07C31A6C ** get_address_of_firePointLight_7() { return &___firePointLight_7; }
inline void set_firePointLight_7(Light_tFDE490EADBC7E080F74CA804929513AF07C31A6C * value)
{
___firePointLight_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___firePointLight_7), (void*)value);
}
inline static int32_t get_offset_of_lightIntensity_8() { return static_cast<int32_t>(offsetof(FireLightScript_t765D9CC8546C06A445E7FBA5A80C7E4F60BE33E6, ___lightIntensity_8)); }
inline float get_lightIntensity_8() const { return ___lightIntensity_8; }
inline float* get_address_of_lightIntensity_8() { return &___lightIntensity_8; }
inline void set_lightIntensity_8(float value)
{
___lightIntensity_8 = value;
}
inline static int32_t get_offset_of_seed_9() { return static_cast<int32_t>(offsetof(FireLightScript_t765D9CC8546C06A445E7FBA5A80C7E4F60BE33E6, ___seed_9)); }
inline float get_seed_9() const { return ___seed_9; }
inline float* get_address_of_seed_9() { return &___seed_9; }
inline void set_seed_9(float value)
{
___seed_9 = value;
}
inline static int32_t get_offset_of_fireBaseScript_10() { return static_cast<int32_t>(offsetof(FireLightScript_t765D9CC8546C06A445E7FBA5A80C7E4F60BE33E6, ___fireBaseScript_10)); }
inline FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E * get_fireBaseScript_10() const { return ___fireBaseScript_10; }
inline FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E ** get_address_of_fireBaseScript_10() { return &___fireBaseScript_10; }
inline void set_fireBaseScript_10(FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E * value)
{
___fireBaseScript_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___fireBaseScript_10), (void*)value);
}
inline static int32_t get_offset_of_baseY_11() { return static_cast<int32_t>(offsetof(FireLightScript_t765D9CC8546C06A445E7FBA5A80C7E4F60BE33E6, ___baseY_11)); }
inline float get_baseY_11() const { return ___baseY_11; }
inline float* get_address_of_baseY_11() { return &___baseY_11; }
inline void set_baseY_11(float value)
{
___baseY_11 = value;
}
};
// DontDestroyOnLoad
struct DontDestroyOnLoad_tCF8745CD6B27861A6F9BBA0C26C7DC26D1183CBA : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
public:
};
// FaceTrackingVideoFormatsExample
struct FaceTrackingVideoFormatsExample_t2FE4E7FA2213CDA88F2FEB558A5C41E09EAEEF39 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.Transform FaceTrackingVideoFormatsExample::formatsParent
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___formatsParent_4;
// UnityEngine.GameObject FaceTrackingVideoFormatsExample::videoFormatButtonPrefab
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___videoFormatButtonPrefab_5;
public:
inline static int32_t get_offset_of_formatsParent_4() { return static_cast<int32_t>(offsetof(FaceTrackingVideoFormatsExample_t2FE4E7FA2213CDA88F2FEB558A5C41E09EAEEF39, ___formatsParent_4)); }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_formatsParent_4() const { return ___formatsParent_4; }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_formatsParent_4() { return &___formatsParent_4; }
inline void set_formatsParent_4(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value)
{
___formatsParent_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___formatsParent_4), (void*)value);
}
inline static int32_t get_offset_of_videoFormatButtonPrefab_5() { return static_cast<int32_t>(offsetof(FaceTrackingVideoFormatsExample_t2FE4E7FA2213CDA88F2FEB558A5C41E09EAEEF39, ___videoFormatButtonPrefab_5)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_videoFormatButtonPrefab_5() const { return ___videoFormatButtonPrefab_5; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_videoFormatButtonPrefab_5() { return &___videoFormatButtonPrefab_5; }
inline void set_videoFormatButtonPrefab_5(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___videoFormatButtonPrefab_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___videoFormatButtonPrefab_5), (void*)value);
}
};
// FocusSquare
struct FocusSquare_tD8F227673C3CDFE7F5C33248EA25805E57CB8057 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.GameObject FocusSquare::findingSquare
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___findingSquare_4;
// UnityEngine.GameObject FocusSquare::foundSquare
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___foundSquare_5;
// System.Single FocusSquare::maxRayDistance
float ___maxRayDistance_6;
// UnityEngine.LayerMask FocusSquare::collisionLayerMask
LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 ___collisionLayerMask_7;
// System.Single FocusSquare::findingSquareDist
float ___findingSquareDist_8;
// FocusSquare_FocusState FocusSquare::squareState
int32_t ___squareState_9;
// System.Boolean FocusSquare::trackingInitialized
bool ___trackingInitialized_10;
public:
inline static int32_t get_offset_of_findingSquare_4() { return static_cast<int32_t>(offsetof(FocusSquare_tD8F227673C3CDFE7F5C33248EA25805E57CB8057, ___findingSquare_4)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_findingSquare_4() const { return ___findingSquare_4; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_findingSquare_4() { return &___findingSquare_4; }
inline void set_findingSquare_4(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___findingSquare_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___findingSquare_4), (void*)value);
}
inline static int32_t get_offset_of_foundSquare_5() { return static_cast<int32_t>(offsetof(FocusSquare_tD8F227673C3CDFE7F5C33248EA25805E57CB8057, ___foundSquare_5)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_foundSquare_5() const { return ___foundSquare_5; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_foundSquare_5() { return &___foundSquare_5; }
inline void set_foundSquare_5(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___foundSquare_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___foundSquare_5), (void*)value);
}
inline static int32_t get_offset_of_maxRayDistance_6() { return static_cast<int32_t>(offsetof(FocusSquare_tD8F227673C3CDFE7F5C33248EA25805E57CB8057, ___maxRayDistance_6)); }
inline float get_maxRayDistance_6() const { return ___maxRayDistance_6; }
inline float* get_address_of_maxRayDistance_6() { return &___maxRayDistance_6; }
inline void set_maxRayDistance_6(float value)
{
___maxRayDistance_6 = value;
}
inline static int32_t get_offset_of_collisionLayerMask_7() { return static_cast<int32_t>(offsetof(FocusSquare_tD8F227673C3CDFE7F5C33248EA25805E57CB8057, ___collisionLayerMask_7)); }
inline LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 get_collisionLayerMask_7() const { return ___collisionLayerMask_7; }
inline LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 * get_address_of_collisionLayerMask_7() { return &___collisionLayerMask_7; }
inline void set_collisionLayerMask_7(LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 value)
{
___collisionLayerMask_7 = value;
}
inline static int32_t get_offset_of_findingSquareDist_8() { return static_cast<int32_t>(offsetof(FocusSquare_tD8F227673C3CDFE7F5C33248EA25805E57CB8057, ___findingSquareDist_8)); }
inline float get_findingSquareDist_8() const { return ___findingSquareDist_8; }
inline float* get_address_of_findingSquareDist_8() { return &___findingSquareDist_8; }
inline void set_findingSquareDist_8(float value)
{
___findingSquareDist_8 = value;
}
inline static int32_t get_offset_of_squareState_9() { return static_cast<int32_t>(offsetof(FocusSquare_tD8F227673C3CDFE7F5C33248EA25805E57CB8057, ___squareState_9)); }
inline int32_t get_squareState_9() const { return ___squareState_9; }
inline int32_t* get_address_of_squareState_9() { return &___squareState_9; }
inline void set_squareState_9(int32_t value)
{
___squareState_9 = value;
}
inline static int32_t get_offset_of_trackingInitialized_10() { return static_cast<int32_t>(offsetof(FocusSquare_tD8F227673C3CDFE7F5C33248EA25805E57CB8057, ___trackingInitialized_10)); }
inline bool get_trackingInitialized_10() const { return ___trackingInitialized_10; }
inline bool* get_address_of_trackingInitialized_10() { return &___trackingInitialized_10; }
inline void set_trackingInitialized_10(bool value)
{
___trackingInitialized_10 = value;
}
};
// GenerateEnvironmentProbeAnchors
struct GenerateEnvironmentProbeAnchors_t9C539D7382961D288A28BF7816D17AA5BD0F58F2 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// ReflectionProbeGameObject GenerateEnvironmentProbeAnchors::m_ReflectionProbePrefab
ReflectionProbeGameObject_tD75E3FD28D072B9F8A906119378358A6538AB58C * ___m_ReflectionProbePrefab_4;
// Collections.Hybrid.Generic.LinkedListDictionary`2<System.String,ReflectionProbeGameObject> GenerateEnvironmentProbeAnchors::probeAnchorMap
LinkedListDictionary_2_tD9355EEF86691B9334A89D4152C60A07F578490B * ___probeAnchorMap_5;
public:
inline static int32_t get_offset_of_m_ReflectionProbePrefab_4() { return static_cast<int32_t>(offsetof(GenerateEnvironmentProbeAnchors_t9C539D7382961D288A28BF7816D17AA5BD0F58F2, ___m_ReflectionProbePrefab_4)); }
inline ReflectionProbeGameObject_tD75E3FD28D072B9F8A906119378358A6538AB58C * get_m_ReflectionProbePrefab_4() const { return ___m_ReflectionProbePrefab_4; }
inline ReflectionProbeGameObject_tD75E3FD28D072B9F8A906119378358A6538AB58C ** get_address_of_m_ReflectionProbePrefab_4() { return &___m_ReflectionProbePrefab_4; }
inline void set_m_ReflectionProbePrefab_4(ReflectionProbeGameObject_tD75E3FD28D072B9F8A906119378358A6538AB58C * value)
{
___m_ReflectionProbePrefab_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ReflectionProbePrefab_4), (void*)value);
}
inline static int32_t get_offset_of_probeAnchorMap_5() { return static_cast<int32_t>(offsetof(GenerateEnvironmentProbeAnchors_t9C539D7382961D288A28BF7816D17AA5BD0F58F2, ___probeAnchorMap_5)); }
inline LinkedListDictionary_2_tD9355EEF86691B9334A89D4152C60A07F578490B * get_probeAnchorMap_5() const { return ___probeAnchorMap_5; }
inline LinkedListDictionary_2_tD9355EEF86691B9334A89D4152C60A07F578490B ** get_address_of_probeAnchorMap_5() { return &___probeAnchorMap_5; }
inline void set_probeAnchorMap_5(LinkedListDictionary_2_tD9355EEF86691B9334A89D4152C60A07F578490B * value)
{
___probeAnchorMap_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___probeAnchorMap_5), (void*)value);
}
};
// GenerateImageAnchor
struct GenerateImageAnchor_t88A7A4DE61FA02D020BCCC11F5CD996543AFD770 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// ARReferenceImage GenerateImageAnchor::referenceImage
ARReferenceImage_tB296F0D336F71A9B79F9D4C826391CBC8A0D2F92 * ___referenceImage_4;
// UnityEngine.GameObject GenerateImageAnchor::prefabToGenerate
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___prefabToGenerate_5;
// UnityEngine.GameObject GenerateImageAnchor::imageAnchorGO
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___imageAnchorGO_6;
public:
inline static int32_t get_offset_of_referenceImage_4() { return static_cast<int32_t>(offsetof(GenerateImageAnchor_t88A7A4DE61FA02D020BCCC11F5CD996543AFD770, ___referenceImage_4)); }
inline ARReferenceImage_tB296F0D336F71A9B79F9D4C826391CBC8A0D2F92 * get_referenceImage_4() const { return ___referenceImage_4; }
inline ARReferenceImage_tB296F0D336F71A9B79F9D4C826391CBC8A0D2F92 ** get_address_of_referenceImage_4() { return &___referenceImage_4; }
inline void set_referenceImage_4(ARReferenceImage_tB296F0D336F71A9B79F9D4C826391CBC8A0D2F92 * value)
{
___referenceImage_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___referenceImage_4), (void*)value);
}
inline static int32_t get_offset_of_prefabToGenerate_5() { return static_cast<int32_t>(offsetof(GenerateImageAnchor_t88A7A4DE61FA02D020BCCC11F5CD996543AFD770, ___prefabToGenerate_5)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_prefabToGenerate_5() const { return ___prefabToGenerate_5; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_prefabToGenerate_5() { return &___prefabToGenerate_5; }
inline void set_prefabToGenerate_5(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___prefabToGenerate_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___prefabToGenerate_5), (void*)value);
}
inline static int32_t get_offset_of_imageAnchorGO_6() { return static_cast<int32_t>(offsetof(GenerateImageAnchor_t88A7A4DE61FA02D020BCCC11F5CD996543AFD770, ___imageAnchorGO_6)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_imageAnchorGO_6() const { return ___imageAnchorGO_6; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_imageAnchorGO_6() { return &___imageAnchorGO_6; }
inline void set_imageAnchorGO_6(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___imageAnchorGO_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___imageAnchorGO_6), (void*)value);
}
};
// GenerateObjectAnchor
struct GenerateObjectAnchor_t5894B553121A8401B4B119B72CE621702B55AC02 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// ARReferenceObjectAsset GenerateObjectAnchor::referenceObjectAsset
ARReferenceObjectAsset_t1CCE48A98E8094085A1E7972AB5B3B9FAC93AA77 * ___referenceObjectAsset_4;
// UnityEngine.GameObject GenerateObjectAnchor::prefabToGenerate
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___prefabToGenerate_5;
// UnityEngine.GameObject GenerateObjectAnchor::objectAnchorGO
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___objectAnchorGO_6;
public:
inline static int32_t get_offset_of_referenceObjectAsset_4() { return static_cast<int32_t>(offsetof(GenerateObjectAnchor_t5894B553121A8401B4B119B72CE621702B55AC02, ___referenceObjectAsset_4)); }
inline ARReferenceObjectAsset_t1CCE48A98E8094085A1E7972AB5B3B9FAC93AA77 * get_referenceObjectAsset_4() const { return ___referenceObjectAsset_4; }
inline ARReferenceObjectAsset_t1CCE48A98E8094085A1E7972AB5B3B9FAC93AA77 ** get_address_of_referenceObjectAsset_4() { return &___referenceObjectAsset_4; }
inline void set_referenceObjectAsset_4(ARReferenceObjectAsset_t1CCE48A98E8094085A1E7972AB5B3B9FAC93AA77 * value)
{
___referenceObjectAsset_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___referenceObjectAsset_4), (void*)value);
}
inline static int32_t get_offset_of_prefabToGenerate_5() { return static_cast<int32_t>(offsetof(GenerateObjectAnchor_t5894B553121A8401B4B119B72CE621702B55AC02, ___prefabToGenerate_5)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_prefabToGenerate_5() const { return ___prefabToGenerate_5; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_prefabToGenerate_5() { return &___prefabToGenerate_5; }
inline void set_prefabToGenerate_5(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___prefabToGenerate_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___prefabToGenerate_5), (void*)value);
}
inline static int32_t get_offset_of_objectAnchorGO_6() { return static_cast<int32_t>(offsetof(GenerateObjectAnchor_t5894B553121A8401B4B119B72CE621702B55AC02, ___objectAnchorGO_6)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_objectAnchorGO_6() const { return ___objectAnchorGO_6; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_objectAnchorGO_6() { return &___objectAnchorGO_6; }
inline void set_objectAnchorGO_6(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___objectAnchorGO_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___objectAnchorGO_6), (void*)value);
}
};
// HexColorField
struct HexColorField_tDB03B01714DE77496F9F4C8F4426B9F92ECA6BF6 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// ColorPicker HexColorField::hsvpicker
ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * ___hsvpicker_4;
// System.Boolean HexColorField::displayAlpha
bool ___displayAlpha_5;
// UnityEngine.UI.InputField HexColorField::hexInputField
InputField_t533609195B110760BCFF00B746C87D81969CB005 * ___hexInputField_6;
public:
inline static int32_t get_offset_of_hsvpicker_4() { return static_cast<int32_t>(offsetof(HexColorField_tDB03B01714DE77496F9F4C8F4426B9F92ECA6BF6, ___hsvpicker_4)); }
inline ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * get_hsvpicker_4() const { return ___hsvpicker_4; }
inline ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 ** get_address_of_hsvpicker_4() { return &___hsvpicker_4; }
inline void set_hsvpicker_4(ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * value)
{
___hsvpicker_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___hsvpicker_4), (void*)value);
}
inline static int32_t get_offset_of_displayAlpha_5() { return static_cast<int32_t>(offsetof(HexColorField_tDB03B01714DE77496F9F4C8F4426B9F92ECA6BF6, ___displayAlpha_5)); }
inline bool get_displayAlpha_5() const { return ___displayAlpha_5; }
inline bool* get_address_of_displayAlpha_5() { return &___displayAlpha_5; }
inline void set_displayAlpha_5(bool value)
{
___displayAlpha_5 = value;
}
inline static int32_t get_offset_of_hexInputField_6() { return static_cast<int32_t>(offsetof(HexColorField_tDB03B01714DE77496F9F4C8F4426B9F92ECA6BF6, ___hexInputField_6)); }
inline InputField_t533609195B110760BCFF00B746C87D81969CB005 * get_hexInputField_6() const { return ___hexInputField_6; }
inline InputField_t533609195B110760BCFF00B746C87D81969CB005 ** get_address_of_hexInputField_6() { return &___hexInputField_6; }
inline void set_hexInputField_6(InputField_t533609195B110760BCFF00B746C87D81969CB005 * value)
{
___hexInputField_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___hexInputField_6), (void*)value);
}
};
// HitCreateEnvironmentProbe
struct HitCreateEnvironmentProbe_tDFC0CE4F605BBBCBB41A6CD82DF60F75223304A1 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// System.Single HitCreateEnvironmentProbe::maxRayDistance
float ___maxRayDistance_4;
// UnityEngine.LayerMask HitCreateEnvironmentProbe::collisionLayer
LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 ___collisionLayer_5;
public:
inline static int32_t get_offset_of_maxRayDistance_4() { return static_cast<int32_t>(offsetof(HitCreateEnvironmentProbe_tDFC0CE4F605BBBCBB41A6CD82DF60F75223304A1, ___maxRayDistance_4)); }
inline float get_maxRayDistance_4() const { return ___maxRayDistance_4; }
inline float* get_address_of_maxRayDistance_4() { return &___maxRayDistance_4; }
inline void set_maxRayDistance_4(float value)
{
___maxRayDistance_4 = value;
}
inline static int32_t get_offset_of_collisionLayer_5() { return static_cast<int32_t>(offsetof(HitCreateEnvironmentProbe_tDFC0CE4F605BBBCBB41A6CD82DF60F75223304A1, ___collisionLayer_5)); }
inline LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 get_collisionLayer_5() const { return ___collisionLayer_5; }
inline LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 * get_address_of_collisionLayer_5() { return &___collisionLayer_5; }
inline void set_collisionLayer_5(LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 value)
{
___collisionLayer_5 = value;
}
};
// ModeSwitcher
struct ModeSwitcher_tFB2CB3B9C07236C52C5AD691FCEE5D24CD2AF88F : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.GameObject ModeSwitcher::ballMake
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___ballMake_4;
// UnityEngine.GameObject ModeSwitcher::ballMove
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___ballMove_5;
// System.Int32 ModeSwitcher::appMode
int32_t ___appMode_6;
public:
inline static int32_t get_offset_of_ballMake_4() { return static_cast<int32_t>(offsetof(ModeSwitcher_tFB2CB3B9C07236C52C5AD691FCEE5D24CD2AF88F, ___ballMake_4)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_ballMake_4() const { return ___ballMake_4; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_ballMake_4() { return &___ballMake_4; }
inline void set_ballMake_4(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___ballMake_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ballMake_4), (void*)value);
}
inline static int32_t get_offset_of_ballMove_5() { return static_cast<int32_t>(offsetof(ModeSwitcher_tFB2CB3B9C07236C52C5AD691FCEE5D24CD2AF88F, ___ballMove_5)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_ballMove_5() const { return ___ballMove_5; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_ballMove_5() { return &___ballMove_5; }
inline void set_ballMove_5(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___ballMove_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ballMove_5), (void*)value);
}
inline static int32_t get_offset_of_appMode_6() { return static_cast<int32_t>(offsetof(ModeSwitcher_tFB2CB3B9C07236C52C5AD691FCEE5D24CD2AF88F, ___appMode_6)); }
inline int32_t get_appMode_6() const { return ___appMode_6; }
inline int32_t* get_address_of_appMode_6() { return &___appMode_6; }
inline void set_appMode_6(int32_t value)
{
___appMode_6 = value;
}
};
// ObjectScanManager
struct ObjectScanManager_tB78B61ABE77713CB550B3D60BA37F5D0B6C62AC8 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// ObjectScanSessionManager ObjectScanManager::m_ARSessionManager
ObjectScanSessionManager_t52876CFEBCB163AC5653E45E5CDBBED9CCB34015 * ___m_ARSessionManager_4;
// UnityEngine.UI.Text ObjectScanManager::listOfObjects
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___listOfObjects_5;
// System.Int32 ObjectScanManager::objIndex
int32_t ___objIndex_6;
// System.Collections.Generic.List`1<UnityEngine.XR.iOS.ARReferenceObject> ObjectScanManager::scannedObjects
List_1_tCFF3AE1676060F9099C2596A07769CE659B012AB * ___scannedObjects_7;
// System.Boolean ObjectScanManager::detectionMode
bool ___detectionMode_8;
// UnityEngine.XR.iOS.PickBoundingBox ObjectScanManager::pickBoundingBox
PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88 * ___pickBoundingBox_9;
public:
inline static int32_t get_offset_of_m_ARSessionManager_4() { return static_cast<int32_t>(offsetof(ObjectScanManager_tB78B61ABE77713CB550B3D60BA37F5D0B6C62AC8, ___m_ARSessionManager_4)); }
inline ObjectScanSessionManager_t52876CFEBCB163AC5653E45E5CDBBED9CCB34015 * get_m_ARSessionManager_4() const { return ___m_ARSessionManager_4; }
inline ObjectScanSessionManager_t52876CFEBCB163AC5653E45E5CDBBED9CCB34015 ** get_address_of_m_ARSessionManager_4() { return &___m_ARSessionManager_4; }
inline void set_m_ARSessionManager_4(ObjectScanSessionManager_t52876CFEBCB163AC5653E45E5CDBBED9CCB34015 * value)
{
___m_ARSessionManager_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ARSessionManager_4), (void*)value);
}
inline static int32_t get_offset_of_listOfObjects_5() { return static_cast<int32_t>(offsetof(ObjectScanManager_tB78B61ABE77713CB550B3D60BA37F5D0B6C62AC8, ___listOfObjects_5)); }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * get_listOfObjects_5() const { return ___listOfObjects_5; }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 ** get_address_of_listOfObjects_5() { return &___listOfObjects_5; }
inline void set_listOfObjects_5(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * value)
{
___listOfObjects_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___listOfObjects_5), (void*)value);
}
inline static int32_t get_offset_of_objIndex_6() { return static_cast<int32_t>(offsetof(ObjectScanManager_tB78B61ABE77713CB550B3D60BA37F5D0B6C62AC8, ___objIndex_6)); }
inline int32_t get_objIndex_6() const { return ___objIndex_6; }
inline int32_t* get_address_of_objIndex_6() { return &___objIndex_6; }
inline void set_objIndex_6(int32_t value)
{
___objIndex_6 = value;
}
inline static int32_t get_offset_of_scannedObjects_7() { return static_cast<int32_t>(offsetof(ObjectScanManager_tB78B61ABE77713CB550B3D60BA37F5D0B6C62AC8, ___scannedObjects_7)); }
inline List_1_tCFF3AE1676060F9099C2596A07769CE659B012AB * get_scannedObjects_7() const { return ___scannedObjects_7; }
inline List_1_tCFF3AE1676060F9099C2596A07769CE659B012AB ** get_address_of_scannedObjects_7() { return &___scannedObjects_7; }
inline void set_scannedObjects_7(List_1_tCFF3AE1676060F9099C2596A07769CE659B012AB * value)
{
___scannedObjects_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___scannedObjects_7), (void*)value);
}
inline static int32_t get_offset_of_detectionMode_8() { return static_cast<int32_t>(offsetof(ObjectScanManager_tB78B61ABE77713CB550B3D60BA37F5D0B6C62AC8, ___detectionMode_8)); }
inline bool get_detectionMode_8() const { return ___detectionMode_8; }
inline bool* get_address_of_detectionMode_8() { return &___detectionMode_8; }
inline void set_detectionMode_8(bool value)
{
___detectionMode_8 = value;
}
inline static int32_t get_offset_of_pickBoundingBox_9() { return static_cast<int32_t>(offsetof(ObjectScanManager_tB78B61ABE77713CB550B3D60BA37F5D0B6C62AC8, ___pickBoundingBox_9)); }
inline PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88 * get_pickBoundingBox_9() const { return ___pickBoundingBox_9; }
inline PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88 ** get_address_of_pickBoundingBox_9() { return &___pickBoundingBox_9; }
inline void set_pickBoundingBox_9(PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88 * value)
{
___pickBoundingBox_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___pickBoundingBox_9), (void*)value);
}
};
// ObjectScanSessionManager
struct ObjectScanSessionManager_t52876CFEBCB163AC5653E45E5CDBBED9CCB34015 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.Camera ObjectScanSessionManager::m_camera
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___m_camera_4;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface ObjectScanSessionManager::m_session
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * ___m_session_5;
// UnityEngine.XR.iOS.UnityARAlignment ObjectScanSessionManager::startAlignment
int32_t ___startAlignment_6;
// UnityEngine.XR.iOS.UnityARPlaneDetection ObjectScanSessionManager::planeDetection
int32_t ___planeDetection_7;
// System.Boolean ObjectScanSessionManager::getPointCloudData
bool ___getPointCloudData_8;
// System.Boolean ObjectScanSessionManager::enableLightEstimation
bool ___enableLightEstimation_9;
// System.Boolean ObjectScanSessionManager::enableAutoFocus
bool ___enableAutoFocus_10;
// System.Boolean ObjectScanSessionManager::sessionStarted
bool ___sessionStarted_11;
public:
inline static int32_t get_offset_of_m_camera_4() { return static_cast<int32_t>(offsetof(ObjectScanSessionManager_t52876CFEBCB163AC5653E45E5CDBBED9CCB34015, ___m_camera_4)); }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * get_m_camera_4() const { return ___m_camera_4; }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 ** get_address_of_m_camera_4() { return &___m_camera_4; }
inline void set_m_camera_4(Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * value)
{
___m_camera_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_camera_4), (void*)value);
}
inline static int32_t get_offset_of_m_session_5() { return static_cast<int32_t>(offsetof(ObjectScanSessionManager_t52876CFEBCB163AC5653E45E5CDBBED9CCB34015, ___m_session_5)); }
inline UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * get_m_session_5() const { return ___m_session_5; }
inline UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 ** get_address_of_m_session_5() { return &___m_session_5; }
inline void set_m_session_5(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * value)
{
___m_session_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_session_5), (void*)value);
}
inline static int32_t get_offset_of_startAlignment_6() { return static_cast<int32_t>(offsetof(ObjectScanSessionManager_t52876CFEBCB163AC5653E45E5CDBBED9CCB34015, ___startAlignment_6)); }
inline int32_t get_startAlignment_6() const { return ___startAlignment_6; }
inline int32_t* get_address_of_startAlignment_6() { return &___startAlignment_6; }
inline void set_startAlignment_6(int32_t value)
{
___startAlignment_6 = value;
}
inline static int32_t get_offset_of_planeDetection_7() { return static_cast<int32_t>(offsetof(ObjectScanSessionManager_t52876CFEBCB163AC5653E45E5CDBBED9CCB34015, ___planeDetection_7)); }
inline int32_t get_planeDetection_7() const { return ___planeDetection_7; }
inline int32_t* get_address_of_planeDetection_7() { return &___planeDetection_7; }
inline void set_planeDetection_7(int32_t value)
{
___planeDetection_7 = value;
}
inline static int32_t get_offset_of_getPointCloudData_8() { return static_cast<int32_t>(offsetof(ObjectScanSessionManager_t52876CFEBCB163AC5653E45E5CDBBED9CCB34015, ___getPointCloudData_8)); }
inline bool get_getPointCloudData_8() const { return ___getPointCloudData_8; }
inline bool* get_address_of_getPointCloudData_8() { return &___getPointCloudData_8; }
inline void set_getPointCloudData_8(bool value)
{
___getPointCloudData_8 = value;
}
inline static int32_t get_offset_of_enableLightEstimation_9() { return static_cast<int32_t>(offsetof(ObjectScanSessionManager_t52876CFEBCB163AC5653E45E5CDBBED9CCB34015, ___enableLightEstimation_9)); }
inline bool get_enableLightEstimation_9() const { return ___enableLightEstimation_9; }
inline bool* get_address_of_enableLightEstimation_9() { return &___enableLightEstimation_9; }
inline void set_enableLightEstimation_9(bool value)
{
___enableLightEstimation_9 = value;
}
inline static int32_t get_offset_of_enableAutoFocus_10() { return static_cast<int32_t>(offsetof(ObjectScanSessionManager_t52876CFEBCB163AC5653E45E5CDBBED9CCB34015, ___enableAutoFocus_10)); }
inline bool get_enableAutoFocus_10() const { return ___enableAutoFocus_10; }
inline bool* get_address_of_enableAutoFocus_10() { return &___enableAutoFocus_10; }
inline void set_enableAutoFocus_10(bool value)
{
___enableAutoFocus_10 = value;
}
inline static int32_t get_offset_of_sessionStarted_11() { return static_cast<int32_t>(offsetof(ObjectScanSessionManager_t52876CFEBCB163AC5653E45E5CDBBED9CCB34015, ___sessionStarted_11)); }
inline bool get_sessionStarted_11() const { return ___sessionStarted_11; }
inline bool* get_address_of_sessionStarted_11() { return &___sessionStarted_11; }
inline void set_sessionStarted_11(bool value)
{
___sessionStarted_11 = value;
}
};
// ObjectText
struct ObjectText_tCCD625CE5B57528B5610D828A60638D93AB7E572 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.TextMesh ObjectText::textMesh
TextMesh_t327D0DAFEF431170D8C2882083D442AF4D4A0E4A * ___textMesh_4;
public:
inline static int32_t get_offset_of_textMesh_4() { return static_cast<int32_t>(offsetof(ObjectText_tCCD625CE5B57528B5610D828A60638D93AB7E572, ___textMesh_4)); }
inline TextMesh_t327D0DAFEF431170D8C2882083D442AF4D4A0E4A * get_textMesh_4() const { return ___textMesh_4; }
inline TextMesh_t327D0DAFEF431170D8C2882083D442AF4D4A0E4A ** get_address_of_textMesh_4() { return &___textMesh_4; }
inline void set_textMesh_4(TextMesh_t327D0DAFEF431170D8C2882083D442AF4D4A0E4A * value)
{
___textMesh_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___textMesh_4), (void*)value);
}
};
// ParticlePainter
struct ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.ParticleSystem ParticlePainter::painterParticlePrefab
ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * ___painterParticlePrefab_4;
// System.Single ParticlePainter::minDistanceThreshold
float ___minDistanceThreshold_5;
// System.Single ParticlePainter::maxDistanceThreshold
float ___maxDistanceThreshold_6;
// System.Boolean ParticlePainter::frameUpdated
bool ___frameUpdated_7;
// System.Single ParticlePainter::particleSize
float ___particleSize_8;
// System.Single ParticlePainter::penDistance
float ___penDistance_9;
// ColorPicker ParticlePainter::colorPicker
ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * ___colorPicker_10;
// UnityEngine.ParticleSystem ParticlePainter::currentPS
ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * ___currentPS_11;
// UnityEngine.ParticleSystem_Particle[] ParticlePainter::particles
ParticleU5BU5D_tE146043E7340CCAD7275E144D4CCD028AF929513* ___particles_12;
// UnityEngine.Vector3 ParticlePainter::previousPosition
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___previousPosition_13;
// System.Collections.Generic.List`1<UnityEngine.Vector3> ParticlePainter::currentPaintVertices
List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5 * ___currentPaintVertices_14;
// UnityEngine.Color ParticlePainter::currentColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___currentColor_15;
// System.Collections.Generic.List`1<UnityEngine.ParticleSystem> ParticlePainter::paintSystems
List_1_t5473FC22455A3A3E64CE9BCA290D843D81D315C5 * ___paintSystems_16;
// System.Int32 ParticlePainter::paintMode
int32_t ___paintMode_17;
public:
inline static int32_t get_offset_of_painterParticlePrefab_4() { return static_cast<int32_t>(offsetof(ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8, ___painterParticlePrefab_4)); }
inline ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * get_painterParticlePrefab_4() const { return ___painterParticlePrefab_4; }
inline ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D ** get_address_of_painterParticlePrefab_4() { return &___painterParticlePrefab_4; }
inline void set_painterParticlePrefab_4(ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * value)
{
___painterParticlePrefab_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___painterParticlePrefab_4), (void*)value);
}
inline static int32_t get_offset_of_minDistanceThreshold_5() { return static_cast<int32_t>(offsetof(ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8, ___minDistanceThreshold_5)); }
inline float get_minDistanceThreshold_5() const { return ___minDistanceThreshold_5; }
inline float* get_address_of_minDistanceThreshold_5() { return &___minDistanceThreshold_5; }
inline void set_minDistanceThreshold_5(float value)
{
___minDistanceThreshold_5 = value;
}
inline static int32_t get_offset_of_maxDistanceThreshold_6() { return static_cast<int32_t>(offsetof(ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8, ___maxDistanceThreshold_6)); }
inline float get_maxDistanceThreshold_6() const { return ___maxDistanceThreshold_6; }
inline float* get_address_of_maxDistanceThreshold_6() { return &___maxDistanceThreshold_6; }
inline void set_maxDistanceThreshold_6(float value)
{
___maxDistanceThreshold_6 = value;
}
inline static int32_t get_offset_of_frameUpdated_7() { return static_cast<int32_t>(offsetof(ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8, ___frameUpdated_7)); }
inline bool get_frameUpdated_7() const { return ___frameUpdated_7; }
inline bool* get_address_of_frameUpdated_7() { return &___frameUpdated_7; }
inline void set_frameUpdated_7(bool value)
{
___frameUpdated_7 = value;
}
inline static int32_t get_offset_of_particleSize_8() { return static_cast<int32_t>(offsetof(ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8, ___particleSize_8)); }
inline float get_particleSize_8() const { return ___particleSize_8; }
inline float* get_address_of_particleSize_8() { return &___particleSize_8; }
inline void set_particleSize_8(float value)
{
___particleSize_8 = value;
}
inline static int32_t get_offset_of_penDistance_9() { return static_cast<int32_t>(offsetof(ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8, ___penDistance_9)); }
inline float get_penDistance_9() const { return ___penDistance_9; }
inline float* get_address_of_penDistance_9() { return &___penDistance_9; }
inline void set_penDistance_9(float value)
{
___penDistance_9 = value;
}
inline static int32_t get_offset_of_colorPicker_10() { return static_cast<int32_t>(offsetof(ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8, ___colorPicker_10)); }
inline ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * get_colorPicker_10() const { return ___colorPicker_10; }
inline ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 ** get_address_of_colorPicker_10() { return &___colorPicker_10; }
inline void set_colorPicker_10(ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * value)
{
___colorPicker_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___colorPicker_10), (void*)value);
}
inline static int32_t get_offset_of_currentPS_11() { return static_cast<int32_t>(offsetof(ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8, ___currentPS_11)); }
inline ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * get_currentPS_11() const { return ___currentPS_11; }
inline ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D ** get_address_of_currentPS_11() { return &___currentPS_11; }
inline void set_currentPS_11(ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * value)
{
___currentPS_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentPS_11), (void*)value);
}
inline static int32_t get_offset_of_particles_12() { return static_cast<int32_t>(offsetof(ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8, ___particles_12)); }
inline ParticleU5BU5D_tE146043E7340CCAD7275E144D4CCD028AF929513* get_particles_12() const { return ___particles_12; }
inline ParticleU5BU5D_tE146043E7340CCAD7275E144D4CCD028AF929513** get_address_of_particles_12() { return &___particles_12; }
inline void set_particles_12(ParticleU5BU5D_tE146043E7340CCAD7275E144D4CCD028AF929513* value)
{
___particles_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___particles_12), (void*)value);
}
inline static int32_t get_offset_of_previousPosition_13() { return static_cast<int32_t>(offsetof(ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8, ___previousPosition_13)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_previousPosition_13() const { return ___previousPosition_13; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_previousPosition_13() { return &___previousPosition_13; }
inline void set_previousPosition_13(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___previousPosition_13 = value;
}
inline static int32_t get_offset_of_currentPaintVertices_14() { return static_cast<int32_t>(offsetof(ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8, ___currentPaintVertices_14)); }
inline List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5 * get_currentPaintVertices_14() const { return ___currentPaintVertices_14; }
inline List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5 ** get_address_of_currentPaintVertices_14() { return &___currentPaintVertices_14; }
inline void set_currentPaintVertices_14(List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5 * value)
{
___currentPaintVertices_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentPaintVertices_14), (void*)value);
}
inline static int32_t get_offset_of_currentColor_15() { return static_cast<int32_t>(offsetof(ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8, ___currentColor_15)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_currentColor_15() const { return ___currentColor_15; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_currentColor_15() { return &___currentColor_15; }
inline void set_currentColor_15(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___currentColor_15 = value;
}
inline static int32_t get_offset_of_paintSystems_16() { return static_cast<int32_t>(offsetof(ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8, ___paintSystems_16)); }
inline List_1_t5473FC22455A3A3E64CE9BCA290D843D81D315C5 * get_paintSystems_16() const { return ___paintSystems_16; }
inline List_1_t5473FC22455A3A3E64CE9BCA290D843D81D315C5 ** get_address_of_paintSystems_16() { return &___paintSystems_16; }
inline void set_paintSystems_16(List_1_t5473FC22455A3A3E64CE9BCA290D843D81D315C5 * value)
{
___paintSystems_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___paintSystems_16), (void*)value);
}
inline static int32_t get_offset_of_paintMode_17() { return static_cast<int32_t>(offsetof(ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8, ___paintMode_17)); }
inline int32_t get_paintMode_17() const { return ___paintMode_17; }
inline int32_t* get_address_of_paintMode_17() { return &___paintMode_17; }
inline void set_paintMode_17(int32_t value)
{
___paintMode_17 = value;
}
};
// PointCloudIdsExample
struct PointCloudIdsExample_t2401E140E9DF16F80EA897C3A777476C317DB247 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// System.Boolean PointCloudIdsExample::frameUpdated
bool ___frameUpdated_4;
// System.UInt64[] PointCloudIdsExample::m_PointCloudIdentifiers
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___m_PointCloudIdentifiers_5;
// System.Collections.Generic.HashSet`1<System.UInt64> PointCloudIdsExample::m_IdentifiersSeenSoFar
HashSet_1_t1BE5AE2779D5D27A21A91688ABD03C305849A7E0 * ___m_IdentifiersSeenSoFar_6;
// System.Int32 PointCloudIdsExample::m_ExistingIdsSeen
int32_t ___m_ExistingIdsSeen_7;
public:
inline static int32_t get_offset_of_frameUpdated_4() { return static_cast<int32_t>(offsetof(PointCloudIdsExample_t2401E140E9DF16F80EA897C3A777476C317DB247, ___frameUpdated_4)); }
inline bool get_frameUpdated_4() const { return ___frameUpdated_4; }
inline bool* get_address_of_frameUpdated_4() { return &___frameUpdated_4; }
inline void set_frameUpdated_4(bool value)
{
___frameUpdated_4 = value;
}
inline static int32_t get_offset_of_m_PointCloudIdentifiers_5() { return static_cast<int32_t>(offsetof(PointCloudIdsExample_t2401E140E9DF16F80EA897C3A777476C317DB247, ___m_PointCloudIdentifiers_5)); }
inline UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* get_m_PointCloudIdentifiers_5() const { return ___m_PointCloudIdentifiers_5; }
inline UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4** get_address_of_m_PointCloudIdentifiers_5() { return &___m_PointCloudIdentifiers_5; }
inline void set_m_PointCloudIdentifiers_5(UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* value)
{
___m_PointCloudIdentifiers_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PointCloudIdentifiers_5), (void*)value);
}
inline static int32_t get_offset_of_m_IdentifiersSeenSoFar_6() { return static_cast<int32_t>(offsetof(PointCloudIdsExample_t2401E140E9DF16F80EA897C3A777476C317DB247, ___m_IdentifiersSeenSoFar_6)); }
inline HashSet_1_t1BE5AE2779D5D27A21A91688ABD03C305849A7E0 * get_m_IdentifiersSeenSoFar_6() const { return ___m_IdentifiersSeenSoFar_6; }
inline HashSet_1_t1BE5AE2779D5D27A21A91688ABD03C305849A7E0 ** get_address_of_m_IdentifiersSeenSoFar_6() { return &___m_IdentifiersSeenSoFar_6; }
inline void set_m_IdentifiersSeenSoFar_6(HashSet_1_t1BE5AE2779D5D27A21A91688ABD03C305849A7E0 * value)
{
___m_IdentifiersSeenSoFar_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_IdentifiersSeenSoFar_6), (void*)value);
}
inline static int32_t get_offset_of_m_ExistingIdsSeen_7() { return static_cast<int32_t>(offsetof(PointCloudIdsExample_t2401E140E9DF16F80EA897C3A777476C317DB247, ___m_ExistingIdsSeen_7)); }
inline int32_t get_m_ExistingIdsSeen_7() const { return ___m_ExistingIdsSeen_7; }
inline int32_t* get_address_of_m_ExistingIdsSeen_7() { return &___m_ExistingIdsSeen_7; }
inline void set_m_ExistingIdsSeen_7(int32_t value)
{
___m_ExistingIdsSeen_7 = value;
}
};
// PointCloudParticleExample
struct PointCloudParticleExample_t3855DEE2C4FAF81FA644A23E5145312CB571DC5B : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.ParticleSystem PointCloudParticleExample::pointCloudParticlePrefab
ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * ___pointCloudParticlePrefab_4;
// System.Int32 PointCloudParticleExample::maxPointsToShow
int32_t ___maxPointsToShow_5;
// System.Single PointCloudParticleExample::particleSize
float ___particleSize_6;
// UnityEngine.Vector3[] PointCloudParticleExample::m_PointCloudData
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___m_PointCloudData_7;
// System.Boolean PointCloudParticleExample::frameUpdated
bool ___frameUpdated_8;
// UnityEngine.ParticleSystem PointCloudParticleExample::currentPS
ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * ___currentPS_9;
// UnityEngine.ParticleSystem_Particle[] PointCloudParticleExample::particles
ParticleU5BU5D_tE146043E7340CCAD7275E144D4CCD028AF929513* ___particles_10;
public:
inline static int32_t get_offset_of_pointCloudParticlePrefab_4() { return static_cast<int32_t>(offsetof(PointCloudParticleExample_t3855DEE2C4FAF81FA644A23E5145312CB571DC5B, ___pointCloudParticlePrefab_4)); }
inline ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * get_pointCloudParticlePrefab_4() const { return ___pointCloudParticlePrefab_4; }
inline ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D ** get_address_of_pointCloudParticlePrefab_4() { return &___pointCloudParticlePrefab_4; }
inline void set_pointCloudParticlePrefab_4(ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * value)
{
___pointCloudParticlePrefab_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___pointCloudParticlePrefab_4), (void*)value);
}
inline static int32_t get_offset_of_maxPointsToShow_5() { return static_cast<int32_t>(offsetof(PointCloudParticleExample_t3855DEE2C4FAF81FA644A23E5145312CB571DC5B, ___maxPointsToShow_5)); }
inline int32_t get_maxPointsToShow_5() const { return ___maxPointsToShow_5; }
inline int32_t* get_address_of_maxPointsToShow_5() { return &___maxPointsToShow_5; }
inline void set_maxPointsToShow_5(int32_t value)
{
___maxPointsToShow_5 = value;
}
inline static int32_t get_offset_of_particleSize_6() { return static_cast<int32_t>(offsetof(PointCloudParticleExample_t3855DEE2C4FAF81FA644A23E5145312CB571DC5B, ___particleSize_6)); }
inline float get_particleSize_6() const { return ___particleSize_6; }
inline float* get_address_of_particleSize_6() { return &___particleSize_6; }
inline void set_particleSize_6(float value)
{
___particleSize_6 = value;
}
inline static int32_t get_offset_of_m_PointCloudData_7() { return static_cast<int32_t>(offsetof(PointCloudParticleExample_t3855DEE2C4FAF81FA644A23E5145312CB571DC5B, ___m_PointCloudData_7)); }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get_m_PointCloudData_7() const { return ___m_PointCloudData_7; }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of_m_PointCloudData_7() { return &___m_PointCloudData_7; }
inline void set_m_PointCloudData_7(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value)
{
___m_PointCloudData_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PointCloudData_7), (void*)value);
}
inline static int32_t get_offset_of_frameUpdated_8() { return static_cast<int32_t>(offsetof(PointCloudParticleExample_t3855DEE2C4FAF81FA644A23E5145312CB571DC5B, ___frameUpdated_8)); }
inline bool get_frameUpdated_8() const { return ___frameUpdated_8; }
inline bool* get_address_of_frameUpdated_8() { return &___frameUpdated_8; }
inline void set_frameUpdated_8(bool value)
{
___frameUpdated_8 = value;
}
inline static int32_t get_offset_of_currentPS_9() { return static_cast<int32_t>(offsetof(PointCloudParticleExample_t3855DEE2C4FAF81FA644A23E5145312CB571DC5B, ___currentPS_9)); }
inline ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * get_currentPS_9() const { return ___currentPS_9; }
inline ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D ** get_address_of_currentPS_9() { return &___currentPS_9; }
inline void set_currentPS_9(ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * value)
{
___currentPS_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentPS_9), (void*)value);
}
inline static int32_t get_offset_of_particles_10() { return static_cast<int32_t>(offsetof(PointCloudParticleExample_t3855DEE2C4FAF81FA644A23E5145312CB571DC5B, ___particles_10)); }
inline ParticleU5BU5D_tE146043E7340CCAD7275E144D4CCD028AF929513* get_particles_10() const { return ___particles_10; }
inline ParticleU5BU5D_tE146043E7340CCAD7275E144D4CCD028AF929513** get_address_of_particles_10() { return &___particles_10; }
inline void set_particles_10(ParticleU5BU5D_tE146043E7340CCAD7275E144D4CCD028AF929513* value)
{
___particles_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___particles_10), (void*)value);
}
};
// ReflectionProbeGameObject
struct ReflectionProbeGameObject_tD75E3FD28D072B9F8A906119378358A6538AB58C : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.ReflectionProbe ReflectionProbeGameObject::reflectionProbe
ReflectionProbe_t8CA59E05D8F20EDFE174BFF49CD3FB2DC62F207C * ___reflectionProbe_4;
// System.Boolean ReflectionProbeGameObject::latchUpdate
bool ___latchUpdate_5;
// UnityEngine.Cubemap ReflectionProbeGameObject::latchedTexture
Cubemap_tBFAC336F35E8D7499397F07A41505BD98F4491AF * ___latchedTexture_6;
// UnityEngine.GameObject ReflectionProbeGameObject::debugExtentGO
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___debugExtentGO_7;
public:
inline static int32_t get_offset_of_reflectionProbe_4() { return static_cast<int32_t>(offsetof(ReflectionProbeGameObject_tD75E3FD28D072B9F8A906119378358A6538AB58C, ___reflectionProbe_4)); }
inline ReflectionProbe_t8CA59E05D8F20EDFE174BFF49CD3FB2DC62F207C * get_reflectionProbe_4() const { return ___reflectionProbe_4; }
inline ReflectionProbe_t8CA59E05D8F20EDFE174BFF49CD3FB2DC62F207C ** get_address_of_reflectionProbe_4() { return &___reflectionProbe_4; }
inline void set_reflectionProbe_4(ReflectionProbe_t8CA59E05D8F20EDFE174BFF49CD3FB2DC62F207C * value)
{
___reflectionProbe_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___reflectionProbe_4), (void*)value);
}
inline static int32_t get_offset_of_latchUpdate_5() { return static_cast<int32_t>(offsetof(ReflectionProbeGameObject_tD75E3FD28D072B9F8A906119378358A6538AB58C, ___latchUpdate_5)); }
inline bool get_latchUpdate_5() const { return ___latchUpdate_5; }
inline bool* get_address_of_latchUpdate_5() { return &___latchUpdate_5; }
inline void set_latchUpdate_5(bool value)
{
___latchUpdate_5 = value;
}
inline static int32_t get_offset_of_latchedTexture_6() { return static_cast<int32_t>(offsetof(ReflectionProbeGameObject_tD75E3FD28D072B9F8A906119378358A6538AB58C, ___latchedTexture_6)); }
inline Cubemap_tBFAC336F35E8D7499397F07A41505BD98F4491AF * get_latchedTexture_6() const { return ___latchedTexture_6; }
inline Cubemap_tBFAC336F35E8D7499397F07A41505BD98F4491AF ** get_address_of_latchedTexture_6() { return &___latchedTexture_6; }
inline void set_latchedTexture_6(Cubemap_tBFAC336F35E8D7499397F07A41505BD98F4491AF * value)
{
___latchedTexture_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___latchedTexture_6), (void*)value);
}
inline static int32_t get_offset_of_debugExtentGO_7() { return static_cast<int32_t>(offsetof(ReflectionProbeGameObject_tD75E3FD28D072B9F8A906119378358A6538AB58C, ___debugExtentGO_7)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_debugExtentGO_7() const { return ___debugExtentGO_7; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_debugExtentGO_7() { return &___debugExtentGO_7; }
inline void set_debugExtentGO_7(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___debugExtentGO_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___debugExtentGO_7), (void*)value);
}
};
// RelocalizationControl
struct RelocalizationControl_tE4C8E6C63F558C2D2836065A702EFB37F3B51CAF : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.UI.Text RelocalizationControl::buttonText
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___buttonText_4;
// UnityEngine.UI.Text RelocalizationControl::trackingStateText
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___trackingStateText_5;
// UnityEngine.UI.Text RelocalizationControl::trackingReasonText
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___trackingReasonText_6;
public:
inline static int32_t get_offset_of_buttonText_4() { return static_cast<int32_t>(offsetof(RelocalizationControl_tE4C8E6C63F558C2D2836065A702EFB37F3B51CAF, ___buttonText_4)); }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * get_buttonText_4() const { return ___buttonText_4; }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 ** get_address_of_buttonText_4() { return &___buttonText_4; }
inline void set_buttonText_4(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * value)
{
___buttonText_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buttonText_4), (void*)value);
}
inline static int32_t get_offset_of_trackingStateText_5() { return static_cast<int32_t>(offsetof(RelocalizationControl_tE4C8E6C63F558C2D2836065A702EFB37F3B51CAF, ___trackingStateText_5)); }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * get_trackingStateText_5() const { return ___trackingStateText_5; }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 ** get_address_of_trackingStateText_5() { return &___trackingStateText_5; }
inline void set_trackingStateText_5(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * value)
{
___trackingStateText_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___trackingStateText_5), (void*)value);
}
inline static int32_t get_offset_of_trackingReasonText_6() { return static_cast<int32_t>(offsetof(RelocalizationControl_tE4C8E6C63F558C2D2836065A702EFB37F3B51CAF, ___trackingReasonText_6)); }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * get_trackingReasonText_6() const { return ___trackingReasonText_6; }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 ** get_address_of_trackingReasonText_6() { return &___trackingReasonText_6; }
inline void set_trackingReasonText_6(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * value)
{
___trackingReasonText_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___trackingReasonText_6), (void*)value);
}
};
// SVBoxSlider
struct SVBoxSlider_tCDDB27E02B8910DF81B2D1673EE6E0DF0EFA5260 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// ColorPicker SVBoxSlider::picker
ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * ___picker_4;
// UnityEngine.UI.BoxSlider SVBoxSlider::slider
BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A * ___slider_5;
// UnityEngine.UI.RawImage SVBoxSlider::image
RawImage_t68991514DB8F48442D614E7904A298C936B3C7C8 * ___image_6;
// System.Single SVBoxSlider::lastH
float ___lastH_7;
// System.Boolean SVBoxSlider::listen
bool ___listen_8;
public:
inline static int32_t get_offset_of_picker_4() { return static_cast<int32_t>(offsetof(SVBoxSlider_tCDDB27E02B8910DF81B2D1673EE6E0DF0EFA5260, ___picker_4)); }
inline ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * get_picker_4() const { return ___picker_4; }
inline ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 ** get_address_of_picker_4() { return &___picker_4; }
inline void set_picker_4(ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83 * value)
{
___picker_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___picker_4), (void*)value);
}
inline static int32_t get_offset_of_slider_5() { return static_cast<int32_t>(offsetof(SVBoxSlider_tCDDB27E02B8910DF81B2D1673EE6E0DF0EFA5260, ___slider_5)); }
inline BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A * get_slider_5() const { return ___slider_5; }
inline BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A ** get_address_of_slider_5() { return &___slider_5; }
inline void set_slider_5(BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A * value)
{
___slider_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___slider_5), (void*)value);
}
inline static int32_t get_offset_of_image_6() { return static_cast<int32_t>(offsetof(SVBoxSlider_tCDDB27E02B8910DF81B2D1673EE6E0DF0EFA5260, ___image_6)); }
inline RawImage_t68991514DB8F48442D614E7904A298C936B3C7C8 * get_image_6() const { return ___image_6; }
inline RawImage_t68991514DB8F48442D614E7904A298C936B3C7C8 ** get_address_of_image_6() { return &___image_6; }
inline void set_image_6(RawImage_t68991514DB8F48442D614E7904A298C936B3C7C8 * value)
{
___image_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___image_6), (void*)value);
}
inline static int32_t get_offset_of_lastH_7() { return static_cast<int32_t>(offsetof(SVBoxSlider_tCDDB27E02B8910DF81B2D1673EE6E0DF0EFA5260, ___lastH_7)); }
inline float get_lastH_7() const { return ___lastH_7; }
inline float* get_address_of_lastH_7() { return &___lastH_7; }
inline void set_lastH_7(float value)
{
___lastH_7 = value;
}
inline static int32_t get_offset_of_listen_8() { return static_cast<int32_t>(offsetof(SVBoxSlider_tCDDB27E02B8910DF81B2D1673EE6E0DF0EFA5260, ___listen_8)); }
inline bool get_listen_8() const { return ___listen_8; }
inline bool* get_address_of_listen_8() { return &___listen_8; }
inline void set_listen_8(bool value)
{
___listen_8 = value;
}
};
// SetWorldOriginControl
struct SetWorldOriginControl_tEE1230C376B9AC6868E77308291FA137E6943EE1 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.Camera SetWorldOriginControl::arCamera
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___arCamera_4;
// UnityEngine.UI.Text SetWorldOriginControl::positionText
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___positionText_5;
// UnityEngine.UI.Text SetWorldOriginControl::rotationText
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___rotationText_6;
public:
inline static int32_t get_offset_of_arCamera_4() { return static_cast<int32_t>(offsetof(SetWorldOriginControl_tEE1230C376B9AC6868E77308291FA137E6943EE1, ___arCamera_4)); }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * get_arCamera_4() const { return ___arCamera_4; }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 ** get_address_of_arCamera_4() { return &___arCamera_4; }
inline void set_arCamera_4(Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * value)
{
___arCamera_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___arCamera_4), (void*)value);
}
inline static int32_t get_offset_of_positionText_5() { return static_cast<int32_t>(offsetof(SetWorldOriginControl_tEE1230C376B9AC6868E77308291FA137E6943EE1, ___positionText_5)); }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * get_positionText_5() const { return ___positionText_5; }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 ** get_address_of_positionText_5() { return &___positionText_5; }
inline void set_positionText_5(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * value)
{
___positionText_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___positionText_5), (void*)value);
}
inline static int32_t get_offset_of_rotationText_6() { return static_cast<int32_t>(offsetof(SetWorldOriginControl_tEE1230C376B9AC6868E77308291FA137E6943EE1, ___rotationText_6)); }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * get_rotationText_6() const { return ___rotationText_6; }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 ** get_address_of_rotationText_6() { return &___rotationText_6; }
inline void set_rotationText_6(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * value)
{
___rotationText_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___rotationText_6), (void*)value);
}
};
// TiltWindow
struct TiltWindow_tAC72B5374606BDDBC331E4E7BFE57DBF84AFD4D4 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.Vector2 TiltWindow::range
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___range_4;
// UnityEngine.Transform TiltWindow::mTrans
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___mTrans_5;
// UnityEngine.Quaternion TiltWindow::mStart
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___mStart_6;
// UnityEngine.Vector2 TiltWindow::mRot
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___mRot_7;
public:
inline static int32_t get_offset_of_range_4() { return static_cast<int32_t>(offsetof(TiltWindow_tAC72B5374606BDDBC331E4E7BFE57DBF84AFD4D4, ___range_4)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_range_4() const { return ___range_4; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_range_4() { return &___range_4; }
inline void set_range_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___range_4 = value;
}
inline static int32_t get_offset_of_mTrans_5() { return static_cast<int32_t>(offsetof(TiltWindow_tAC72B5374606BDDBC331E4E7BFE57DBF84AFD4D4, ___mTrans_5)); }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_mTrans_5() const { return ___mTrans_5; }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_mTrans_5() { return &___mTrans_5; }
inline void set_mTrans_5(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value)
{
___mTrans_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___mTrans_5), (void*)value);
}
inline static int32_t get_offset_of_mStart_6() { return static_cast<int32_t>(offsetof(TiltWindow_tAC72B5374606BDDBC331E4E7BFE57DBF84AFD4D4, ___mStart_6)); }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_mStart_6() const { return ___mStart_6; }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_mStart_6() { return &___mStart_6; }
inline void set_mStart_6(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value)
{
___mStart_6 = value;
}
inline static int32_t get_offset_of_mRot_7() { return static_cast<int32_t>(offsetof(TiltWindow_tAC72B5374606BDDBC331E4E7BFE57DBF84AFD4D4, ___mRot_7)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_mRot_7() const { return ___mRot_7; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_mRot_7() { return &___mRot_7; }
inline void set_mRot_7(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___mRot_7 = value;
}
};
// TongueDetector
struct TongueDetector_t07077E975F972DB0444C238DD1F3CBCDF6F0EAFB : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.GameObject TongueDetector::tongueImage
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___tongueImage_4;
// System.Boolean TongueDetector::shapeEnabled
bool ___shapeEnabled_5;
// System.Collections.Generic.Dictionary`2<System.String,System.Single> TongueDetector::currentBlendShapes
Dictionary_2_t89F484A77FD6673A172CE80BD0A37031FBD1FD6A * ___currentBlendShapes_6;
public:
inline static int32_t get_offset_of_tongueImage_4() { return static_cast<int32_t>(offsetof(TongueDetector_t07077E975F972DB0444C238DD1F3CBCDF6F0EAFB, ___tongueImage_4)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_tongueImage_4() const { return ___tongueImage_4; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_tongueImage_4() { return &___tongueImage_4; }
inline void set_tongueImage_4(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___tongueImage_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___tongueImage_4), (void*)value);
}
inline static int32_t get_offset_of_shapeEnabled_5() { return static_cast<int32_t>(offsetof(TongueDetector_t07077E975F972DB0444C238DD1F3CBCDF6F0EAFB, ___shapeEnabled_5)); }
inline bool get_shapeEnabled_5() const { return ___shapeEnabled_5; }
inline bool* get_address_of_shapeEnabled_5() { return &___shapeEnabled_5; }
inline void set_shapeEnabled_5(bool value)
{
___shapeEnabled_5 = value;
}
inline static int32_t get_offset_of_currentBlendShapes_6() { return static_cast<int32_t>(offsetof(TongueDetector_t07077E975F972DB0444C238DD1F3CBCDF6F0EAFB, ___currentBlendShapes_6)); }
inline Dictionary_2_t89F484A77FD6673A172CE80BD0A37031FBD1FD6A * get_currentBlendShapes_6() const { return ___currentBlendShapes_6; }
inline Dictionary_2_t89F484A77FD6673A172CE80BD0A37031FBD1FD6A ** get_address_of_currentBlendShapes_6() { return &___currentBlendShapes_6; }
inline void set_currentBlendShapes_6(Dictionary_2_t89F484A77FD6673A172CE80BD0A37031FBD1FD6A * value)
{
___currentBlendShapes_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentBlendShapes_6), (void*)value);
}
};
// UnityARCameraManager
struct UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.Camera UnityARCameraManager::m_camera
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___m_camera_4;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface UnityARCameraManager::m_session
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * ___m_session_5;
// UnityEngine.Material UnityARCameraManager::savedClearMaterial
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___savedClearMaterial_6;
// UnityEngine.XR.iOS.UnityARAlignment UnityARCameraManager::startAlignment
int32_t ___startAlignment_7;
// UnityEngine.XR.iOS.UnityARPlaneDetection UnityARCameraManager::planeDetection
int32_t ___planeDetection_8;
// System.Boolean UnityARCameraManager::getPointCloud
bool ___getPointCloud_9;
// System.Boolean UnityARCameraManager::enableLightEstimation
bool ___enableLightEstimation_10;
// System.Boolean UnityARCameraManager::enableAutoFocus
bool ___enableAutoFocus_11;
// UnityEngine.XR.iOS.UnityAREnvironmentTexturing UnityARCameraManager::environmentTexturing
int32_t ___environmentTexturing_12;
// ARReferenceImagesSet UnityARCameraManager::detectionImages
ARReferenceImagesSet_tE637611976378C4D1057CE06DD14F87EB52174E0 * ___detectionImages_13;
// System.Int32 UnityARCameraManager::maximumNumberOfTrackedImages
int32_t ___maximumNumberOfTrackedImages_14;
// ARReferenceObjectsSetAsset UnityARCameraManager::detectionObjects
ARReferenceObjectsSetAsset_t0CF5B17AAFFE42A9741BCD5431117FDD025D334E * ___detectionObjects_15;
// System.Boolean UnityARCameraManager::sessionStarted
bool ___sessionStarted_16;
public:
inline static int32_t get_offset_of_m_camera_4() { return static_cast<int32_t>(offsetof(UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51, ___m_camera_4)); }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * get_m_camera_4() const { return ___m_camera_4; }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 ** get_address_of_m_camera_4() { return &___m_camera_4; }
inline void set_m_camera_4(Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * value)
{
___m_camera_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_camera_4), (void*)value);
}
inline static int32_t get_offset_of_m_session_5() { return static_cast<int32_t>(offsetof(UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51, ___m_session_5)); }
inline UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * get_m_session_5() const { return ___m_session_5; }
inline UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 ** get_address_of_m_session_5() { return &___m_session_5; }
inline void set_m_session_5(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * value)
{
___m_session_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_session_5), (void*)value);
}
inline static int32_t get_offset_of_savedClearMaterial_6() { return static_cast<int32_t>(offsetof(UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51, ___savedClearMaterial_6)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_savedClearMaterial_6() const { return ___savedClearMaterial_6; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_savedClearMaterial_6() { return &___savedClearMaterial_6; }
inline void set_savedClearMaterial_6(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___savedClearMaterial_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___savedClearMaterial_6), (void*)value);
}
inline static int32_t get_offset_of_startAlignment_7() { return static_cast<int32_t>(offsetof(UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51, ___startAlignment_7)); }
inline int32_t get_startAlignment_7() const { return ___startAlignment_7; }
inline int32_t* get_address_of_startAlignment_7() { return &___startAlignment_7; }
inline void set_startAlignment_7(int32_t value)
{
___startAlignment_7 = value;
}
inline static int32_t get_offset_of_planeDetection_8() { return static_cast<int32_t>(offsetof(UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51, ___planeDetection_8)); }
inline int32_t get_planeDetection_8() const { return ___planeDetection_8; }
inline int32_t* get_address_of_planeDetection_8() { return &___planeDetection_8; }
inline void set_planeDetection_8(int32_t value)
{
___planeDetection_8 = value;
}
inline static int32_t get_offset_of_getPointCloud_9() { return static_cast<int32_t>(offsetof(UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51, ___getPointCloud_9)); }
inline bool get_getPointCloud_9() const { return ___getPointCloud_9; }
inline bool* get_address_of_getPointCloud_9() { return &___getPointCloud_9; }
inline void set_getPointCloud_9(bool value)
{
___getPointCloud_9 = value;
}
inline static int32_t get_offset_of_enableLightEstimation_10() { return static_cast<int32_t>(offsetof(UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51, ___enableLightEstimation_10)); }
inline bool get_enableLightEstimation_10() const { return ___enableLightEstimation_10; }
inline bool* get_address_of_enableLightEstimation_10() { return &___enableLightEstimation_10; }
inline void set_enableLightEstimation_10(bool value)
{
___enableLightEstimation_10 = value;
}
inline static int32_t get_offset_of_enableAutoFocus_11() { return static_cast<int32_t>(offsetof(UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51, ___enableAutoFocus_11)); }
inline bool get_enableAutoFocus_11() const { return ___enableAutoFocus_11; }
inline bool* get_address_of_enableAutoFocus_11() { return &___enableAutoFocus_11; }
inline void set_enableAutoFocus_11(bool value)
{
___enableAutoFocus_11 = value;
}
inline static int32_t get_offset_of_environmentTexturing_12() { return static_cast<int32_t>(offsetof(UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51, ___environmentTexturing_12)); }
inline int32_t get_environmentTexturing_12() const { return ___environmentTexturing_12; }
inline int32_t* get_address_of_environmentTexturing_12() { return &___environmentTexturing_12; }
inline void set_environmentTexturing_12(int32_t value)
{
___environmentTexturing_12 = value;
}
inline static int32_t get_offset_of_detectionImages_13() { return static_cast<int32_t>(offsetof(UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51, ___detectionImages_13)); }
inline ARReferenceImagesSet_tE637611976378C4D1057CE06DD14F87EB52174E0 * get_detectionImages_13() const { return ___detectionImages_13; }
inline ARReferenceImagesSet_tE637611976378C4D1057CE06DD14F87EB52174E0 ** get_address_of_detectionImages_13() { return &___detectionImages_13; }
inline void set_detectionImages_13(ARReferenceImagesSet_tE637611976378C4D1057CE06DD14F87EB52174E0 * value)
{
___detectionImages_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___detectionImages_13), (void*)value);
}
inline static int32_t get_offset_of_maximumNumberOfTrackedImages_14() { return static_cast<int32_t>(offsetof(UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51, ___maximumNumberOfTrackedImages_14)); }
inline int32_t get_maximumNumberOfTrackedImages_14() const { return ___maximumNumberOfTrackedImages_14; }
inline int32_t* get_address_of_maximumNumberOfTrackedImages_14() { return &___maximumNumberOfTrackedImages_14; }
inline void set_maximumNumberOfTrackedImages_14(int32_t value)
{
___maximumNumberOfTrackedImages_14 = value;
}
inline static int32_t get_offset_of_detectionObjects_15() { return static_cast<int32_t>(offsetof(UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51, ___detectionObjects_15)); }
inline ARReferenceObjectsSetAsset_t0CF5B17AAFFE42A9741BCD5431117FDD025D334E * get_detectionObjects_15() const { return ___detectionObjects_15; }
inline ARReferenceObjectsSetAsset_t0CF5B17AAFFE42A9741BCD5431117FDD025D334E ** get_address_of_detectionObjects_15() { return &___detectionObjects_15; }
inline void set_detectionObjects_15(ARReferenceObjectsSetAsset_t0CF5B17AAFFE42A9741BCD5431117FDD025D334E * value)
{
___detectionObjects_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___detectionObjects_15), (void*)value);
}
inline static int32_t get_offset_of_sessionStarted_16() { return static_cast<int32_t>(offsetof(UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51, ___sessionStarted_16)); }
inline bool get_sessionStarted_16() const { return ___sessionStarted_16; }
inline bool* get_address_of_sessionStarted_16() { return &___sessionStarted_16; }
inline void set_sessionStarted_16(bool value)
{
___sessionStarted_16 = value;
}
};
// UnityARCameraNearFar
struct UnityARCameraNearFar_t36A16944DBC0AEFD79F0238436594087B013A924 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.Camera UnityARCameraNearFar::attachedCamera
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___attachedCamera_4;
// System.Single UnityARCameraNearFar::currentNearZ
float ___currentNearZ_5;
// System.Single UnityARCameraNearFar::currentFarZ
float ___currentFarZ_6;
public:
inline static int32_t get_offset_of_attachedCamera_4() { return static_cast<int32_t>(offsetof(UnityARCameraNearFar_t36A16944DBC0AEFD79F0238436594087B013A924, ___attachedCamera_4)); }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * get_attachedCamera_4() const { return ___attachedCamera_4; }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 ** get_address_of_attachedCamera_4() { return &___attachedCamera_4; }
inline void set_attachedCamera_4(Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * value)
{
___attachedCamera_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___attachedCamera_4), (void*)value);
}
inline static int32_t get_offset_of_currentNearZ_5() { return static_cast<int32_t>(offsetof(UnityARCameraNearFar_t36A16944DBC0AEFD79F0238436594087B013A924, ___currentNearZ_5)); }
inline float get_currentNearZ_5() const { return ___currentNearZ_5; }
inline float* get_address_of_currentNearZ_5() { return &___currentNearZ_5; }
inline void set_currentNearZ_5(float value)
{
___currentNearZ_5 = value;
}
inline static int32_t get_offset_of_currentFarZ_6() { return static_cast<int32_t>(offsetof(UnityARCameraNearFar_t36A16944DBC0AEFD79F0238436594087B013A924, ___currentFarZ_6)); }
inline float get_currentFarZ_6() const { return ___currentFarZ_6; }
inline float* get_address_of_currentFarZ_6() { return &___currentFarZ_6; }
inline void set_currentFarZ_6(float value)
{
___currentFarZ_6 = value;
}
};
// UnityARFaceAnchorManager
struct UnityARFaceAnchorManager_t057DAF2641A27427E0435C212CFBD7E9342E1076 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.GameObject UnityARFaceAnchorManager::anchorPrefab
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___anchorPrefab_4;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface UnityARFaceAnchorManager::m_session
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * ___m_session_5;
public:
inline static int32_t get_offset_of_anchorPrefab_4() { return static_cast<int32_t>(offsetof(UnityARFaceAnchorManager_t057DAF2641A27427E0435C212CFBD7E9342E1076, ___anchorPrefab_4)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_anchorPrefab_4() const { return ___anchorPrefab_4; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_anchorPrefab_4() { return &___anchorPrefab_4; }
inline void set_anchorPrefab_4(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___anchorPrefab_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___anchorPrefab_4), (void*)value);
}
inline static int32_t get_offset_of_m_session_5() { return static_cast<int32_t>(offsetof(UnityARFaceAnchorManager_t057DAF2641A27427E0435C212CFBD7E9342E1076, ___m_session_5)); }
inline UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * get_m_session_5() const { return ___m_session_5; }
inline UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 ** get_address_of_m_session_5() { return &___m_session_5; }
inline void set_m_session_5(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * value)
{
___m_session_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_session_5), (void*)value);
}
};
// UnityARFaceMeshManager
struct UnityARFaceMeshManager_tBC7942032838F3403D88525E33C1B95863AE372D : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.MeshFilter UnityARFaceMeshManager::meshFilter
MeshFilter_t8D4BA8E8723DE5CFF53B0DA5EE2F6B3A5B0E0FE0 * ___meshFilter_4;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface UnityARFaceMeshManager::m_session
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * ___m_session_5;
// UnityEngine.Mesh UnityARFaceMeshManager::faceMesh
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___faceMesh_6;
public:
inline static int32_t get_offset_of_meshFilter_4() { return static_cast<int32_t>(offsetof(UnityARFaceMeshManager_tBC7942032838F3403D88525E33C1B95863AE372D, ___meshFilter_4)); }
inline MeshFilter_t8D4BA8E8723DE5CFF53B0DA5EE2F6B3A5B0E0FE0 * get_meshFilter_4() const { return ___meshFilter_4; }
inline MeshFilter_t8D4BA8E8723DE5CFF53B0DA5EE2F6B3A5B0E0FE0 ** get_address_of_meshFilter_4() { return &___meshFilter_4; }
inline void set_meshFilter_4(MeshFilter_t8D4BA8E8723DE5CFF53B0DA5EE2F6B3A5B0E0FE0 * value)
{
___meshFilter_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___meshFilter_4), (void*)value);
}
inline static int32_t get_offset_of_m_session_5() { return static_cast<int32_t>(offsetof(UnityARFaceMeshManager_tBC7942032838F3403D88525E33C1B95863AE372D, ___m_session_5)); }
inline UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * get_m_session_5() const { return ___m_session_5; }
inline UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 ** get_address_of_m_session_5() { return &___m_session_5; }
inline void set_m_session_5(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * value)
{
___m_session_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_session_5), (void*)value);
}
inline static int32_t get_offset_of_faceMesh_6() { return static_cast<int32_t>(offsetof(UnityARFaceMeshManager_tBC7942032838F3403D88525E33C1B95863AE372D, ___faceMesh_6)); }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * get_faceMesh_6() const { return ___faceMesh_6; }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C ** get_address_of_faceMesh_6() { return &___faceMesh_6; }
inline void set_faceMesh_6(Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * value)
{
___faceMesh_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___faceMesh_6), (void*)value);
}
};
// UnityARKitLightManager
struct UnityARKitLightManager_t0BD96F94177CD7C880F29E532107434146A99452 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.Light[] UnityARKitLightManager::lightsInScene
LightU5BU5D_t0127F29C5C02312DE2DDA721E3AF8CE925297D45* ___lightsInScene_4;
// UnityEngine.Rendering.SphericalHarmonicsL2 UnityARKitLightManager::shl
SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E ___shl_5;
public:
inline static int32_t get_offset_of_lightsInScene_4() { return static_cast<int32_t>(offsetof(UnityARKitLightManager_t0BD96F94177CD7C880F29E532107434146A99452, ___lightsInScene_4)); }
inline LightU5BU5D_t0127F29C5C02312DE2DDA721E3AF8CE925297D45* get_lightsInScene_4() const { return ___lightsInScene_4; }
inline LightU5BU5D_t0127F29C5C02312DE2DDA721E3AF8CE925297D45** get_address_of_lightsInScene_4() { return &___lightsInScene_4; }
inline void set_lightsInScene_4(LightU5BU5D_t0127F29C5C02312DE2DDA721E3AF8CE925297D45* value)
{
___lightsInScene_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___lightsInScene_4), (void*)value);
}
inline static int32_t get_offset_of_shl_5() { return static_cast<int32_t>(offsetof(UnityARKitLightManager_t0BD96F94177CD7C880F29E532107434146A99452, ___shl_5)); }
inline SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E get_shl_5() const { return ___shl_5; }
inline SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E * get_address_of_shl_5() { return &___shl_5; }
inline void set_shl_5(SphericalHarmonicsL2_tA22EDFD72975B5C4F204BE94097DB5ACE351F37E value)
{
___shl_5 = value;
}
};
// UnityARUserAnchorExample
struct UnityARUserAnchorExample_tA0ADFEE995056AD62918E948C7DED4850EECD70B : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.GameObject UnityARUserAnchorExample::prefabObject
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___prefabObject_4;
// System.Int32 UnityARUserAnchorExample::distanceFromCamera
int32_t ___distanceFromCamera_5;
// System.Collections.Generic.HashSet`1<System.String> UnityARUserAnchorExample::m_Clones
HashSet_1_t7ED30EEB5279B4F7B38D343D0AF490E2296ACF61 * ___m_Clones_6;
// System.Single UnityARUserAnchorExample::m_TimeUntilRemove
float ___m_TimeUntilRemove_7;
public:
inline static int32_t get_offset_of_prefabObject_4() { return static_cast<int32_t>(offsetof(UnityARUserAnchorExample_tA0ADFEE995056AD62918E948C7DED4850EECD70B, ___prefabObject_4)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_prefabObject_4() const { return ___prefabObject_4; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_prefabObject_4() { return &___prefabObject_4; }
inline void set_prefabObject_4(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___prefabObject_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___prefabObject_4), (void*)value);
}
inline static int32_t get_offset_of_distanceFromCamera_5() { return static_cast<int32_t>(offsetof(UnityARUserAnchorExample_tA0ADFEE995056AD62918E948C7DED4850EECD70B, ___distanceFromCamera_5)); }
inline int32_t get_distanceFromCamera_5() const { return ___distanceFromCamera_5; }
inline int32_t* get_address_of_distanceFromCamera_5() { return &___distanceFromCamera_5; }
inline void set_distanceFromCamera_5(int32_t value)
{
___distanceFromCamera_5 = value;
}
inline static int32_t get_offset_of_m_Clones_6() { return static_cast<int32_t>(offsetof(UnityARUserAnchorExample_tA0ADFEE995056AD62918E948C7DED4850EECD70B, ___m_Clones_6)); }
inline HashSet_1_t7ED30EEB5279B4F7B38D343D0AF490E2296ACF61 * get_m_Clones_6() const { return ___m_Clones_6; }
inline HashSet_1_t7ED30EEB5279B4F7B38D343D0AF490E2296ACF61 ** get_address_of_m_Clones_6() { return &___m_Clones_6; }
inline void set_m_Clones_6(HashSet_1_t7ED30EEB5279B4F7B38D343D0AF490E2296ACF61 * value)
{
___m_Clones_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Clones_6), (void*)value);
}
inline static int32_t get_offset_of_m_TimeUntilRemove_7() { return static_cast<int32_t>(offsetof(UnityARUserAnchorExample_tA0ADFEE995056AD62918E948C7DED4850EECD70B, ___m_TimeUntilRemove_7)); }
inline float get_m_TimeUntilRemove_7() const { return ___m_TimeUntilRemove_7; }
inline float* get_address_of_m_TimeUntilRemove_7() { return &___m_TimeUntilRemove_7; }
inline void set_m_TimeUntilRemove_7(float value)
{
___m_TimeUntilRemove_7 = value;
}
};
// UnityEngine.AudioListener
struct AudioListener_tE3E1467B84A4AFD509947B44A7C8ACFB67FF2099 : public AudioBehaviour_tC612EC4E17A648A5C568621F3FBF1DBD773C71C7
{
public:
public:
};
// UnityEngine.AudioSource
struct AudioSource_t5196F862B4E60F404613361C90D87FBDD041E93C : public AudioBehaviour_tC612EC4E17A648A5C568621F3FBF1DBD773C71C7
{
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.XR.iOS.ConnectToEditor
struct ConnectToEditor_t8AF91172E7A2EF41FB9994B997C7ADA97C0FF5B3 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.Networking.PlayerConnection.PlayerConnection UnityEngine.XR.iOS.ConnectToEditor::playerConnection
PlayerConnection_tFC3A80EAE06A41E9D3879144C86D87DE99EC56EA * ___playerConnection_4;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface UnityEngine.XR.iOS.ConnectToEditor::m_session
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * ___m_session_5;
// System.Int32 UnityEngine.XR.iOS.ConnectToEditor::editorID
int32_t ___editorID_6;
// UnityEngine.Texture2D UnityEngine.XR.iOS.ConnectToEditor::frameBufferTex
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___frameBufferTex_7;
public:
inline static int32_t get_offset_of_playerConnection_4() { return static_cast<int32_t>(offsetof(ConnectToEditor_t8AF91172E7A2EF41FB9994B997C7ADA97C0FF5B3, ___playerConnection_4)); }
inline PlayerConnection_tFC3A80EAE06A41E9D3879144C86D87DE99EC56EA * get_playerConnection_4() const { return ___playerConnection_4; }
inline PlayerConnection_tFC3A80EAE06A41E9D3879144C86D87DE99EC56EA ** get_address_of_playerConnection_4() { return &___playerConnection_4; }
inline void set_playerConnection_4(PlayerConnection_tFC3A80EAE06A41E9D3879144C86D87DE99EC56EA * value)
{
___playerConnection_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___playerConnection_4), (void*)value);
}
inline static int32_t get_offset_of_m_session_5() { return static_cast<int32_t>(offsetof(ConnectToEditor_t8AF91172E7A2EF41FB9994B997C7ADA97C0FF5B3, ___m_session_5)); }
inline UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * get_m_session_5() const { return ___m_session_5; }
inline UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 ** get_address_of_m_session_5() { return &___m_session_5; }
inline void set_m_session_5(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * value)
{
___m_session_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_session_5), (void*)value);
}
inline static int32_t get_offset_of_editorID_6() { return static_cast<int32_t>(offsetof(ConnectToEditor_t8AF91172E7A2EF41FB9994B997C7ADA97C0FF5B3, ___editorID_6)); }
inline int32_t get_editorID_6() const { return ___editorID_6; }
inline int32_t* get_address_of_editorID_6() { return &___editorID_6; }
inline void set_editorID_6(int32_t value)
{
___editorID_6 = value;
}
inline static int32_t get_offset_of_frameBufferTex_7() { return static_cast<int32_t>(offsetof(ConnectToEditor_t8AF91172E7A2EF41FB9994B997C7ADA97C0FF5B3, ___frameBufferTex_7)); }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * get_frameBufferTex_7() const { return ___frameBufferTex_7; }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C ** get_address_of_frameBufferTex_7() { return &___frameBufferTex_7; }
inline void set_frameBufferTex_7(Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * value)
{
___frameBufferTex_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___frameBufferTex_7), (void*)value);
}
};
// UnityEngine.XR.iOS.EditorHitTest
struct EditorHitTest_tD4965DAA6C96EC395614781A25515C37E7601EE7 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.Transform UnityEngine.XR.iOS.EditorHitTest::m_HitTransform
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___m_HitTransform_4;
// System.Single UnityEngine.XR.iOS.EditorHitTest::maxRayDistance
float ___maxRayDistance_5;
// UnityEngine.LayerMask UnityEngine.XR.iOS.EditorHitTest::collisionLayerMask
LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 ___collisionLayerMask_6;
public:
inline static int32_t get_offset_of_m_HitTransform_4() { return static_cast<int32_t>(offsetof(EditorHitTest_tD4965DAA6C96EC395614781A25515C37E7601EE7, ___m_HitTransform_4)); }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_m_HitTransform_4() const { return ___m_HitTransform_4; }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_m_HitTransform_4() { return &___m_HitTransform_4; }
inline void set_m_HitTransform_4(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value)
{
___m_HitTransform_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HitTransform_4), (void*)value);
}
inline static int32_t get_offset_of_maxRayDistance_5() { return static_cast<int32_t>(offsetof(EditorHitTest_tD4965DAA6C96EC395614781A25515C37E7601EE7, ___maxRayDistance_5)); }
inline float get_maxRayDistance_5() const { return ___maxRayDistance_5; }
inline float* get_address_of_maxRayDistance_5() { return &___maxRayDistance_5; }
inline void set_maxRayDistance_5(float value)
{
___maxRayDistance_5 = value;
}
inline static int32_t get_offset_of_collisionLayerMask_6() { return static_cast<int32_t>(offsetof(EditorHitTest_tD4965DAA6C96EC395614781A25515C37E7601EE7, ___collisionLayerMask_6)); }
inline LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 get_collisionLayerMask_6() const { return ___collisionLayerMask_6; }
inline LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 * get_address_of_collisionLayerMask_6() { return &___collisionLayerMask_6; }
inline void set_collisionLayerMask_6(LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 value)
{
___collisionLayerMask_6 = value;
}
};
// UnityEngine.XR.iOS.PickBoundingBox
struct PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.Transform UnityEngine.XR.iOS.PickBoundingBox::m_Top
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___m_Top_4;
// UnityEngine.Transform UnityEngine.XR.iOS.PickBoundingBox::m_Bottom
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___m_Bottom_5;
// UnityEngine.Transform UnityEngine.XR.iOS.PickBoundingBox::m_Left
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___m_Left_6;
// UnityEngine.Transform UnityEngine.XR.iOS.PickBoundingBox::m_Right
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___m_Right_7;
// UnityEngine.Transform UnityEngine.XR.iOS.PickBoundingBox::m_Back
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___m_Back_8;
// UnityEngine.Transform UnityEngine.XR.iOS.PickBoundingBox::m_Front
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___m_Front_9;
// UnityEngine.Material UnityEngine.XR.iOS.PickBoundingBox::m_UnselectedMaterial
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___m_UnselectedMaterial_10;
// UnityEngine.Material UnityEngine.XR.iOS.PickBoundingBox::m_SelectedMaterial
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___m_SelectedMaterial_11;
// UnityEngine.RaycastHit UnityEngine.XR.iOS.PickBoundingBox::m_PhysicsHit
RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 ___m_PhysicsHit_12;
// UnityEngine.XR.iOS.ARHitTestResult UnityEngine.XR.iOS.PickBoundingBox::m_ARHit
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E ___m_ARHit_13;
// UnityEngine.Vector3 UnityEngine.XR.iOS.PickBoundingBox::m_BeganFacePosition
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_BeganFacePosition_14;
// UnityEngine.XR.iOS.PickBoundingBox_HitType UnityEngine.XR.iOS.PickBoundingBox::m_LastHitType
int32_t ___m_LastHitType_15;
// System.Single UnityEngine.XR.iOS.PickBoundingBox::m_InitialPinchDistance
float ___m_InitialPinchDistance_16;
// UnityEngine.Bounds UnityEngine.XR.iOS.PickBoundingBox::m_InitialPinchBounds
Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 ___m_InitialPinchBounds_17;
// System.Single UnityEngine.XR.iOS.PickBoundingBox::m_TurnAngleDelta
float ___m_TurnAngleDelta_22;
// System.Single UnityEngine.XR.iOS.PickBoundingBox::m_PinchDistanceDelta
float ___m_PinchDistanceDelta_23;
// System.Single UnityEngine.XR.iOS.PickBoundingBox::m_PinchDistance
float ___m_PinchDistance_24;
public:
inline static int32_t get_offset_of_m_Top_4() { return static_cast<int32_t>(offsetof(PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88, ___m_Top_4)); }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_m_Top_4() const { return ___m_Top_4; }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_m_Top_4() { return &___m_Top_4; }
inline void set_m_Top_4(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value)
{
___m_Top_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Top_4), (void*)value);
}
inline static int32_t get_offset_of_m_Bottom_5() { return static_cast<int32_t>(offsetof(PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88, ___m_Bottom_5)); }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_m_Bottom_5() const { return ___m_Bottom_5; }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_m_Bottom_5() { return &___m_Bottom_5; }
inline void set_m_Bottom_5(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value)
{
___m_Bottom_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Bottom_5), (void*)value);
}
inline static int32_t get_offset_of_m_Left_6() { return static_cast<int32_t>(offsetof(PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88, ___m_Left_6)); }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_m_Left_6() const { return ___m_Left_6; }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_m_Left_6() { return &___m_Left_6; }
inline void set_m_Left_6(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value)
{
___m_Left_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Left_6), (void*)value);
}
inline static int32_t get_offset_of_m_Right_7() { return static_cast<int32_t>(offsetof(PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88, ___m_Right_7)); }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_m_Right_7() const { return ___m_Right_7; }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_m_Right_7() { return &___m_Right_7; }
inline void set_m_Right_7(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value)
{
___m_Right_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Right_7), (void*)value);
}
inline static int32_t get_offset_of_m_Back_8() { return static_cast<int32_t>(offsetof(PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88, ___m_Back_8)); }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_m_Back_8() const { return ___m_Back_8; }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_m_Back_8() { return &___m_Back_8; }
inline void set_m_Back_8(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value)
{
___m_Back_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Back_8), (void*)value);
}
inline static int32_t get_offset_of_m_Front_9() { return static_cast<int32_t>(offsetof(PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88, ___m_Front_9)); }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_m_Front_9() const { return ___m_Front_9; }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_m_Front_9() { return &___m_Front_9; }
inline void set_m_Front_9(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value)
{
___m_Front_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Front_9), (void*)value);
}
inline static int32_t get_offset_of_m_UnselectedMaterial_10() { return static_cast<int32_t>(offsetof(PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88, ___m_UnselectedMaterial_10)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_m_UnselectedMaterial_10() const { return ___m_UnselectedMaterial_10; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_m_UnselectedMaterial_10() { return &___m_UnselectedMaterial_10; }
inline void set_m_UnselectedMaterial_10(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___m_UnselectedMaterial_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_UnselectedMaterial_10), (void*)value);
}
inline static int32_t get_offset_of_m_SelectedMaterial_11() { return static_cast<int32_t>(offsetof(PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88, ___m_SelectedMaterial_11)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_m_SelectedMaterial_11() const { return ___m_SelectedMaterial_11; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_m_SelectedMaterial_11() { return &___m_SelectedMaterial_11; }
inline void set_m_SelectedMaterial_11(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___m_SelectedMaterial_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectedMaterial_11), (void*)value);
}
inline static int32_t get_offset_of_m_PhysicsHit_12() { return static_cast<int32_t>(offsetof(PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88, ___m_PhysicsHit_12)); }
inline RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 get_m_PhysicsHit_12() const { return ___m_PhysicsHit_12; }
inline RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 * get_address_of_m_PhysicsHit_12() { return &___m_PhysicsHit_12; }
inline void set_m_PhysicsHit_12(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 value)
{
___m_PhysicsHit_12 = value;
}
inline static int32_t get_offset_of_m_ARHit_13() { return static_cast<int32_t>(offsetof(PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88, ___m_ARHit_13)); }
inline ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E get_m_ARHit_13() const { return ___m_ARHit_13; }
inline ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E * get_address_of_m_ARHit_13() { return &___m_ARHit_13; }
inline void set_m_ARHit_13(ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E value)
{
___m_ARHit_13 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ARHit_13))->___anchorIdentifier_4), (void*)NULL);
}
inline static int32_t get_offset_of_m_BeganFacePosition_14() { return static_cast<int32_t>(offsetof(PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88, ___m_BeganFacePosition_14)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_BeganFacePosition_14() const { return ___m_BeganFacePosition_14; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_BeganFacePosition_14() { return &___m_BeganFacePosition_14; }
inline void set_m_BeganFacePosition_14(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_BeganFacePosition_14 = value;
}
inline static int32_t get_offset_of_m_LastHitType_15() { return static_cast<int32_t>(offsetof(PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88, ___m_LastHitType_15)); }
inline int32_t get_m_LastHitType_15() const { return ___m_LastHitType_15; }
inline int32_t* get_address_of_m_LastHitType_15() { return &___m_LastHitType_15; }
inline void set_m_LastHitType_15(int32_t value)
{
___m_LastHitType_15 = value;
}
inline static int32_t get_offset_of_m_InitialPinchDistance_16() { return static_cast<int32_t>(offsetof(PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88, ___m_InitialPinchDistance_16)); }
inline float get_m_InitialPinchDistance_16() const { return ___m_InitialPinchDistance_16; }
inline float* get_address_of_m_InitialPinchDistance_16() { return &___m_InitialPinchDistance_16; }
inline void set_m_InitialPinchDistance_16(float value)
{
___m_InitialPinchDistance_16 = value;
}
inline static int32_t get_offset_of_m_InitialPinchBounds_17() { return static_cast<int32_t>(offsetof(PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88, ___m_InitialPinchBounds_17)); }
inline Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 get_m_InitialPinchBounds_17() const { return ___m_InitialPinchBounds_17; }
inline Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 * get_address_of_m_InitialPinchBounds_17() { return &___m_InitialPinchBounds_17; }
inline void set_m_InitialPinchBounds_17(Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 value)
{
___m_InitialPinchBounds_17 = value;
}
inline static int32_t get_offset_of_m_TurnAngleDelta_22() { return static_cast<int32_t>(offsetof(PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88, ___m_TurnAngleDelta_22)); }
inline float get_m_TurnAngleDelta_22() const { return ___m_TurnAngleDelta_22; }
inline float* get_address_of_m_TurnAngleDelta_22() { return &___m_TurnAngleDelta_22; }
inline void set_m_TurnAngleDelta_22(float value)
{
___m_TurnAngleDelta_22 = value;
}
inline static int32_t get_offset_of_m_PinchDistanceDelta_23() { return static_cast<int32_t>(offsetof(PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88, ___m_PinchDistanceDelta_23)); }
inline float get_m_PinchDistanceDelta_23() const { return ___m_PinchDistanceDelta_23; }
inline float* get_address_of_m_PinchDistanceDelta_23() { return &___m_PinchDistanceDelta_23; }
inline void set_m_PinchDistanceDelta_23(float value)
{
___m_PinchDistanceDelta_23 = value;
}
inline static int32_t get_offset_of_m_PinchDistance_24() { return static_cast<int32_t>(offsetof(PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88, ___m_PinchDistance_24)); }
inline float get_m_PinchDistance_24() const { return ___m_PinchDistance_24; }
inline float* get_address_of_m_PinchDistance_24() { return &___m_PinchDistance_24; }
inline void set_m_PinchDistance_24(float value)
{
___m_PinchDistance_24 = value;
}
};
// UnityEngine.XR.iOS.PrintBounds
struct PrintBounds_tDB319B006CCF9F5B3E5B1B643619B511BA677339 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.XR.iOS.PickBoundingBox UnityEngine.XR.iOS.PrintBounds::m_Picker
PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88 * ___m_Picker_4;
// UnityEngine.UI.Text UnityEngine.XR.iOS.PrintBounds::m_BoundsText
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___m_BoundsText_5;
public:
inline static int32_t get_offset_of_m_Picker_4() { return static_cast<int32_t>(offsetof(PrintBounds_tDB319B006CCF9F5B3E5B1B643619B511BA677339, ___m_Picker_4)); }
inline PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88 * get_m_Picker_4() const { return ___m_Picker_4; }
inline PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88 ** get_address_of_m_Picker_4() { return &___m_Picker_4; }
inline void set_m_Picker_4(PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88 * value)
{
___m_Picker_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Picker_4), (void*)value);
}
inline static int32_t get_offset_of_m_BoundsText_5() { return static_cast<int32_t>(offsetof(PrintBounds_tDB319B006CCF9F5B3E5B1B643619B511BA677339, ___m_BoundsText_5)); }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * get_m_BoundsText_5() const { return ___m_BoundsText_5; }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 ** get_address_of_m_BoundsText_5() { return &___m_BoundsText_5; }
inline void set_m_BoundsText_5(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * value)
{
___m_BoundsText_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_BoundsText_5), (void*)value);
}
};
// UnityEngine.XR.iOS.UnityARAmbient
struct UnityARAmbient_t6F2A59B2D876AF26323445A2A980777C7E4A67FE : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.Light UnityEngine.XR.iOS.UnityARAmbient::l
Light_tFDE490EADBC7E080F74CA804929513AF07C31A6C * ___l_4;
public:
inline static int32_t get_offset_of_l_4() { return static_cast<int32_t>(offsetof(UnityARAmbient_t6F2A59B2D876AF26323445A2A980777C7E4A67FE, ___l_4)); }
inline Light_tFDE490EADBC7E080F74CA804929513AF07C31A6C * get_l_4() const { return ___l_4; }
inline Light_tFDE490EADBC7E080F74CA804929513AF07C31A6C ** get_address_of_l_4() { return &___l_4; }
inline void set_l_4(Light_tFDE490EADBC7E080F74CA804929513AF07C31A6C * value)
{
___l_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___l_4), (void*)value);
}
};
// UnityEngine.XR.iOS.UnityARGeneratePlane
struct UnityARGeneratePlane_tC95BF31D5A777A98B6C9D24443D46DB44A80140C : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.GameObject UnityEngine.XR.iOS.UnityARGeneratePlane::planePrefab
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___planePrefab_4;
// UnityEngine.XR.iOS.UnityARAnchorManager UnityEngine.XR.iOS.UnityARGeneratePlane::unityARAnchorManager
UnityARAnchorManager_tFB8F7E0CB2E8D2A3ED3958659A018DB531A21CD2 * ___unityARAnchorManager_5;
public:
inline static int32_t get_offset_of_planePrefab_4() { return static_cast<int32_t>(offsetof(UnityARGeneratePlane_tC95BF31D5A777A98B6C9D24443D46DB44A80140C, ___planePrefab_4)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_planePrefab_4() const { return ___planePrefab_4; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_planePrefab_4() { return &___planePrefab_4; }
inline void set_planePrefab_4(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___planePrefab_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___planePrefab_4), (void*)value);
}
inline static int32_t get_offset_of_unityARAnchorManager_5() { return static_cast<int32_t>(offsetof(UnityARGeneratePlane_tC95BF31D5A777A98B6C9D24443D46DB44A80140C, ___unityARAnchorManager_5)); }
inline UnityARAnchorManager_tFB8F7E0CB2E8D2A3ED3958659A018DB531A21CD2 * get_unityARAnchorManager_5() const { return ___unityARAnchorManager_5; }
inline UnityARAnchorManager_tFB8F7E0CB2E8D2A3ED3958659A018DB531A21CD2 ** get_address_of_unityARAnchorManager_5() { return &___unityARAnchorManager_5; }
inline void set_unityARAnchorManager_5(UnityARAnchorManager_tFB8F7E0CB2E8D2A3ED3958659A018DB531A21CD2 * value)
{
___unityARAnchorManager_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___unityARAnchorManager_5), (void*)value);
}
};
// UnityEngine.XR.iOS.UnityARHitTestExample
struct UnityARHitTestExample_t34E807E80DD74701E66B4C0099CEC2EDEF01EAA2 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.Transform UnityEngine.XR.iOS.UnityARHitTestExample::m_HitTransform
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___m_HitTransform_4;
// System.Single UnityEngine.XR.iOS.UnityARHitTestExample::maxRayDistance
float ___maxRayDistance_5;
// UnityEngine.LayerMask UnityEngine.XR.iOS.UnityARHitTestExample::collisionLayer
LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 ___collisionLayer_6;
public:
inline static int32_t get_offset_of_m_HitTransform_4() { return static_cast<int32_t>(offsetof(UnityARHitTestExample_t34E807E80DD74701E66B4C0099CEC2EDEF01EAA2, ___m_HitTransform_4)); }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_m_HitTransform_4() const { return ___m_HitTransform_4; }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_m_HitTransform_4() { return &___m_HitTransform_4; }
inline void set_m_HitTransform_4(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value)
{
___m_HitTransform_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HitTransform_4), (void*)value);
}
inline static int32_t get_offset_of_maxRayDistance_5() { return static_cast<int32_t>(offsetof(UnityARHitTestExample_t34E807E80DD74701E66B4C0099CEC2EDEF01EAA2, ___maxRayDistance_5)); }
inline float get_maxRayDistance_5() const { return ___maxRayDistance_5; }
inline float* get_address_of_maxRayDistance_5() { return &___maxRayDistance_5; }
inline void set_maxRayDistance_5(float value)
{
___maxRayDistance_5 = value;
}
inline static int32_t get_offset_of_collisionLayer_6() { return static_cast<int32_t>(offsetof(UnityARHitTestExample_t34E807E80DD74701E66B4C0099CEC2EDEF01EAA2, ___collisionLayer_6)); }
inline LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 get_collisionLayer_6() const { return ___collisionLayer_6; }
inline LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 * get_address_of_collisionLayer_6() { return &___collisionLayer_6; }
inline void set_collisionLayer_6(LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 value)
{
___collisionLayer_6 = value;
}
};
// UnityEngine.XR.iOS.UnityARKitControl
struct UnityARKitControl_tF68589BCAD67635FEC0383FB50E4F272EE5775FF : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.XR.iOS.UnityARSessionRunOption[] UnityEngine.XR.iOS.UnityARKitControl::runOptions
UnityARSessionRunOptionU5BU5D_t8681E43BA299D9832214F802375C78EF7E13DC96* ___runOptions_4;
// UnityEngine.XR.iOS.UnityARAlignment[] UnityEngine.XR.iOS.UnityARKitControl::alignmentOptions
UnityARAlignmentU5BU5D_tECEA7D365E16B1F75E843497E83946003A19B57D* ___alignmentOptions_5;
// UnityEngine.XR.iOS.UnityARPlaneDetection[] UnityEngine.XR.iOS.UnityARKitControl::planeOptions
UnityARPlaneDetectionU5BU5D_t70E8B7EF0559BB47D633239F67CF2DDE16728371* ___planeOptions_6;
// System.Int32 UnityEngine.XR.iOS.UnityARKitControl::currentOptionIndex
int32_t ___currentOptionIndex_7;
// System.Int32 UnityEngine.XR.iOS.UnityARKitControl::currentAlignmentIndex
int32_t ___currentAlignmentIndex_8;
// System.Int32 UnityEngine.XR.iOS.UnityARKitControl::currentPlaneIndex
int32_t ___currentPlaneIndex_9;
public:
inline static int32_t get_offset_of_runOptions_4() { return static_cast<int32_t>(offsetof(UnityARKitControl_tF68589BCAD67635FEC0383FB50E4F272EE5775FF, ___runOptions_4)); }
inline UnityARSessionRunOptionU5BU5D_t8681E43BA299D9832214F802375C78EF7E13DC96* get_runOptions_4() const { return ___runOptions_4; }
inline UnityARSessionRunOptionU5BU5D_t8681E43BA299D9832214F802375C78EF7E13DC96** get_address_of_runOptions_4() { return &___runOptions_4; }
inline void set_runOptions_4(UnityARSessionRunOptionU5BU5D_t8681E43BA299D9832214F802375C78EF7E13DC96* value)
{
___runOptions_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___runOptions_4), (void*)value);
}
inline static int32_t get_offset_of_alignmentOptions_5() { return static_cast<int32_t>(offsetof(UnityARKitControl_tF68589BCAD67635FEC0383FB50E4F272EE5775FF, ___alignmentOptions_5)); }
inline UnityARAlignmentU5BU5D_tECEA7D365E16B1F75E843497E83946003A19B57D* get_alignmentOptions_5() const { return ___alignmentOptions_5; }
inline UnityARAlignmentU5BU5D_tECEA7D365E16B1F75E843497E83946003A19B57D** get_address_of_alignmentOptions_5() { return &___alignmentOptions_5; }
inline void set_alignmentOptions_5(UnityARAlignmentU5BU5D_tECEA7D365E16B1F75E843497E83946003A19B57D* value)
{
___alignmentOptions_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___alignmentOptions_5), (void*)value);
}
inline static int32_t get_offset_of_planeOptions_6() { return static_cast<int32_t>(offsetof(UnityARKitControl_tF68589BCAD67635FEC0383FB50E4F272EE5775FF, ___planeOptions_6)); }
inline UnityARPlaneDetectionU5BU5D_t70E8B7EF0559BB47D633239F67CF2DDE16728371* get_planeOptions_6() const { return ___planeOptions_6; }
inline UnityARPlaneDetectionU5BU5D_t70E8B7EF0559BB47D633239F67CF2DDE16728371** get_address_of_planeOptions_6() { return &___planeOptions_6; }
inline void set_planeOptions_6(UnityARPlaneDetectionU5BU5D_t70E8B7EF0559BB47D633239F67CF2DDE16728371* value)
{
___planeOptions_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___planeOptions_6), (void*)value);
}
inline static int32_t get_offset_of_currentOptionIndex_7() { return static_cast<int32_t>(offsetof(UnityARKitControl_tF68589BCAD67635FEC0383FB50E4F272EE5775FF, ___currentOptionIndex_7)); }
inline int32_t get_currentOptionIndex_7() const { return ___currentOptionIndex_7; }
inline int32_t* get_address_of_currentOptionIndex_7() { return &___currentOptionIndex_7; }
inline void set_currentOptionIndex_7(int32_t value)
{
___currentOptionIndex_7 = value;
}
inline static int32_t get_offset_of_currentAlignmentIndex_8() { return static_cast<int32_t>(offsetof(UnityARKitControl_tF68589BCAD67635FEC0383FB50E4F272EE5775FF, ___currentAlignmentIndex_8)); }
inline int32_t get_currentAlignmentIndex_8() const { return ___currentAlignmentIndex_8; }
inline int32_t* get_address_of_currentAlignmentIndex_8() { return &___currentAlignmentIndex_8; }
inline void set_currentAlignmentIndex_8(int32_t value)
{
___currentAlignmentIndex_8 = value;
}
inline static int32_t get_offset_of_currentPlaneIndex_9() { return static_cast<int32_t>(offsetof(UnityARKitControl_tF68589BCAD67635FEC0383FB50E4F272EE5775FF, ___currentPlaneIndex_9)); }
inline int32_t get_currentPlaneIndex_9() const { return ___currentPlaneIndex_9; }
inline int32_t* get_address_of_currentPlaneIndex_9() { return &___currentPlaneIndex_9; }
inline void set_currentPlaneIndex_9(int32_t value)
{
___currentPlaneIndex_9 = value;
}
};
// UnityEngine.XR.iOS.UnityARUserAnchorComponent
struct UnityARUserAnchorComponent_t6D613E3AEE03300CD9F06DF64E4AAA31CB80C42A : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// System.String UnityEngine.XR.iOS.UnityARUserAnchorComponent::m_AnchorId
String_t* ___m_AnchorId_4;
public:
inline static int32_t get_offset_of_m_AnchorId_4() { return static_cast<int32_t>(offsetof(UnityARUserAnchorComponent_t6D613E3AEE03300CD9F06DF64E4AAA31CB80C42A, ___m_AnchorId_4)); }
inline String_t* get_m_AnchorId_4() const { return ___m_AnchorId_4; }
inline String_t** get_address_of_m_AnchorId_4() { return &___m_AnchorId_4; }
inline void set_m_AnchorId_4(String_t* value)
{
___m_AnchorId_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_AnchorId_4), (void*)value);
}
};
// UnityEngine.XR.iOS.UnityARVideo
struct UnityARVideo_t0D8EA0D1C2EC6A3A08F800187EA24F81B0587845 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.Material UnityEngine.XR.iOS.UnityARVideo::m_ClearMaterial
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___m_ClearMaterial_4;
// UnityEngine.Rendering.CommandBuffer UnityEngine.XR.iOS.UnityARVideo::m_VideoCommandBuffer
CommandBuffer_t70BF7D9D84C2AFA83559B45FAD5BEDA73DA617DD * ___m_VideoCommandBuffer_5;
// UnityEngine.Texture2D UnityEngine.XR.iOS.UnityARVideo::_videoTextureY
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ____videoTextureY_6;
// UnityEngine.Texture2D UnityEngine.XR.iOS.UnityARVideo::_videoTextureCbCr
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ____videoTextureCbCr_7;
// UnityEngine.Matrix4x4 UnityEngine.XR.iOS.UnityARVideo::_displayTransform
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ____displayTransform_8;
// System.Boolean UnityEngine.XR.iOS.UnityARVideo::bCommandBufferInitialized
bool ___bCommandBufferInitialized_9;
public:
inline static int32_t get_offset_of_m_ClearMaterial_4() { return static_cast<int32_t>(offsetof(UnityARVideo_t0D8EA0D1C2EC6A3A08F800187EA24F81B0587845, ___m_ClearMaterial_4)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_m_ClearMaterial_4() const { return ___m_ClearMaterial_4; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_m_ClearMaterial_4() { return &___m_ClearMaterial_4; }
inline void set_m_ClearMaterial_4(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___m_ClearMaterial_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ClearMaterial_4), (void*)value);
}
inline static int32_t get_offset_of_m_VideoCommandBuffer_5() { return static_cast<int32_t>(offsetof(UnityARVideo_t0D8EA0D1C2EC6A3A08F800187EA24F81B0587845, ___m_VideoCommandBuffer_5)); }
inline CommandBuffer_t70BF7D9D84C2AFA83559B45FAD5BEDA73DA617DD * get_m_VideoCommandBuffer_5() const { return ___m_VideoCommandBuffer_5; }
inline CommandBuffer_t70BF7D9D84C2AFA83559B45FAD5BEDA73DA617DD ** get_address_of_m_VideoCommandBuffer_5() { return &___m_VideoCommandBuffer_5; }
inline void set_m_VideoCommandBuffer_5(CommandBuffer_t70BF7D9D84C2AFA83559B45FAD5BEDA73DA617DD * value)
{
___m_VideoCommandBuffer_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_VideoCommandBuffer_5), (void*)value);
}
inline static int32_t get_offset_of__videoTextureY_6() { return static_cast<int32_t>(offsetof(UnityARVideo_t0D8EA0D1C2EC6A3A08F800187EA24F81B0587845, ____videoTextureY_6)); }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * get__videoTextureY_6() const { return ____videoTextureY_6; }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C ** get_address_of__videoTextureY_6() { return &____videoTextureY_6; }
inline void set__videoTextureY_6(Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * value)
{
____videoTextureY_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____videoTextureY_6), (void*)value);
}
inline static int32_t get_offset_of__videoTextureCbCr_7() { return static_cast<int32_t>(offsetof(UnityARVideo_t0D8EA0D1C2EC6A3A08F800187EA24F81B0587845, ____videoTextureCbCr_7)); }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * get__videoTextureCbCr_7() const { return ____videoTextureCbCr_7; }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C ** get_address_of__videoTextureCbCr_7() { return &____videoTextureCbCr_7; }
inline void set__videoTextureCbCr_7(Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * value)
{
____videoTextureCbCr_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____videoTextureCbCr_7), (void*)value);
}
inline static int32_t get_offset_of__displayTransform_8() { return static_cast<int32_t>(offsetof(UnityARVideo_t0D8EA0D1C2EC6A3A08F800187EA24F81B0587845, ____displayTransform_8)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get__displayTransform_8() const { return ____displayTransform_8; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of__displayTransform_8() { return &____displayTransform_8; }
inline void set__displayTransform_8(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
____displayTransform_8 = value;
}
inline static int32_t get_offset_of_bCommandBufferInitialized_9() { return static_cast<int32_t>(offsetof(UnityARVideo_t0D8EA0D1C2EC6A3A08F800187EA24F81B0587845, ___bCommandBufferInitialized_9)); }
inline bool get_bCommandBufferInitialized_9() const { return ___bCommandBufferInitialized_9; }
inline bool* get_address_of_bCommandBufferInitialized_9() { return &___bCommandBufferInitialized_9; }
inline void set_bCommandBufferInitialized_9(bool value)
{
___bCommandBufferInitialized_9 = value;
}
};
// UnityEngine.XR.iOS.UnityRemoteVideo
struct UnityRemoteVideo_tE1B5CC24F1490A2E00A8213CF27EE54DD7488222 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.XR.iOS.ConnectToEditor UnityEngine.XR.iOS.UnityRemoteVideo::connectToEditor
ConnectToEditor_t8AF91172E7A2EF41FB9994B997C7ADA97C0FF5B3 * ___connectToEditor_4;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface UnityEngine.XR.iOS.UnityRemoteVideo::m_Session
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * ___m_Session_5;
// System.Boolean UnityEngine.XR.iOS.UnityRemoteVideo::bTexturesInitialized
bool ___bTexturesInitialized_6;
// System.Int32 UnityEngine.XR.iOS.UnityRemoteVideo::currentFrameIndex
int32_t ___currentFrameIndex_7;
// System.Byte[] UnityEngine.XR.iOS.UnityRemoteVideo::m_textureYBytes
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___m_textureYBytes_8;
// System.Byte[] UnityEngine.XR.iOS.UnityRemoteVideo::m_textureUVBytes
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___m_textureUVBytes_9;
// System.Byte[] UnityEngine.XR.iOS.UnityRemoteVideo::m_textureYBytes2
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___m_textureYBytes2_10;
// System.Byte[] UnityEngine.XR.iOS.UnityRemoteVideo::m_textureUVBytes2
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___m_textureUVBytes2_11;
// System.Runtime.InteropServices.GCHandle UnityEngine.XR.iOS.UnityRemoteVideo::m_pinnedYArray
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 ___m_pinnedYArray_12;
// System.Runtime.InteropServices.GCHandle UnityEngine.XR.iOS.UnityRemoteVideo::m_pinnedUVArray
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 ___m_pinnedUVArray_13;
public:
inline static int32_t get_offset_of_connectToEditor_4() { return static_cast<int32_t>(offsetof(UnityRemoteVideo_tE1B5CC24F1490A2E00A8213CF27EE54DD7488222, ___connectToEditor_4)); }
inline ConnectToEditor_t8AF91172E7A2EF41FB9994B997C7ADA97C0FF5B3 * get_connectToEditor_4() const { return ___connectToEditor_4; }
inline ConnectToEditor_t8AF91172E7A2EF41FB9994B997C7ADA97C0FF5B3 ** get_address_of_connectToEditor_4() { return &___connectToEditor_4; }
inline void set_connectToEditor_4(ConnectToEditor_t8AF91172E7A2EF41FB9994B997C7ADA97C0FF5B3 * value)
{
___connectToEditor_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___connectToEditor_4), (void*)value);
}
inline static int32_t get_offset_of_m_Session_5() { return static_cast<int32_t>(offsetof(UnityRemoteVideo_tE1B5CC24F1490A2E00A8213CF27EE54DD7488222, ___m_Session_5)); }
inline UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * get_m_Session_5() const { return ___m_Session_5; }
inline UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 ** get_address_of_m_Session_5() { return &___m_Session_5; }
inline void set_m_Session_5(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * value)
{
___m_Session_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Session_5), (void*)value);
}
inline static int32_t get_offset_of_bTexturesInitialized_6() { return static_cast<int32_t>(offsetof(UnityRemoteVideo_tE1B5CC24F1490A2E00A8213CF27EE54DD7488222, ___bTexturesInitialized_6)); }
inline bool get_bTexturesInitialized_6() const { return ___bTexturesInitialized_6; }
inline bool* get_address_of_bTexturesInitialized_6() { return &___bTexturesInitialized_6; }
inline void set_bTexturesInitialized_6(bool value)
{
___bTexturesInitialized_6 = value;
}
inline static int32_t get_offset_of_currentFrameIndex_7() { return static_cast<int32_t>(offsetof(UnityRemoteVideo_tE1B5CC24F1490A2E00A8213CF27EE54DD7488222, ___currentFrameIndex_7)); }
inline int32_t get_currentFrameIndex_7() const { return ___currentFrameIndex_7; }
inline int32_t* get_address_of_currentFrameIndex_7() { return &___currentFrameIndex_7; }
inline void set_currentFrameIndex_7(int32_t value)
{
___currentFrameIndex_7 = value;
}
inline static int32_t get_offset_of_m_textureYBytes_8() { return static_cast<int32_t>(offsetof(UnityRemoteVideo_tE1B5CC24F1490A2E00A8213CF27EE54DD7488222, ___m_textureYBytes_8)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_m_textureYBytes_8() const { return ___m_textureYBytes_8; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_m_textureYBytes_8() { return &___m_textureYBytes_8; }
inline void set_m_textureYBytes_8(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___m_textureYBytes_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_textureYBytes_8), (void*)value);
}
inline static int32_t get_offset_of_m_textureUVBytes_9() { return static_cast<int32_t>(offsetof(UnityRemoteVideo_tE1B5CC24F1490A2E00A8213CF27EE54DD7488222, ___m_textureUVBytes_9)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_m_textureUVBytes_9() const { return ___m_textureUVBytes_9; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_m_textureUVBytes_9() { return &___m_textureUVBytes_9; }
inline void set_m_textureUVBytes_9(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___m_textureUVBytes_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_textureUVBytes_9), (void*)value);
}
inline static int32_t get_offset_of_m_textureYBytes2_10() { return static_cast<int32_t>(offsetof(UnityRemoteVideo_tE1B5CC24F1490A2E00A8213CF27EE54DD7488222, ___m_textureYBytes2_10)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_m_textureYBytes2_10() const { return ___m_textureYBytes2_10; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_m_textureYBytes2_10() { return &___m_textureYBytes2_10; }
inline void set_m_textureYBytes2_10(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___m_textureYBytes2_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_textureYBytes2_10), (void*)value);
}
inline static int32_t get_offset_of_m_textureUVBytes2_11() { return static_cast<int32_t>(offsetof(UnityRemoteVideo_tE1B5CC24F1490A2E00A8213CF27EE54DD7488222, ___m_textureUVBytes2_11)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_m_textureUVBytes2_11() const { return ___m_textureUVBytes2_11; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_m_textureUVBytes2_11() { return &___m_textureUVBytes2_11; }
inline void set_m_textureUVBytes2_11(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___m_textureUVBytes2_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_textureUVBytes2_11), (void*)value);
}
inline static int32_t get_offset_of_m_pinnedYArray_12() { return static_cast<int32_t>(offsetof(UnityRemoteVideo_tE1B5CC24F1490A2E00A8213CF27EE54DD7488222, ___m_pinnedYArray_12)); }
inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 get_m_pinnedYArray_12() const { return ___m_pinnedYArray_12; }
inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * get_address_of_m_pinnedYArray_12() { return &___m_pinnedYArray_12; }
inline void set_m_pinnedYArray_12(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 value)
{
___m_pinnedYArray_12 = value;
}
inline static int32_t get_offset_of_m_pinnedUVArray_13() { return static_cast<int32_t>(offsetof(UnityRemoteVideo_tE1B5CC24F1490A2E00A8213CF27EE54DD7488222, ___m_pinnedUVArray_13)); }
inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 get_m_pinnedUVArray_13() const { return ___m_pinnedUVArray_13; }
inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * get_address_of_m_pinnedUVArray_13() { return &___m_pinnedUVArray_13; }
inline void set_m_pinnedUVArray_13(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 value)
{
___m_pinnedUVArray_13 = value;
}
};
// UnityEyeManager
struct UnityEyeManager_t1BF4A5D2E57263BCB3CDC38D6013F247EC921E17 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.GameObject UnityEyeManager::eyePrefab
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___eyePrefab_4;
// UnityEngine.XR.iOS.UnityARSessionNativeInterface UnityEyeManager::m_session
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * ___m_session_5;
// UnityEngine.GameObject UnityEyeManager::leftEyeGo
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___leftEyeGo_6;
// UnityEngine.GameObject UnityEyeManager::rightEyeGo
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___rightEyeGo_7;
public:
inline static int32_t get_offset_of_eyePrefab_4() { return static_cast<int32_t>(offsetof(UnityEyeManager_t1BF4A5D2E57263BCB3CDC38D6013F247EC921E17, ___eyePrefab_4)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_eyePrefab_4() const { return ___eyePrefab_4; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_eyePrefab_4() { return &___eyePrefab_4; }
inline void set_eyePrefab_4(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___eyePrefab_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___eyePrefab_4), (void*)value);
}
inline static int32_t get_offset_of_m_session_5() { return static_cast<int32_t>(offsetof(UnityEyeManager_t1BF4A5D2E57263BCB3CDC38D6013F247EC921E17, ___m_session_5)); }
inline UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * get_m_session_5() const { return ___m_session_5; }
inline UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 ** get_address_of_m_session_5() { return &___m_session_5; }
inline void set_m_session_5(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760 * value)
{
___m_session_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_session_5), (void*)value);
}
inline static int32_t get_offset_of_leftEyeGo_6() { return static_cast<int32_t>(offsetof(UnityEyeManager_t1BF4A5D2E57263BCB3CDC38D6013F247EC921E17, ___leftEyeGo_6)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_leftEyeGo_6() const { return ___leftEyeGo_6; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_leftEyeGo_6() { return &___leftEyeGo_6; }
inline void set_leftEyeGo_6(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___leftEyeGo_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___leftEyeGo_6), (void*)value);
}
inline static int32_t get_offset_of_rightEyeGo_7() { return static_cast<int32_t>(offsetof(UnityEyeManager_t1BF4A5D2E57263BCB3CDC38D6013F247EC921E17, ___rightEyeGo_7)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_rightEyeGo_7() const { return ___rightEyeGo_7; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_rightEyeGo_7() { return &___rightEyeGo_7; }
inline void set_rightEyeGo_7(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___rightEyeGo_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___rightEyeGo_7), (void*)value);
}
};
// UnityPointCloudExample
struct UnityPointCloudExample_t4930D5B5791439A468257532D992AAAAA9139FA3 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// System.UInt32 UnityPointCloudExample::numPointsToShow
uint32_t ___numPointsToShow_4;
// UnityEngine.GameObject UnityPointCloudExample::PointCloudPrefab
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___PointCloudPrefab_5;
// System.Collections.Generic.List`1<UnityEngine.GameObject> UnityPointCloudExample::pointCloudObjects
List_1_t3D4152882C54B77C712688E910390D5C8E030463 * ___pointCloudObjects_6;
// UnityEngine.Vector3[] UnityPointCloudExample::m_PointCloudData
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___m_PointCloudData_7;
public:
inline static int32_t get_offset_of_numPointsToShow_4() { return static_cast<int32_t>(offsetof(UnityPointCloudExample_t4930D5B5791439A468257532D992AAAAA9139FA3, ___numPointsToShow_4)); }
inline uint32_t get_numPointsToShow_4() const { return ___numPointsToShow_4; }
inline uint32_t* get_address_of_numPointsToShow_4() { return &___numPointsToShow_4; }
inline void set_numPointsToShow_4(uint32_t value)
{
___numPointsToShow_4 = value;
}
inline static int32_t get_offset_of_PointCloudPrefab_5() { return static_cast<int32_t>(offsetof(UnityPointCloudExample_t4930D5B5791439A468257532D992AAAAA9139FA3, ___PointCloudPrefab_5)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_PointCloudPrefab_5() const { return ___PointCloudPrefab_5; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_PointCloudPrefab_5() { return &___PointCloudPrefab_5; }
inline void set_PointCloudPrefab_5(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___PointCloudPrefab_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PointCloudPrefab_5), (void*)value);
}
inline static int32_t get_offset_of_pointCloudObjects_6() { return static_cast<int32_t>(offsetof(UnityPointCloudExample_t4930D5B5791439A468257532D992AAAAA9139FA3, ___pointCloudObjects_6)); }
inline List_1_t3D4152882C54B77C712688E910390D5C8E030463 * get_pointCloudObjects_6() const { return ___pointCloudObjects_6; }
inline List_1_t3D4152882C54B77C712688E910390D5C8E030463 ** get_address_of_pointCloudObjects_6() { return &___pointCloudObjects_6; }
inline void set_pointCloudObjects_6(List_1_t3D4152882C54B77C712688E910390D5C8E030463 * value)
{
___pointCloudObjects_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___pointCloudObjects_6), (void*)value);
}
inline static int32_t get_offset_of_m_PointCloudData_7() { return static_cast<int32_t>(offsetof(UnityPointCloudExample_t4930D5B5791439A468257532D992AAAAA9139FA3, ___m_PointCloudData_7)); }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get_m_PointCloudData_7() const { return ___m_PointCloudData_7; }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of_m_PointCloudData_7() { return &___m_PointCloudData_7; }
inline void set_m_PointCloudData_7(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value)
{
___m_PointCloudData_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PointCloudData_7), (void*)value);
}
};
// UpdateWorldMappingStatus
struct UpdateWorldMappingStatus_tA474863E7C7B2C743BB4109F5D84160177875FA8 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.UI.Text UpdateWorldMappingStatus::text
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___text_4;
// UnityEngine.UI.Text UpdateWorldMappingStatus::tracking
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___tracking_5;
public:
inline static int32_t get_offset_of_text_4() { return static_cast<int32_t>(offsetof(UpdateWorldMappingStatus_tA474863E7C7B2C743BB4109F5D84160177875FA8, ___text_4)); }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * get_text_4() const { return ___text_4; }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 ** get_address_of_text_4() { return &___text_4; }
inline void set_text_4(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * value)
{
___text_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___text_4), (void*)value);
}
inline static int32_t get_offset_of_tracking_5() { return static_cast<int32_t>(offsetof(UpdateWorldMappingStatus_tA474863E7C7B2C743BB4109F5D84160177875FA8, ___tracking_5)); }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * get_tracking_5() const { return ___tracking_5; }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 ** get_address_of_tracking_5() { return &___tracking_5; }
inline void set_tracking_5(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * value)
{
___tracking_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___tracking_5), (void*)value);
}
};
// VideoFormatButton
struct VideoFormatButton_t5243961AFDF957A2BC12E0D28B3AFC0BE71D7B83 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.UI.Text VideoFormatButton::videoFormatDescription
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___videoFormatDescription_4;
// UnityEngine.XR.iOS.UnityARVideoFormat VideoFormatButton::arVideoFormat
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 ___arVideoFormat_5;
public:
inline static int32_t get_offset_of_videoFormatDescription_4() { return static_cast<int32_t>(offsetof(VideoFormatButton_t5243961AFDF957A2BC12E0D28B3AFC0BE71D7B83, ___videoFormatDescription_4)); }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * get_videoFormatDescription_4() const { return ___videoFormatDescription_4; }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 ** get_address_of_videoFormatDescription_4() { return &___videoFormatDescription_4; }
inline void set_videoFormatDescription_4(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * value)
{
___videoFormatDescription_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___videoFormatDescription_4), (void*)value);
}
inline static int32_t get_offset_of_arVideoFormat_5() { return static_cast<int32_t>(offsetof(VideoFormatButton_t5243961AFDF957A2BC12E0D28B3AFC0BE71D7B83, ___arVideoFormat_5)); }
inline UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 get_arVideoFormat_5() const { return ___arVideoFormat_5; }
inline UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 * get_address_of_arVideoFormat_5() { return &___arVideoFormat_5; }
inline void set_arVideoFormat_5(UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 value)
{
___arVideoFormat_5 = value;
}
};
struct VideoFormatButton_t5243961AFDF957A2BC12E0D28B3AFC0BE71D7B83_StaticFields
{
public:
// VideoFormatButton_VideoFormatButtonPressed VideoFormatButton::FormatButtonPressedEvent
VideoFormatButtonPressed_tE2EB379E3E66B4C8D84030EA0FE11BE4714820CC * ___FormatButtonPressedEvent_6;
public:
inline static int32_t get_offset_of_FormatButtonPressedEvent_6() { return static_cast<int32_t>(offsetof(VideoFormatButton_t5243961AFDF957A2BC12E0D28B3AFC0BE71D7B83_StaticFields, ___FormatButtonPressedEvent_6)); }
inline VideoFormatButtonPressed_tE2EB379E3E66B4C8D84030EA0FE11BE4714820CC * get_FormatButtonPressedEvent_6() const { return ___FormatButtonPressedEvent_6; }
inline VideoFormatButtonPressed_tE2EB379E3E66B4C8D84030EA0FE11BE4714820CC ** get_address_of_FormatButtonPressedEvent_6() { return &___FormatButtonPressedEvent_6; }
inline void set_FormatButtonPressedEvent_6(VideoFormatButtonPressed_tE2EB379E3E66B4C8D84030EA0FE11BE4714820CC * value)
{
___FormatButtonPressedEvent_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FormatButtonPressedEvent_6), (void*)value);
}
};
// VideoFormatsExample
struct VideoFormatsExample_t33090EA342CA6D34540CD00BAB4D81FE5B8BE08B : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.Transform VideoFormatsExample::formatsParent
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___formatsParent_4;
// UnityEngine.GameObject VideoFormatsExample::videoFormatButtonPrefab
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___videoFormatButtonPrefab_5;
public:
inline static int32_t get_offset_of_formatsParent_4() { return static_cast<int32_t>(offsetof(VideoFormatsExample_t33090EA342CA6D34540CD00BAB4D81FE5B8BE08B, ___formatsParent_4)); }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_formatsParent_4() const { return ___formatsParent_4; }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_formatsParent_4() { return &___formatsParent_4; }
inline void set_formatsParent_4(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value)
{
___formatsParent_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___formatsParent_4), (void*)value);
}
inline static int32_t get_offset_of_videoFormatButtonPrefab_5() { return static_cast<int32_t>(offsetof(VideoFormatsExample_t33090EA342CA6D34540CD00BAB4D81FE5B8BE08B, ___videoFormatButtonPrefab_5)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_videoFormatButtonPrefab_5() const { return ___videoFormatButtonPrefab_5; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_videoFormatButtonPrefab_5() { return &___videoFormatButtonPrefab_5; }
inline void set_videoFormatButtonPrefab_5(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___videoFormatButtonPrefab_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___videoFormatButtonPrefab_5), (void*)value);
}
};
// WorldMapManager
struct WorldMapManager_t2E882FE3D5782FCC4EEE54E41A3A12CF64DEF7F8 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityARCameraManager WorldMapManager::m_ARCameraManager
UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51 * ___m_ARCameraManager_4;
// UnityEngine.XR.iOS.ARWorldMap WorldMapManager::m_LoadedMap
ARWorldMap_tA5B42053DEC105A7BDEB0AB2E6DB3200BC2C397A * ___m_LoadedMap_5;
// UnityEngine.XR.iOS.serializableARWorldMap WorldMapManager::serializedWorldMap
serializableARWorldMap_t7E10ABE00B8AE4798879ED785B257CF12FDFFFCE * ___serializedWorldMap_6;
// UnityEngine.XR.iOS.ARTrackingStateReason WorldMapManager::m_LastReason
int32_t ___m_LastReason_7;
public:
inline static int32_t get_offset_of_m_ARCameraManager_4() { return static_cast<int32_t>(offsetof(WorldMapManager_t2E882FE3D5782FCC4EEE54E41A3A12CF64DEF7F8, ___m_ARCameraManager_4)); }
inline UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51 * get_m_ARCameraManager_4() const { return ___m_ARCameraManager_4; }
inline UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51 ** get_address_of_m_ARCameraManager_4() { return &___m_ARCameraManager_4; }
inline void set_m_ARCameraManager_4(UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51 * value)
{
___m_ARCameraManager_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ARCameraManager_4), (void*)value);
}
inline static int32_t get_offset_of_m_LoadedMap_5() { return static_cast<int32_t>(offsetof(WorldMapManager_t2E882FE3D5782FCC4EEE54E41A3A12CF64DEF7F8, ___m_LoadedMap_5)); }
inline ARWorldMap_tA5B42053DEC105A7BDEB0AB2E6DB3200BC2C397A * get_m_LoadedMap_5() const { return ___m_LoadedMap_5; }
inline ARWorldMap_tA5B42053DEC105A7BDEB0AB2E6DB3200BC2C397A ** get_address_of_m_LoadedMap_5() { return &___m_LoadedMap_5; }
inline void set_m_LoadedMap_5(ARWorldMap_tA5B42053DEC105A7BDEB0AB2E6DB3200BC2C397A * value)
{
___m_LoadedMap_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_LoadedMap_5), (void*)value);
}
inline static int32_t get_offset_of_serializedWorldMap_6() { return static_cast<int32_t>(offsetof(WorldMapManager_t2E882FE3D5782FCC4EEE54E41A3A12CF64DEF7F8, ___serializedWorldMap_6)); }
inline serializableARWorldMap_t7E10ABE00B8AE4798879ED785B257CF12FDFFFCE * get_serializedWorldMap_6() const { return ___serializedWorldMap_6; }
inline serializableARWorldMap_t7E10ABE00B8AE4798879ED785B257CF12FDFFFCE ** get_address_of_serializedWorldMap_6() { return &___serializedWorldMap_6; }
inline void set_serializedWorldMap_6(serializableARWorldMap_t7E10ABE00B8AE4798879ED785B257CF12FDFFFCE * value)
{
___serializedWorldMap_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___serializedWorldMap_6), (void*)value);
}
inline static int32_t get_offset_of_m_LastReason_7() { return static_cast<int32_t>(offsetof(WorldMapManager_t2E882FE3D5782FCC4EEE54E41A3A12CF64DEF7F8, ___m_LastReason_7)); }
inline int32_t get_m_LastReason_7() const { return ___m_LastReason_7; }
inline int32_t* get_address_of_m_LastReason_7() { return &___m_LastReason_7; }
inline void set_m_LastReason_7(int32_t value)
{
___m_LastReason_7 = value;
}
};
// fireControl
struct fireControl_tA923E47CF08C5A366ED38D42648E37AC75F9D035 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.ParticleSystem fireControl::ps
ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * ___ps_4;
public:
inline static int32_t get_offset_of_ps_4() { return static_cast<int32_t>(offsetof(fireControl_tA923E47CF08C5A366ED38D42648E37AC75F9D035, ___ps_4)); }
inline ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * get_ps_4() const { return ___ps_4; }
inline ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D ** get_address_of_ps_4() { return &___ps_4; }
inline void set_ps_4(ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * value)
{
___ps_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ps_4), (void*)value);
}
};
// flyScript
struct flyScript_t91000275481D48F5248A086AE32503B678104C38 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.Animation flyScript::anim
Animation_tCFC171459D159DDEC6500B55543A76219D49BB9C * ___anim_4;
public:
inline static int32_t get_offset_of_anim_4() { return static_cast<int32_t>(offsetof(flyScript_t91000275481D48F5248A086AE32503B678104C38, ___anim_4)); }
inline Animation_tCFC171459D159DDEC6500B55543A76219D49BB9C * get_anim_4() const { return ___anim_4; }
inline Animation_tCFC171459D159DDEC6500B55543A76219D49BB9C ** get_address_of_anim_4() { return &___anim_4; }
inline void set_anim_4(Animation_tCFC171459D159DDEC6500B55543A76219D49BB9C * value)
{
___anim_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___anim_4), (void*)value);
}
};
// trainScript
struct trainScript_t0CB2C76EFCD81565FB6D9E4607C88104AEB555DE : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.Animation trainScript::anima
Animation_tCFC171459D159DDEC6500B55543A76219D49BB9C * ___anima_4;
public:
inline static int32_t get_offset_of_anima_4() { return static_cast<int32_t>(offsetof(trainScript_t0CB2C76EFCD81565FB6D9E4607C88104AEB555DE, ___anima_4)); }
inline Animation_tCFC171459D159DDEC6500B55543A76219D49BB9C * get_anima_4() const { return ___anima_4; }
inline Animation_tCFC171459D159DDEC6500B55543A76219D49BB9C ** get_address_of_anima_4() { return &___anima_4; }
inline void set_anima_4(Animation_tCFC171459D159DDEC6500B55543A76219D49BB9C * value)
{
___anima_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___anima_4), (void*)value);
}
};
// DigitalRuby.PyroParticles.FireConstantBaseScript
struct FireConstantBaseScript_t42265909E6D65DC66F148D7F2BDD8E840297ACC7 : public FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E
{
public:
// DigitalRuby.PyroParticles.LoopingAudioSource DigitalRuby.PyroParticles.FireConstantBaseScript::LoopingAudioSource
LoopingAudioSource_tAC4960456CBDF46A74E09DF5C9F530AFD28F4DF3 * ___LoopingAudioSource_20;
public:
inline static int32_t get_offset_of_LoopingAudioSource_20() { return static_cast<int32_t>(offsetof(FireConstantBaseScript_t42265909E6D65DC66F148D7F2BDD8E840297ACC7, ___LoopingAudioSource_20)); }
inline LoopingAudioSource_tAC4960456CBDF46A74E09DF5C9F530AFD28F4DF3 * get_LoopingAudioSource_20() const { return ___LoopingAudioSource_20; }
inline LoopingAudioSource_tAC4960456CBDF46A74E09DF5C9F530AFD28F4DF3 ** get_address_of_LoopingAudioSource_20() { return &___LoopingAudioSource_20; }
inline void set_LoopingAudioSource_20(LoopingAudioSource_tAC4960456CBDF46A74E09DF5C9F530AFD28F4DF3 * value)
{
___LoopingAudioSource_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___LoopingAudioSource_20), (void*)value);
}
};
// DigitalRuby.PyroParticles.FireProjectileScript
struct FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8 : public FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E
{
public:
// UnityEngine.GameObject DigitalRuby.PyroParticles.FireProjectileScript::ProjectileColliderObject
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___ProjectileColliderObject_20;
// UnityEngine.AudioSource DigitalRuby.PyroParticles.FireProjectileScript::ProjectileCollisionSound
AudioSource_t5196F862B4E60F404613361C90D87FBDD041E93C * ___ProjectileCollisionSound_21;
// UnityEngine.ParticleSystem DigitalRuby.PyroParticles.FireProjectileScript::ProjectileExplosionParticleSystem
ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * ___ProjectileExplosionParticleSystem_22;
// System.Single DigitalRuby.PyroParticles.FireProjectileScript::ProjectileExplosionRadius
float ___ProjectileExplosionRadius_23;
// System.Single DigitalRuby.PyroParticles.FireProjectileScript::ProjectileExplosionForce
float ___ProjectileExplosionForce_24;
// System.Single DigitalRuby.PyroParticles.FireProjectileScript::ProjectileColliderDelay
float ___ProjectileColliderDelay_25;
// System.Single DigitalRuby.PyroParticles.FireProjectileScript::ProjectileColliderSpeed
float ___ProjectileColliderSpeed_26;
// UnityEngine.Vector3 DigitalRuby.PyroParticles.FireProjectileScript::ProjectileDirection
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___ProjectileDirection_27;
// UnityEngine.LayerMask DigitalRuby.PyroParticles.FireProjectileScript::ProjectileCollisionLayers
LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 ___ProjectileCollisionLayers_28;
// UnityEngine.ParticleSystem[] DigitalRuby.PyroParticles.FireProjectileScript::ProjectileDestroyParticleSystemsOnCollision
ParticleSystemU5BU5D_t58EE604F685D8CBA8EFC9353456969F5A1B2FBB9* ___ProjectileDestroyParticleSystemsOnCollision_29;
// DigitalRuby.PyroParticles.FireProjectileCollisionDelegate DigitalRuby.PyroParticles.FireProjectileScript::CollisionDelegate
FireProjectileCollisionDelegate_t1E069C484F215AB28294487D1CC250DCADA87033 * ___CollisionDelegate_30;
// System.Boolean DigitalRuby.PyroParticles.FireProjectileScript::collided
bool ___collided_31;
public:
inline static int32_t get_offset_of_ProjectileColliderObject_20() { return static_cast<int32_t>(offsetof(FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8, ___ProjectileColliderObject_20)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_ProjectileColliderObject_20() const { return ___ProjectileColliderObject_20; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_ProjectileColliderObject_20() { return &___ProjectileColliderObject_20; }
inline void set_ProjectileColliderObject_20(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___ProjectileColliderObject_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ProjectileColliderObject_20), (void*)value);
}
inline static int32_t get_offset_of_ProjectileCollisionSound_21() { return static_cast<int32_t>(offsetof(FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8, ___ProjectileCollisionSound_21)); }
inline AudioSource_t5196F862B4E60F404613361C90D87FBDD041E93C * get_ProjectileCollisionSound_21() const { return ___ProjectileCollisionSound_21; }
inline AudioSource_t5196F862B4E60F404613361C90D87FBDD041E93C ** get_address_of_ProjectileCollisionSound_21() { return &___ProjectileCollisionSound_21; }
inline void set_ProjectileCollisionSound_21(AudioSource_t5196F862B4E60F404613361C90D87FBDD041E93C * value)
{
___ProjectileCollisionSound_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ProjectileCollisionSound_21), (void*)value);
}
inline static int32_t get_offset_of_ProjectileExplosionParticleSystem_22() { return static_cast<int32_t>(offsetof(FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8, ___ProjectileExplosionParticleSystem_22)); }
inline ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * get_ProjectileExplosionParticleSystem_22() const { return ___ProjectileExplosionParticleSystem_22; }
inline ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D ** get_address_of_ProjectileExplosionParticleSystem_22() { return &___ProjectileExplosionParticleSystem_22; }
inline void set_ProjectileExplosionParticleSystem_22(ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * value)
{
___ProjectileExplosionParticleSystem_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ProjectileExplosionParticleSystem_22), (void*)value);
}
inline static int32_t get_offset_of_ProjectileExplosionRadius_23() { return static_cast<int32_t>(offsetof(FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8, ___ProjectileExplosionRadius_23)); }
inline float get_ProjectileExplosionRadius_23() const { return ___ProjectileExplosionRadius_23; }
inline float* get_address_of_ProjectileExplosionRadius_23() { return &___ProjectileExplosionRadius_23; }
inline void set_ProjectileExplosionRadius_23(float value)
{
___ProjectileExplosionRadius_23 = value;
}
inline static int32_t get_offset_of_ProjectileExplosionForce_24() { return static_cast<int32_t>(offsetof(FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8, ___ProjectileExplosionForce_24)); }
inline float get_ProjectileExplosionForce_24() const { return ___ProjectileExplosionForce_24; }
inline float* get_address_of_ProjectileExplosionForce_24() { return &___ProjectileExplosionForce_24; }
inline void set_ProjectileExplosionForce_24(float value)
{
___ProjectileExplosionForce_24 = value;
}
inline static int32_t get_offset_of_ProjectileColliderDelay_25() { return static_cast<int32_t>(offsetof(FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8, ___ProjectileColliderDelay_25)); }
inline float get_ProjectileColliderDelay_25() const { return ___ProjectileColliderDelay_25; }
inline float* get_address_of_ProjectileColliderDelay_25() { return &___ProjectileColliderDelay_25; }
inline void set_ProjectileColliderDelay_25(float value)
{
___ProjectileColliderDelay_25 = value;
}
inline static int32_t get_offset_of_ProjectileColliderSpeed_26() { return static_cast<int32_t>(offsetof(FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8, ___ProjectileColliderSpeed_26)); }
inline float get_ProjectileColliderSpeed_26() const { return ___ProjectileColliderSpeed_26; }
inline float* get_address_of_ProjectileColliderSpeed_26() { return &___ProjectileColliderSpeed_26; }
inline void set_ProjectileColliderSpeed_26(float value)
{
___ProjectileColliderSpeed_26 = value;
}
inline static int32_t get_offset_of_ProjectileDirection_27() { return static_cast<int32_t>(offsetof(FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8, ___ProjectileDirection_27)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_ProjectileDirection_27() const { return ___ProjectileDirection_27; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_ProjectileDirection_27() { return &___ProjectileDirection_27; }
inline void set_ProjectileDirection_27(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___ProjectileDirection_27 = value;
}
inline static int32_t get_offset_of_ProjectileCollisionLayers_28() { return static_cast<int32_t>(offsetof(FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8, ___ProjectileCollisionLayers_28)); }
inline LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 get_ProjectileCollisionLayers_28() const { return ___ProjectileCollisionLayers_28; }
inline LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 * get_address_of_ProjectileCollisionLayers_28() { return &___ProjectileCollisionLayers_28; }
inline void set_ProjectileCollisionLayers_28(LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 value)
{
___ProjectileCollisionLayers_28 = value;
}
inline static int32_t get_offset_of_ProjectileDestroyParticleSystemsOnCollision_29() { return static_cast<int32_t>(offsetof(FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8, ___ProjectileDestroyParticleSystemsOnCollision_29)); }
inline ParticleSystemU5BU5D_t58EE604F685D8CBA8EFC9353456969F5A1B2FBB9* get_ProjectileDestroyParticleSystemsOnCollision_29() const { return ___ProjectileDestroyParticleSystemsOnCollision_29; }
inline ParticleSystemU5BU5D_t58EE604F685D8CBA8EFC9353456969F5A1B2FBB9** get_address_of_ProjectileDestroyParticleSystemsOnCollision_29() { return &___ProjectileDestroyParticleSystemsOnCollision_29; }
inline void set_ProjectileDestroyParticleSystemsOnCollision_29(ParticleSystemU5BU5D_t58EE604F685D8CBA8EFC9353456969F5A1B2FBB9* value)
{
___ProjectileDestroyParticleSystemsOnCollision_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ProjectileDestroyParticleSystemsOnCollision_29), (void*)value);
}
inline static int32_t get_offset_of_CollisionDelegate_30() { return static_cast<int32_t>(offsetof(FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8, ___CollisionDelegate_30)); }
inline FireProjectileCollisionDelegate_t1E069C484F215AB28294487D1CC250DCADA87033 * get_CollisionDelegate_30() const { return ___CollisionDelegate_30; }
inline FireProjectileCollisionDelegate_t1E069C484F215AB28294487D1CC250DCADA87033 ** get_address_of_CollisionDelegate_30() { return &___CollisionDelegate_30; }
inline void set_CollisionDelegate_30(FireProjectileCollisionDelegate_t1E069C484F215AB28294487D1CC250DCADA87033 * value)
{
___CollisionDelegate_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___CollisionDelegate_30), (void*)value);
}
inline static int32_t get_offset_of_collided_31() { return static_cast<int32_t>(offsetof(FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8, ___collided_31)); }
inline bool get_collided_31() const { return ___collided_31; }
inline bool* get_address_of_collided_31() { return &___collided_31; }
inline void set_collided_31(bool value)
{
___collided_31 = value;
}
};
// DigitalRuby.PyroParticles.MeteorSwarmScript
struct MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1 : public FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E
{
public:
// UnityEngine.GameObject DigitalRuby.PyroParticles.MeteorSwarmScript::MeteorPrefab
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___MeteorPrefab_20;
// UnityEngine.ParticleSystem DigitalRuby.PyroParticles.MeteorSwarmScript::MeteorExplosionParticleSystem
ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * ___MeteorExplosionParticleSystem_21;
// UnityEngine.ParticleSystem DigitalRuby.PyroParticles.MeteorSwarmScript::MeteorShrapnelParticleSystem
ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * ___MeteorShrapnelParticleSystem_22;
// UnityEngine.Material[] DigitalRuby.PyroParticles.MeteorSwarmScript::MeteorMaterials
MaterialU5BU5D_tD2350F98F2A1BB6C7A5FBFE1474DFC47331AB398* ___MeteorMaterials_23;
// UnityEngine.Mesh[] DigitalRuby.PyroParticles.MeteorSwarmScript::MeteorMeshes
MeshU5BU5D_tDD9C723AA6F0225B35A93D871CDC2CEFF7F8CB89* ___MeteorMeshes_24;
// System.Single DigitalRuby.PyroParticles.MeteorSwarmScript::DestinationRadius
float ___DestinationRadius_25;
// UnityEngine.Vector3 DigitalRuby.PyroParticles.MeteorSwarmScript::Source
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___Source_26;
// System.Single DigitalRuby.PyroParticles.MeteorSwarmScript::SourceRadius
float ___SourceRadius_27;
// System.Single DigitalRuby.PyroParticles.MeteorSwarmScript::TimeToImpact
float ___TimeToImpact_28;
// DigitalRuby.PyroParticles.RangeOfIntegers DigitalRuby.PyroParticles.MeteorSwarmScript::MeteorsPerSecondRange
RangeOfIntegers_t7BF24CBD78B99ECC713A5FAD8C4CF8345BD8C041 ___MeteorsPerSecondRange_29;
// DigitalRuby.PyroParticles.RangeOfFloats DigitalRuby.PyroParticles.MeteorSwarmScript::ScaleRange
RangeOfFloats_t76ACB04A2C313C41EE04ED57A2F0E2A9F30EA4F9 ___ScaleRange_30;
// DigitalRuby.PyroParticles.RangeOfFloats DigitalRuby.PyroParticles.MeteorSwarmScript::MeteorLifeTimeRange
RangeOfFloats_t76ACB04A2C313C41EE04ED57A2F0E2A9F30EA4F9 ___MeteorLifeTimeRange_31;
// UnityEngine.AudioClip[] DigitalRuby.PyroParticles.MeteorSwarmScript::EmissionSounds
AudioClipU5BU5D_t03931BD44BC339329210676E452B8ECD3EC171C2* ___EmissionSounds_32;
// UnityEngine.AudioClip[] DigitalRuby.PyroParticles.MeteorSwarmScript::ExplosionSounds
AudioClipU5BU5D_t03931BD44BC339329210676E452B8ECD3EC171C2* ___ExplosionSounds_33;
// DigitalRuby.PyroParticles.MeteorSwarmCollisionDelegate DigitalRuby.PyroParticles.MeteorSwarmScript::CollisionDelegate
MeteorSwarmCollisionDelegate_tAE89940FA15088B9898C111F6B1BB08F95329AF3 * ___CollisionDelegate_34;
// System.Single DigitalRuby.PyroParticles.MeteorSwarmScript::elapsedSecond
float ___elapsedSecond_35;
public:
inline static int32_t get_offset_of_MeteorPrefab_20() { return static_cast<int32_t>(offsetof(MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1, ___MeteorPrefab_20)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_MeteorPrefab_20() const { return ___MeteorPrefab_20; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_MeteorPrefab_20() { return &___MeteorPrefab_20; }
inline void set_MeteorPrefab_20(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___MeteorPrefab_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___MeteorPrefab_20), (void*)value);
}
inline static int32_t get_offset_of_MeteorExplosionParticleSystem_21() { return static_cast<int32_t>(offsetof(MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1, ___MeteorExplosionParticleSystem_21)); }
inline ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * get_MeteorExplosionParticleSystem_21() const { return ___MeteorExplosionParticleSystem_21; }
inline ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D ** get_address_of_MeteorExplosionParticleSystem_21() { return &___MeteorExplosionParticleSystem_21; }
inline void set_MeteorExplosionParticleSystem_21(ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * value)
{
___MeteorExplosionParticleSystem_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___MeteorExplosionParticleSystem_21), (void*)value);
}
inline static int32_t get_offset_of_MeteorShrapnelParticleSystem_22() { return static_cast<int32_t>(offsetof(MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1, ___MeteorShrapnelParticleSystem_22)); }
inline ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * get_MeteorShrapnelParticleSystem_22() const { return ___MeteorShrapnelParticleSystem_22; }
inline ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D ** get_address_of_MeteorShrapnelParticleSystem_22() { return &___MeteorShrapnelParticleSystem_22; }
inline void set_MeteorShrapnelParticleSystem_22(ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D * value)
{
___MeteorShrapnelParticleSystem_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___MeteorShrapnelParticleSystem_22), (void*)value);
}
inline static int32_t get_offset_of_MeteorMaterials_23() { return static_cast<int32_t>(offsetof(MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1, ___MeteorMaterials_23)); }
inline MaterialU5BU5D_tD2350F98F2A1BB6C7A5FBFE1474DFC47331AB398* get_MeteorMaterials_23() const { return ___MeteorMaterials_23; }
inline MaterialU5BU5D_tD2350F98F2A1BB6C7A5FBFE1474DFC47331AB398** get_address_of_MeteorMaterials_23() { return &___MeteorMaterials_23; }
inline void set_MeteorMaterials_23(MaterialU5BU5D_tD2350F98F2A1BB6C7A5FBFE1474DFC47331AB398* value)
{
___MeteorMaterials_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___MeteorMaterials_23), (void*)value);
}
inline static int32_t get_offset_of_MeteorMeshes_24() { return static_cast<int32_t>(offsetof(MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1, ___MeteorMeshes_24)); }
inline MeshU5BU5D_tDD9C723AA6F0225B35A93D871CDC2CEFF7F8CB89* get_MeteorMeshes_24() const { return ___MeteorMeshes_24; }
inline MeshU5BU5D_tDD9C723AA6F0225B35A93D871CDC2CEFF7F8CB89** get_address_of_MeteorMeshes_24() { return &___MeteorMeshes_24; }
inline void set_MeteorMeshes_24(MeshU5BU5D_tDD9C723AA6F0225B35A93D871CDC2CEFF7F8CB89* value)
{
___MeteorMeshes_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___MeteorMeshes_24), (void*)value);
}
inline static int32_t get_offset_of_DestinationRadius_25() { return static_cast<int32_t>(offsetof(MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1, ___DestinationRadius_25)); }
inline float get_DestinationRadius_25() const { return ___DestinationRadius_25; }
inline float* get_address_of_DestinationRadius_25() { return &___DestinationRadius_25; }
inline void set_DestinationRadius_25(float value)
{
___DestinationRadius_25 = value;
}
inline static int32_t get_offset_of_Source_26() { return static_cast<int32_t>(offsetof(MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1, ___Source_26)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_Source_26() const { return ___Source_26; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_Source_26() { return &___Source_26; }
inline void set_Source_26(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___Source_26 = value;
}
inline static int32_t get_offset_of_SourceRadius_27() { return static_cast<int32_t>(offsetof(MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1, ___SourceRadius_27)); }
inline float get_SourceRadius_27() const { return ___SourceRadius_27; }
inline float* get_address_of_SourceRadius_27() { return &___SourceRadius_27; }
inline void set_SourceRadius_27(float value)
{
___SourceRadius_27 = value;
}
inline static int32_t get_offset_of_TimeToImpact_28() { return static_cast<int32_t>(offsetof(MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1, ___TimeToImpact_28)); }
inline float get_TimeToImpact_28() const { return ___TimeToImpact_28; }
inline float* get_address_of_TimeToImpact_28() { return &___TimeToImpact_28; }
inline void set_TimeToImpact_28(float value)
{
___TimeToImpact_28 = value;
}
inline static int32_t get_offset_of_MeteorsPerSecondRange_29() { return static_cast<int32_t>(offsetof(MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1, ___MeteorsPerSecondRange_29)); }
inline RangeOfIntegers_t7BF24CBD78B99ECC713A5FAD8C4CF8345BD8C041 get_MeteorsPerSecondRange_29() const { return ___MeteorsPerSecondRange_29; }
inline RangeOfIntegers_t7BF24CBD78B99ECC713A5FAD8C4CF8345BD8C041 * get_address_of_MeteorsPerSecondRange_29() { return &___MeteorsPerSecondRange_29; }
inline void set_MeteorsPerSecondRange_29(RangeOfIntegers_t7BF24CBD78B99ECC713A5FAD8C4CF8345BD8C041 value)
{
___MeteorsPerSecondRange_29 = value;
}
inline static int32_t get_offset_of_ScaleRange_30() { return static_cast<int32_t>(offsetof(MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1, ___ScaleRange_30)); }
inline RangeOfFloats_t76ACB04A2C313C41EE04ED57A2F0E2A9F30EA4F9 get_ScaleRange_30() const { return ___ScaleRange_30; }
inline RangeOfFloats_t76ACB04A2C313C41EE04ED57A2F0E2A9F30EA4F9 * get_address_of_ScaleRange_30() { return &___ScaleRange_30; }
inline void set_ScaleRange_30(RangeOfFloats_t76ACB04A2C313C41EE04ED57A2F0E2A9F30EA4F9 value)
{
___ScaleRange_30 = value;
}
inline static int32_t get_offset_of_MeteorLifeTimeRange_31() { return static_cast<int32_t>(offsetof(MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1, ___MeteorLifeTimeRange_31)); }
inline RangeOfFloats_t76ACB04A2C313C41EE04ED57A2F0E2A9F30EA4F9 get_MeteorLifeTimeRange_31() const { return ___MeteorLifeTimeRange_31; }
inline RangeOfFloats_t76ACB04A2C313C41EE04ED57A2F0E2A9F30EA4F9 * get_address_of_MeteorLifeTimeRange_31() { return &___MeteorLifeTimeRange_31; }
inline void set_MeteorLifeTimeRange_31(RangeOfFloats_t76ACB04A2C313C41EE04ED57A2F0E2A9F30EA4F9 value)
{
___MeteorLifeTimeRange_31 = value;
}
inline static int32_t get_offset_of_EmissionSounds_32() { return static_cast<int32_t>(offsetof(MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1, ___EmissionSounds_32)); }
inline AudioClipU5BU5D_t03931BD44BC339329210676E452B8ECD3EC171C2* get_EmissionSounds_32() const { return ___EmissionSounds_32; }
inline AudioClipU5BU5D_t03931BD44BC339329210676E452B8ECD3EC171C2** get_address_of_EmissionSounds_32() { return &___EmissionSounds_32; }
inline void set_EmissionSounds_32(AudioClipU5BU5D_t03931BD44BC339329210676E452B8ECD3EC171C2* value)
{
___EmissionSounds_32 = value;
Il2CppCodeGenWriteBarrier((void**)(&___EmissionSounds_32), (void*)value);
}
inline static int32_t get_offset_of_ExplosionSounds_33() { return static_cast<int32_t>(offsetof(MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1, ___ExplosionSounds_33)); }
inline AudioClipU5BU5D_t03931BD44BC339329210676E452B8ECD3EC171C2* get_ExplosionSounds_33() const { return ___ExplosionSounds_33; }
inline AudioClipU5BU5D_t03931BD44BC339329210676E452B8ECD3EC171C2** get_address_of_ExplosionSounds_33() { return &___ExplosionSounds_33; }
inline void set_ExplosionSounds_33(AudioClipU5BU5D_t03931BD44BC339329210676E452B8ECD3EC171C2* value)
{
___ExplosionSounds_33 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ExplosionSounds_33), (void*)value);
}
inline static int32_t get_offset_of_CollisionDelegate_34() { return static_cast<int32_t>(offsetof(MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1, ___CollisionDelegate_34)); }
inline MeteorSwarmCollisionDelegate_tAE89940FA15088B9898C111F6B1BB08F95329AF3 * get_CollisionDelegate_34() const { return ___CollisionDelegate_34; }
inline MeteorSwarmCollisionDelegate_tAE89940FA15088B9898C111F6B1BB08F95329AF3 ** get_address_of_CollisionDelegate_34() { return &___CollisionDelegate_34; }
inline void set_CollisionDelegate_34(MeteorSwarmCollisionDelegate_tAE89940FA15088B9898C111F6B1BB08F95329AF3 * value)
{
___CollisionDelegate_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___CollisionDelegate_34), (void*)value);
}
inline static int32_t get_offset_of_elapsedSecond_35() { return static_cast<int32_t>(offsetof(MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1, ___elapsedSecond_35)); }
inline float get_elapsedSecond_35() const { return ___elapsedSecond_35; }
inline float* get_address_of_elapsedSecond_35() { return &___elapsedSecond_35; }
inline void set_elapsedSecond_35(float value)
{
___elapsedSecond_35 = 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.LayoutElement
struct LayoutElement_tD503826DB41B6EA85AC689292F8B2661B3C1048B : public UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70
{
public:
// System.Boolean UnityEngine.UI.LayoutElement::m_IgnoreLayout
bool ___m_IgnoreLayout_4;
// System.Single UnityEngine.UI.LayoutElement::m_MinWidth
float ___m_MinWidth_5;
// System.Single UnityEngine.UI.LayoutElement::m_MinHeight
float ___m_MinHeight_6;
// System.Single UnityEngine.UI.LayoutElement::m_PreferredWidth
float ___m_PreferredWidth_7;
// System.Single UnityEngine.UI.LayoutElement::m_PreferredHeight
float ___m_PreferredHeight_8;
// System.Single UnityEngine.UI.LayoutElement::m_FlexibleWidth
float ___m_FlexibleWidth_9;
// System.Single UnityEngine.UI.LayoutElement::m_FlexibleHeight
float ___m_FlexibleHeight_10;
// System.Int32 UnityEngine.UI.LayoutElement::m_LayoutPriority
int32_t ___m_LayoutPriority_11;
public:
inline static int32_t get_offset_of_m_IgnoreLayout_4() { return static_cast<int32_t>(offsetof(LayoutElement_tD503826DB41B6EA85AC689292F8B2661B3C1048B, ___m_IgnoreLayout_4)); }
inline bool get_m_IgnoreLayout_4() const { return ___m_IgnoreLayout_4; }
inline bool* get_address_of_m_IgnoreLayout_4() { return &___m_IgnoreLayout_4; }
inline void set_m_IgnoreLayout_4(bool value)
{
___m_IgnoreLayout_4 = value;
}
inline static int32_t get_offset_of_m_MinWidth_5() { return static_cast<int32_t>(offsetof(LayoutElement_tD503826DB41B6EA85AC689292F8B2661B3C1048B, ___m_MinWidth_5)); }
inline float get_m_MinWidth_5() const { return ___m_MinWidth_5; }
inline float* get_address_of_m_MinWidth_5() { return &___m_MinWidth_5; }
inline void set_m_MinWidth_5(float value)
{
___m_MinWidth_5 = value;
}
inline static int32_t get_offset_of_m_MinHeight_6() { return static_cast<int32_t>(offsetof(LayoutElement_tD503826DB41B6EA85AC689292F8B2661B3C1048B, ___m_MinHeight_6)); }
inline float get_m_MinHeight_6() const { return ___m_MinHeight_6; }
inline float* get_address_of_m_MinHeight_6() { return &___m_MinHeight_6; }
inline void set_m_MinHeight_6(float value)
{
___m_MinHeight_6 = value;
}
inline static int32_t get_offset_of_m_PreferredWidth_7() { return static_cast<int32_t>(offsetof(LayoutElement_tD503826DB41B6EA85AC689292F8B2661B3C1048B, ___m_PreferredWidth_7)); }
inline float get_m_PreferredWidth_7() const { return ___m_PreferredWidth_7; }
inline float* get_address_of_m_PreferredWidth_7() { return &___m_PreferredWidth_7; }
inline void set_m_PreferredWidth_7(float value)
{
___m_PreferredWidth_7 = value;
}
inline static int32_t get_offset_of_m_PreferredHeight_8() { return static_cast<int32_t>(offsetof(LayoutElement_tD503826DB41B6EA85AC689292F8B2661B3C1048B, ___m_PreferredHeight_8)); }
inline float get_m_PreferredHeight_8() const { return ___m_PreferredHeight_8; }
inline float* get_address_of_m_PreferredHeight_8() { return &___m_PreferredHeight_8; }
inline void set_m_PreferredHeight_8(float value)
{
___m_PreferredHeight_8 = value;
}
inline static int32_t get_offset_of_m_FlexibleWidth_9() { return static_cast<int32_t>(offsetof(LayoutElement_tD503826DB41B6EA85AC689292F8B2661B3C1048B, ___m_FlexibleWidth_9)); }
inline float get_m_FlexibleWidth_9() const { return ___m_FlexibleWidth_9; }
inline float* get_address_of_m_FlexibleWidth_9() { return &___m_FlexibleWidth_9; }
inline void set_m_FlexibleWidth_9(float value)
{
___m_FlexibleWidth_9 = value;
}
inline static int32_t get_offset_of_m_FlexibleHeight_10() { return static_cast<int32_t>(offsetof(LayoutElement_tD503826DB41B6EA85AC689292F8B2661B3C1048B, ___m_FlexibleHeight_10)); }
inline float get_m_FlexibleHeight_10() const { return ___m_FlexibleHeight_10; }
inline float* get_address_of_m_FlexibleHeight_10() { return &___m_FlexibleHeight_10; }
inline void set_m_FlexibleHeight_10(float value)
{
___m_FlexibleHeight_10 = value;
}
inline static int32_t get_offset_of_m_LayoutPriority_11() { return static_cast<int32_t>(offsetof(LayoutElement_tD503826DB41B6EA85AC689292F8B2661B3C1048B, ___m_LayoutPriority_11)); }
inline int32_t get_m_LayoutPriority_11() const { return ___m_LayoutPriority_11; }
inline int32_t* get_address_of_m_LayoutPriority_11() { return &___m_LayoutPriority_11; }
inline void set_m_LayoutPriority_11(int32_t value)
{
___m_LayoutPriority_11 = value;
}
};
// UnityEngine.UI.LayoutGroup
struct LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4 : public UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70
{
public:
// UnityEngine.RectOffset UnityEngine.UI.LayoutGroup::m_Padding
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * ___m_Padding_4;
// UnityEngine.TextAnchor UnityEngine.UI.LayoutGroup::m_ChildAlignment
int32_t ___m_ChildAlignment_5;
// UnityEngine.RectTransform UnityEngine.UI.LayoutGroup::m_Rect
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_Rect_6;
// UnityEngine.DrivenRectTransformTracker UnityEngine.UI.LayoutGroup::m_Tracker
DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 ___m_Tracker_7;
// UnityEngine.Vector2 UnityEngine.UI.LayoutGroup::m_TotalMinSize
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_TotalMinSize_8;
// UnityEngine.Vector2 UnityEngine.UI.LayoutGroup::m_TotalPreferredSize
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_TotalPreferredSize_9;
// UnityEngine.Vector2 UnityEngine.UI.LayoutGroup::m_TotalFlexibleSize
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_TotalFlexibleSize_10;
// System.Collections.Generic.List`1<UnityEngine.RectTransform> UnityEngine.UI.LayoutGroup::m_RectChildren
List_1_tDDCC3FF04B4444A45BC27D94CC0369A8CF06DBF9 * ___m_RectChildren_11;
public:
inline static int32_t get_offset_of_m_Padding_4() { return static_cast<int32_t>(offsetof(LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4, ___m_Padding_4)); }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * get_m_Padding_4() const { return ___m_Padding_4; }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A ** get_address_of_m_Padding_4() { return &___m_Padding_4; }
inline void set_m_Padding_4(RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * value)
{
___m_Padding_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Padding_4), (void*)value);
}
inline static int32_t get_offset_of_m_ChildAlignment_5() { return static_cast<int32_t>(offsetof(LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4, ___m_ChildAlignment_5)); }
inline int32_t get_m_ChildAlignment_5() const { return ___m_ChildAlignment_5; }
inline int32_t* get_address_of_m_ChildAlignment_5() { return &___m_ChildAlignment_5; }
inline void set_m_ChildAlignment_5(int32_t value)
{
___m_ChildAlignment_5 = value;
}
inline static int32_t get_offset_of_m_Rect_6() { return static_cast<int32_t>(offsetof(LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4, ___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(LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4, ___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;
}
inline static int32_t get_offset_of_m_TotalMinSize_8() { return static_cast<int32_t>(offsetof(LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4, ___m_TotalMinSize_8)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_TotalMinSize_8() const { return ___m_TotalMinSize_8; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_TotalMinSize_8() { return &___m_TotalMinSize_8; }
inline void set_m_TotalMinSize_8(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_TotalMinSize_8 = value;
}
inline static int32_t get_offset_of_m_TotalPreferredSize_9() { return static_cast<int32_t>(offsetof(LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4, ___m_TotalPreferredSize_9)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_TotalPreferredSize_9() const { return ___m_TotalPreferredSize_9; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_TotalPreferredSize_9() { return &___m_TotalPreferredSize_9; }
inline void set_m_TotalPreferredSize_9(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_TotalPreferredSize_9 = value;
}
inline static int32_t get_offset_of_m_TotalFlexibleSize_10() { return static_cast<int32_t>(offsetof(LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4, ___m_TotalFlexibleSize_10)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_TotalFlexibleSize_10() const { return ___m_TotalFlexibleSize_10; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_TotalFlexibleSize_10() { return &___m_TotalFlexibleSize_10; }
inline void set_m_TotalFlexibleSize_10(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_TotalFlexibleSize_10 = value;
}
inline static int32_t get_offset_of_m_RectChildren_11() { return static_cast<int32_t>(offsetof(LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4, ___m_RectChildren_11)); }
inline List_1_tDDCC3FF04B4444A45BC27D94CC0369A8CF06DBF9 * get_m_RectChildren_11() const { return ___m_RectChildren_11; }
inline List_1_tDDCC3FF04B4444A45BC27D94CC0369A8CF06DBF9 ** get_address_of_m_RectChildren_11() { return &___m_RectChildren_11; }
inline void set_m_RectChildren_11(List_1_tDDCC3FF04B4444A45BC27D94CC0369A8CF06DBF9 * value)
{
___m_RectChildren_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RectChildren_11), (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.Canvas UnityEngine.UI.RectMask2D::m_Canvas
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * ___m_Canvas_12;
// UnityEngine.Vector3[] UnityEngine.UI.RectMask2D::m_Corners
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___m_Corners_13;
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_Canvas_12() { return static_cast<int32_t>(offsetof(RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B, ___m_Canvas_12)); }
inline Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * get_m_Canvas_12() const { return ___m_Canvas_12; }
inline Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 ** get_address_of_m_Canvas_12() { return &___m_Canvas_12; }
inline void set_m_Canvas_12(Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * value)
{
___m_Canvas_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Canvas_12), (void*)value);
}
inline static int32_t get_offset_of_m_Corners_13() { return static_cast<int32_t>(offsetof(RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B, ___m_Corners_13)); }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get_m_Corners_13() const { return ___m_Corners_13; }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of_m_Corners_13() { return &___m_Corners_13; }
inline void set_m_Corners_13(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value)
{
___m_Corners_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Corners_13), (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:
// 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.Boolean UnityEngine.UI.Selectable::m_WillRemove
bool ___m_WillRemove_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_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_WillRemove_15() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_WillRemove_15)); }
inline bool get_m_WillRemove_15() const { return ___m_WillRemove_15; }
inline bool* get_address_of_m_WillRemove_15() { return &___m_WillRemove_15; }
inline void set_m_WillRemove_15(bool value)
{
___m_WillRemove_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;
// System.Boolean UnityEngine.UI.Selectable::s_IsDirty
bool ___s_IsDirty_6;
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;
}
inline static int32_t get_offset_of_s_IsDirty_6() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A_StaticFields, ___s_IsDirty_6)); }
inline bool get_s_IsDirty_6() const { return ___s_IsDirty_6; }
inline bool* get_address_of_s_IsDirty_6() { return &___s_IsDirty_6; }
inline void set_s_IsDirty_6(bool value)
{
___s_IsDirty_6 = value;
}
};
// UnityEngine.UI.ToggleGroup
struct ToggleGroup_t11E2B254D3C968C7D0DA11C606CC06D7D7F0D786 : public UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70
{
public:
// System.Boolean UnityEngine.UI.ToggleGroup::m_AllowSwitchOff
bool ___m_AllowSwitchOff_4;
// System.Collections.Generic.List`1<UnityEngine.UI.Toggle> UnityEngine.UI.ToggleGroup::m_Toggles
List_1_t9A1ED3F2609B3A388592230F34505BA9CC298FA2 * ___m_Toggles_5;
public:
inline static int32_t get_offset_of_m_AllowSwitchOff_4() { return static_cast<int32_t>(offsetof(ToggleGroup_t11E2B254D3C968C7D0DA11C606CC06D7D7F0D786, ___m_AllowSwitchOff_4)); }
inline bool get_m_AllowSwitchOff_4() const { return ___m_AllowSwitchOff_4; }
inline bool* get_address_of_m_AllowSwitchOff_4() { return &___m_AllowSwitchOff_4; }
inline void set_m_AllowSwitchOff_4(bool value)
{
___m_AllowSwitchOff_4 = value;
}
inline static int32_t get_offset_of_m_Toggles_5() { return static_cast<int32_t>(offsetof(ToggleGroup_t11E2B254D3C968C7D0DA11C606CC06D7D7F0D786, ___m_Toggles_5)); }
inline List_1_t9A1ED3F2609B3A388592230F34505BA9CC298FA2 * get_m_Toggles_5() const { return ___m_Toggles_5; }
inline List_1_t9A1ED3F2609B3A388592230F34505BA9CC298FA2 ** get_address_of_m_Toggles_5() { return &___m_Toggles_5; }
inline void set_m_Toggles_5(List_1_t9A1ED3F2609B3A388592230F34505BA9CC298FA2 * value)
{
___m_Toggles_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Toggles_5), (void*)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.BoxSlider
struct BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A : public Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A
{
public:
// UnityEngine.RectTransform UnityEngine.UI.BoxSlider::m_HandleRect
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_HandleRect_20;
// System.Single UnityEngine.UI.BoxSlider::m_MinValue
float ___m_MinValue_21;
// System.Single UnityEngine.UI.BoxSlider::m_MaxValue
float ___m_MaxValue_22;
// System.Boolean UnityEngine.UI.BoxSlider::m_WholeNumbers
bool ___m_WholeNumbers_23;
// System.Single UnityEngine.UI.BoxSlider::m_Value
float ___m_Value_24;
// System.Single UnityEngine.UI.BoxSlider::m_ValueY
float ___m_ValueY_25;
// UnityEngine.UI.BoxSlider_BoxSliderEvent UnityEngine.UI.BoxSlider::m_OnValueChanged
BoxSliderEvent_t2E59E1AD1FFFC4D521C2865063F16C634BF59706 * ___m_OnValueChanged_26;
// UnityEngine.Transform UnityEngine.UI.BoxSlider::m_HandleTransform
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___m_HandleTransform_27;
// UnityEngine.RectTransform UnityEngine.UI.BoxSlider::m_HandleContainerRect
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_HandleContainerRect_28;
// UnityEngine.Vector2 UnityEngine.UI.BoxSlider::m_Offset
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Offset_29;
// UnityEngine.DrivenRectTransformTracker UnityEngine.UI.BoxSlider::m_Tracker
DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 ___m_Tracker_30;
public:
inline static int32_t get_offset_of_m_HandleRect_20() { return static_cast<int32_t>(offsetof(BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A, ___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_MinValue_21() { return static_cast<int32_t>(offsetof(BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A, ___m_MinValue_21)); }
inline float get_m_MinValue_21() const { return ___m_MinValue_21; }
inline float* get_address_of_m_MinValue_21() { return &___m_MinValue_21; }
inline void set_m_MinValue_21(float value)
{
___m_MinValue_21 = value;
}
inline static int32_t get_offset_of_m_MaxValue_22() { return static_cast<int32_t>(offsetof(BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A, ___m_MaxValue_22)); }
inline float get_m_MaxValue_22() const { return ___m_MaxValue_22; }
inline float* get_address_of_m_MaxValue_22() { return &___m_MaxValue_22; }
inline void set_m_MaxValue_22(float value)
{
___m_MaxValue_22 = value;
}
inline static int32_t get_offset_of_m_WholeNumbers_23() { return static_cast<int32_t>(offsetof(BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A, ___m_WholeNumbers_23)); }
inline bool get_m_WholeNumbers_23() const { return ___m_WholeNumbers_23; }
inline bool* get_address_of_m_WholeNumbers_23() { return &___m_WholeNumbers_23; }
inline void set_m_WholeNumbers_23(bool value)
{
___m_WholeNumbers_23 = value;
}
inline static int32_t get_offset_of_m_Value_24() { return static_cast<int32_t>(offsetof(BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A, ___m_Value_24)); }
inline float get_m_Value_24() const { return ___m_Value_24; }
inline float* get_address_of_m_Value_24() { return &___m_Value_24; }
inline void set_m_Value_24(float value)
{
___m_Value_24 = value;
}
inline static int32_t get_offset_of_m_ValueY_25() { return static_cast<int32_t>(offsetof(BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A, ___m_ValueY_25)); }
inline float get_m_ValueY_25() const { return ___m_ValueY_25; }
inline float* get_address_of_m_ValueY_25() { return &___m_ValueY_25; }
inline void set_m_ValueY_25(float value)
{
___m_ValueY_25 = value;
}
inline static int32_t get_offset_of_m_OnValueChanged_26() { return static_cast<int32_t>(offsetof(BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A, ___m_OnValueChanged_26)); }
inline BoxSliderEvent_t2E59E1AD1FFFC4D521C2865063F16C634BF59706 * get_m_OnValueChanged_26() const { return ___m_OnValueChanged_26; }
inline BoxSliderEvent_t2E59E1AD1FFFC4D521C2865063F16C634BF59706 ** get_address_of_m_OnValueChanged_26() { return &___m_OnValueChanged_26; }
inline void set_m_OnValueChanged_26(BoxSliderEvent_t2E59E1AD1FFFC4D521C2865063F16C634BF59706 * value)
{
___m_OnValueChanged_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnValueChanged_26), (void*)value);
}
inline static int32_t get_offset_of_m_HandleTransform_27() { return static_cast<int32_t>(offsetof(BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A, ___m_HandleTransform_27)); }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_m_HandleTransform_27() const { return ___m_HandleTransform_27; }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_m_HandleTransform_27() { return &___m_HandleTransform_27; }
inline void set_m_HandleTransform_27(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value)
{
___m_HandleTransform_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HandleTransform_27), (void*)value);
}
inline static int32_t get_offset_of_m_HandleContainerRect_28() { return static_cast<int32_t>(offsetof(BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A, ___m_HandleContainerRect_28)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_HandleContainerRect_28() const { return ___m_HandleContainerRect_28; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_HandleContainerRect_28() { return &___m_HandleContainerRect_28; }
inline void set_m_HandleContainerRect_28(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_HandleContainerRect_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HandleContainerRect_28), (void*)value);
}
inline static int32_t get_offset_of_m_Offset_29() { return static_cast<int32_t>(offsetof(BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A, ___m_Offset_29)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Offset_29() const { return ___m_Offset_29; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Offset_29() { return &___m_Offset_29; }
inline void set_m_Offset_29(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Offset_29 = value;
}
inline static int32_t get_offset_of_m_Tracker_30() { return static_cast<int32_t>(offsetof(BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A, ___m_Tracker_30)); }
inline DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 get_m_Tracker_30() const { return ___m_Tracker_30; }
inline DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 * get_address_of_m_Tracker_30() { return &___m_Tracker_30; }
inline void set_m_Tracker_30(DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 value)
{
___m_Tracker_30 = 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.GridLayoutGroup
struct GridLayoutGroup_t1C70294BD2567FD584672222A8BFD5A0DF1CA2A8 : public LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4
{
public:
// UnityEngine.UI.GridLayoutGroup_Corner UnityEngine.UI.GridLayoutGroup::m_StartCorner
int32_t ___m_StartCorner_12;
// UnityEngine.UI.GridLayoutGroup_Axis UnityEngine.UI.GridLayoutGroup::m_StartAxis
int32_t ___m_StartAxis_13;
// UnityEngine.Vector2 UnityEngine.UI.GridLayoutGroup::m_CellSize
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_CellSize_14;
// UnityEngine.Vector2 UnityEngine.UI.GridLayoutGroup::m_Spacing
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Spacing_15;
// UnityEngine.UI.GridLayoutGroup_Constraint UnityEngine.UI.GridLayoutGroup::m_Constraint
int32_t ___m_Constraint_16;
// System.Int32 UnityEngine.UI.GridLayoutGroup::m_ConstraintCount
int32_t ___m_ConstraintCount_17;
public:
inline static int32_t get_offset_of_m_StartCorner_12() { return static_cast<int32_t>(offsetof(GridLayoutGroup_t1C70294BD2567FD584672222A8BFD5A0DF1CA2A8, ___m_StartCorner_12)); }
inline int32_t get_m_StartCorner_12() const { return ___m_StartCorner_12; }
inline int32_t* get_address_of_m_StartCorner_12() { return &___m_StartCorner_12; }
inline void set_m_StartCorner_12(int32_t value)
{
___m_StartCorner_12 = value;
}
inline static int32_t get_offset_of_m_StartAxis_13() { return static_cast<int32_t>(offsetof(GridLayoutGroup_t1C70294BD2567FD584672222A8BFD5A0DF1CA2A8, ___m_StartAxis_13)); }
inline int32_t get_m_StartAxis_13() const { return ___m_StartAxis_13; }
inline int32_t* get_address_of_m_StartAxis_13() { return &___m_StartAxis_13; }
inline void set_m_StartAxis_13(int32_t value)
{
___m_StartAxis_13 = value;
}
inline static int32_t get_offset_of_m_CellSize_14() { return static_cast<int32_t>(offsetof(GridLayoutGroup_t1C70294BD2567FD584672222A8BFD5A0DF1CA2A8, ___m_CellSize_14)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_CellSize_14() const { return ___m_CellSize_14; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_CellSize_14() { return &___m_CellSize_14; }
inline void set_m_CellSize_14(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_CellSize_14 = value;
}
inline static int32_t get_offset_of_m_Spacing_15() { return static_cast<int32_t>(offsetof(GridLayoutGroup_t1C70294BD2567FD584672222A8BFD5A0DF1CA2A8, ___m_Spacing_15)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Spacing_15() const { return ___m_Spacing_15; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Spacing_15() { return &___m_Spacing_15; }
inline void set_m_Spacing_15(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Spacing_15 = value;
}
inline static int32_t get_offset_of_m_Constraint_16() { return static_cast<int32_t>(offsetof(GridLayoutGroup_t1C70294BD2567FD584672222A8BFD5A0DF1CA2A8, ___m_Constraint_16)); }
inline int32_t get_m_Constraint_16() const { return ___m_Constraint_16; }
inline int32_t* get_address_of_m_Constraint_16() { return &___m_Constraint_16; }
inline void set_m_Constraint_16(int32_t value)
{
___m_Constraint_16 = value;
}
inline static int32_t get_offset_of_m_ConstraintCount_17() { return static_cast<int32_t>(offsetof(GridLayoutGroup_t1C70294BD2567FD584672222A8BFD5A0DF1CA2A8, ___m_ConstraintCount_17)); }
inline int32_t get_m_ConstraintCount_17() const { return ___m_ConstraintCount_17; }
inline int32_t* get_address_of_m_ConstraintCount_17() { return &___m_ConstraintCount_17; }
inline void set_m_ConstraintCount_17(int32_t value)
{
___m_ConstraintCount_17 = value;
}
};
// UnityEngine.UI.HorizontalOrVerticalLayoutGroup
struct HorizontalOrVerticalLayoutGroup_tFE5C3DB19C2CC4906B3E5D5F4E1966CB585174AB : public LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4
{
public:
// System.Single UnityEngine.UI.HorizontalOrVerticalLayoutGroup::m_Spacing
float ___m_Spacing_12;
// System.Boolean UnityEngine.UI.HorizontalOrVerticalLayoutGroup::m_ChildForceExpandWidth
bool ___m_ChildForceExpandWidth_13;
// System.Boolean UnityEngine.UI.HorizontalOrVerticalLayoutGroup::m_ChildForceExpandHeight
bool ___m_ChildForceExpandHeight_14;
// System.Boolean UnityEngine.UI.HorizontalOrVerticalLayoutGroup::m_ChildControlWidth
bool ___m_ChildControlWidth_15;
// System.Boolean UnityEngine.UI.HorizontalOrVerticalLayoutGroup::m_ChildControlHeight
bool ___m_ChildControlHeight_16;
// System.Boolean UnityEngine.UI.HorizontalOrVerticalLayoutGroup::m_ChildScaleWidth
bool ___m_ChildScaleWidth_17;
// System.Boolean UnityEngine.UI.HorizontalOrVerticalLayoutGroup::m_ChildScaleHeight
bool ___m_ChildScaleHeight_18;
public:
inline static int32_t get_offset_of_m_Spacing_12() { return static_cast<int32_t>(offsetof(HorizontalOrVerticalLayoutGroup_tFE5C3DB19C2CC4906B3E5D5F4E1966CB585174AB, ___m_Spacing_12)); }
inline float get_m_Spacing_12() const { return ___m_Spacing_12; }
inline float* get_address_of_m_Spacing_12() { return &___m_Spacing_12; }
inline void set_m_Spacing_12(float value)
{
___m_Spacing_12 = value;
}
inline static int32_t get_offset_of_m_ChildForceExpandWidth_13() { return static_cast<int32_t>(offsetof(HorizontalOrVerticalLayoutGroup_tFE5C3DB19C2CC4906B3E5D5F4E1966CB585174AB, ___m_ChildForceExpandWidth_13)); }
inline bool get_m_ChildForceExpandWidth_13() const { return ___m_ChildForceExpandWidth_13; }
inline bool* get_address_of_m_ChildForceExpandWidth_13() { return &___m_ChildForceExpandWidth_13; }
inline void set_m_ChildForceExpandWidth_13(bool value)
{
___m_ChildForceExpandWidth_13 = value;
}
inline static int32_t get_offset_of_m_ChildForceExpandHeight_14() { return static_cast<int32_t>(offsetof(HorizontalOrVerticalLayoutGroup_tFE5C3DB19C2CC4906B3E5D5F4E1966CB585174AB, ___m_ChildForceExpandHeight_14)); }
inline bool get_m_ChildForceExpandHeight_14() const { return ___m_ChildForceExpandHeight_14; }
inline bool* get_address_of_m_ChildForceExpandHeight_14() { return &___m_ChildForceExpandHeight_14; }
inline void set_m_ChildForceExpandHeight_14(bool value)
{
___m_ChildForceExpandHeight_14 = value;
}
inline static int32_t get_offset_of_m_ChildControlWidth_15() { return static_cast<int32_t>(offsetof(HorizontalOrVerticalLayoutGroup_tFE5C3DB19C2CC4906B3E5D5F4E1966CB585174AB, ___m_ChildControlWidth_15)); }
inline bool get_m_ChildControlWidth_15() const { return ___m_ChildControlWidth_15; }
inline bool* get_address_of_m_ChildControlWidth_15() { return &___m_ChildControlWidth_15; }
inline void set_m_ChildControlWidth_15(bool value)
{
___m_ChildControlWidth_15 = value;
}
inline static int32_t get_offset_of_m_ChildControlHeight_16() { return static_cast<int32_t>(offsetof(HorizontalOrVerticalLayoutGroup_tFE5C3DB19C2CC4906B3E5D5F4E1966CB585174AB, ___m_ChildControlHeight_16)); }
inline bool get_m_ChildControlHeight_16() const { return ___m_ChildControlHeight_16; }
inline bool* get_address_of_m_ChildControlHeight_16() { return &___m_ChildControlHeight_16; }
inline void set_m_ChildControlHeight_16(bool value)
{
___m_ChildControlHeight_16 = value;
}
inline static int32_t get_offset_of_m_ChildScaleWidth_17() { return static_cast<int32_t>(offsetof(HorizontalOrVerticalLayoutGroup_tFE5C3DB19C2CC4906B3E5D5F4E1966CB585174AB, ___m_ChildScaleWidth_17)); }
inline bool get_m_ChildScaleWidth_17() const { return ___m_ChildScaleWidth_17; }
inline bool* get_address_of_m_ChildScaleWidth_17() { return &___m_ChildScaleWidth_17; }
inline void set_m_ChildScaleWidth_17(bool value)
{
___m_ChildScaleWidth_17 = value;
}
inline static int32_t get_offset_of_m_ChildScaleHeight_18() { return static_cast<int32_t>(offsetof(HorizontalOrVerticalLayoutGroup_tFE5C3DB19C2CC4906B3E5D5F4E1966CB585174AB, ___m_ChildScaleHeight_18)); }
inline bool get_m_ChildScaleHeight_18() const { return ___m_ChildScaleHeight_18; }
inline bool* get_address_of_m_ChildScaleHeight_18() { return &___m_ChildScaleHeight_18; }
inline void set_m_ChildScaleHeight_18(bool value)
{
___m_ChildScaleHeight_18 = 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_IncludeForMasking
bool ___m_IncludeForMasking_29;
// UnityEngine.UI.MaskableGraphic_CullStateChangedEvent UnityEngine.UI.MaskableGraphic::m_OnCullStateChanged
CullStateChangedEvent_t6BC3E87DBC04B585798460D55F56B86C23B62FE4 * ___m_OnCullStateChanged_30;
// System.Boolean UnityEngine.UI.MaskableGraphic::m_ShouldRecalculate
bool ___m_ShouldRecalculate_31;
// System.Int32 UnityEngine.UI.MaskableGraphic::m_StencilValue
int32_t ___m_StencilValue_32;
// UnityEngine.Vector3[] UnityEngine.UI.MaskableGraphic::m_Corners
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___m_Corners_33;
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_IncludeForMasking_29() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_IncludeForMasking_29)); }
inline bool get_m_IncludeForMasking_29() const { return ___m_IncludeForMasking_29; }
inline bool* get_address_of_m_IncludeForMasking_29() { return &___m_IncludeForMasking_29; }
inline void set_m_IncludeForMasking_29(bool value)
{
___m_IncludeForMasking_29 = value;
}
inline static int32_t get_offset_of_m_OnCullStateChanged_30() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_OnCullStateChanged_30)); }
inline CullStateChangedEvent_t6BC3E87DBC04B585798460D55F56B86C23B62FE4 * get_m_OnCullStateChanged_30() const { return ___m_OnCullStateChanged_30; }
inline CullStateChangedEvent_t6BC3E87DBC04B585798460D55F56B86C23B62FE4 ** get_address_of_m_OnCullStateChanged_30() { return &___m_OnCullStateChanged_30; }
inline void set_m_OnCullStateChanged_30(CullStateChangedEvent_t6BC3E87DBC04B585798460D55F56B86C23B62FE4 * value)
{
___m_OnCullStateChanged_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnCullStateChanged_30), (void*)value);
}
inline static int32_t get_offset_of_m_ShouldRecalculate_31() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_ShouldRecalculate_31)); }
inline bool get_m_ShouldRecalculate_31() const { return ___m_ShouldRecalculate_31; }
inline bool* get_address_of_m_ShouldRecalculate_31() { return &___m_ShouldRecalculate_31; }
inline void set_m_ShouldRecalculate_31(bool value)
{
___m_ShouldRecalculate_31 = value;
}
inline static int32_t get_offset_of_m_StencilValue_32() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_StencilValue_32)); }
inline int32_t get_m_StencilValue_32() const { return ___m_StencilValue_32; }
inline int32_t* get_address_of_m_StencilValue_32() { return &___m_StencilValue_32; }
inline void set_m_StencilValue_32(int32_t value)
{
___m_StencilValue_32 = value;
}
inline static int32_t get_offset_of_m_Corners_33() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_Corners_33)); }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get_m_Corners_33() const { return ___m_Corners_33; }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of_m_Corners_33() { return &___m_Corners_33; }
inline void set_m_Corners_33(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value)
{
___m_Corners_33 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Corners_33), (void*)value);
}
};
// UnityEngine.UI.PositionAsUV1
struct PositionAsUV1_t26F06E879E7B8DD2F93B8B3643053534D82F684A : public BaseMeshEffect_t72759F31F9D204D7EFB6B45097873809D4524BA5
{
public:
public:
};
// 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.Shadow
struct Shadow_tA03D2493843CDF8E64569F985AEB3FEEEEB412E1 : public BaseMeshEffect_t72759F31F9D204D7EFB6B45097873809D4524BA5
{
public:
// UnityEngine.Color UnityEngine.UI.Shadow::m_EffectColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_EffectColor_5;
// UnityEngine.Vector2 UnityEngine.UI.Shadow::m_EffectDistance
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_EffectDistance_6;
// System.Boolean UnityEngine.UI.Shadow::m_UseGraphicAlpha
bool ___m_UseGraphicAlpha_7;
public:
inline static int32_t get_offset_of_m_EffectColor_5() { return static_cast<int32_t>(offsetof(Shadow_tA03D2493843CDF8E64569F985AEB3FEEEEB412E1, ___m_EffectColor_5)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_EffectColor_5() const { return ___m_EffectColor_5; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_EffectColor_5() { return &___m_EffectColor_5; }
inline void set_m_EffectColor_5(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_EffectColor_5 = value;
}
inline static int32_t get_offset_of_m_EffectDistance_6() { return static_cast<int32_t>(offsetof(Shadow_tA03D2493843CDF8E64569F985AEB3FEEEEB412E1, ___m_EffectDistance_6)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_EffectDistance_6() const { return ___m_EffectDistance_6; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_EffectDistance_6() { return &___m_EffectDistance_6; }
inline void set_m_EffectDistance_6(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_EffectDistance_6 = value;
}
inline static int32_t get_offset_of_m_UseGraphicAlpha_7() { return static_cast<int32_t>(offsetof(Shadow_tA03D2493843CDF8E64569F985AEB3FEEEEB412E1, ___m_UseGraphicAlpha_7)); }
inline bool get_m_UseGraphicAlpha_7() const { return ___m_UseGraphicAlpha_7; }
inline bool* get_address_of_m_UseGraphicAlpha_7() { return &___m_UseGraphicAlpha_7; }
inline void set_m_UseGraphicAlpha_7(bool value)
{
___m_UseGraphicAlpha_7 = 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.HorizontalLayoutGroup
struct HorizontalLayoutGroup_tEFAFA0DDCCE4FC89CC2C0BE96E7C025D243CFE37 : public HorizontalOrVerticalLayoutGroup_tFE5C3DB19C2CC4906B3E5D5F4E1966CB585174AB
{
public:
public:
};
// UnityEngine.UI.Image
struct Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E : public MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F
{
public:
// UnityEngine.Sprite UnityEngine.UI.Image::m_Sprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_Sprite_35;
// UnityEngine.Sprite UnityEngine.UI.Image::m_OverrideSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_OverrideSprite_36;
// UnityEngine.UI.Image_Type UnityEngine.UI.Image::m_Type
int32_t ___m_Type_37;
// System.Boolean UnityEngine.UI.Image::m_PreserveAspect
bool ___m_PreserveAspect_38;
// System.Boolean UnityEngine.UI.Image::m_FillCenter
bool ___m_FillCenter_39;
// UnityEngine.UI.Image_FillMethod UnityEngine.UI.Image::m_FillMethod
int32_t ___m_FillMethod_40;
// System.Single UnityEngine.UI.Image::m_FillAmount
float ___m_FillAmount_41;
// System.Boolean UnityEngine.UI.Image::m_FillClockwise
bool ___m_FillClockwise_42;
// System.Int32 UnityEngine.UI.Image::m_FillOrigin
int32_t ___m_FillOrigin_43;
// System.Single UnityEngine.UI.Image::m_AlphaHitTestMinimumThreshold
float ___m_AlphaHitTestMinimumThreshold_44;
// System.Boolean UnityEngine.UI.Image::m_Tracked
bool ___m_Tracked_45;
// System.Boolean UnityEngine.UI.Image::m_UseSpriteMesh
bool ___m_UseSpriteMesh_46;
// System.Single UnityEngine.UI.Image::m_PixelsPerUnitMultiplier
float ___m_PixelsPerUnitMultiplier_47;
// System.Single UnityEngine.UI.Image::m_CachedReferencePixelsPerUnit
float ___m_CachedReferencePixelsPerUnit_48;
public:
inline static int32_t get_offset_of_m_Sprite_35() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_Sprite_35)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_Sprite_35() const { return ___m_Sprite_35; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_Sprite_35() { return &___m_Sprite_35; }
inline void set_m_Sprite_35(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_Sprite_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Sprite_35), (void*)value);
}
inline static int32_t get_offset_of_m_OverrideSprite_36() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_OverrideSprite_36)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_OverrideSprite_36() const { return ___m_OverrideSprite_36; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_OverrideSprite_36() { return &___m_OverrideSprite_36; }
inline void set_m_OverrideSprite_36(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_OverrideSprite_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OverrideSprite_36), (void*)value);
}
inline static int32_t get_offset_of_m_Type_37() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_Type_37)); }
inline int32_t get_m_Type_37() const { return ___m_Type_37; }
inline int32_t* get_address_of_m_Type_37() { return &___m_Type_37; }
inline void set_m_Type_37(int32_t value)
{
___m_Type_37 = value;
}
inline static int32_t get_offset_of_m_PreserveAspect_38() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_PreserveAspect_38)); }
inline bool get_m_PreserveAspect_38() const { return ___m_PreserveAspect_38; }
inline bool* get_address_of_m_PreserveAspect_38() { return &___m_PreserveAspect_38; }
inline void set_m_PreserveAspect_38(bool value)
{
___m_PreserveAspect_38 = value;
}
inline static int32_t get_offset_of_m_FillCenter_39() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_FillCenter_39)); }
inline bool get_m_FillCenter_39() const { return ___m_FillCenter_39; }
inline bool* get_address_of_m_FillCenter_39() { return &___m_FillCenter_39; }
inline void set_m_FillCenter_39(bool value)
{
___m_FillCenter_39 = value;
}
inline static int32_t get_offset_of_m_FillMethod_40() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_FillMethod_40)); }
inline int32_t get_m_FillMethod_40() const { return ___m_FillMethod_40; }
inline int32_t* get_address_of_m_FillMethod_40() { return &___m_FillMethod_40; }
inline void set_m_FillMethod_40(int32_t value)
{
___m_FillMethod_40 = value;
}
inline static int32_t get_offset_of_m_FillAmount_41() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_FillAmount_41)); }
inline float get_m_FillAmount_41() const { return ___m_FillAmount_41; }
inline float* get_address_of_m_FillAmount_41() { return &___m_FillAmount_41; }
inline void set_m_FillAmount_41(float value)
{
___m_FillAmount_41 = value;
}
inline static int32_t get_offset_of_m_FillClockwise_42() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_FillClockwise_42)); }
inline bool get_m_FillClockwise_42() const { return ___m_FillClockwise_42; }
inline bool* get_address_of_m_FillClockwise_42() { return &___m_FillClockwise_42; }
inline void set_m_FillClockwise_42(bool value)
{
___m_FillClockwise_42 = value;
}
inline static int32_t get_offset_of_m_FillOrigin_43() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_FillOrigin_43)); }
inline int32_t get_m_FillOrigin_43() const { return ___m_FillOrigin_43; }
inline int32_t* get_address_of_m_FillOrigin_43() { return &___m_FillOrigin_43; }
inline void set_m_FillOrigin_43(int32_t value)
{
___m_FillOrigin_43 = value;
}
inline static int32_t get_offset_of_m_AlphaHitTestMinimumThreshold_44() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_AlphaHitTestMinimumThreshold_44)); }
inline float get_m_AlphaHitTestMinimumThreshold_44() const { return ___m_AlphaHitTestMinimumThreshold_44; }
inline float* get_address_of_m_AlphaHitTestMinimumThreshold_44() { return &___m_AlphaHitTestMinimumThreshold_44; }
inline void set_m_AlphaHitTestMinimumThreshold_44(float value)
{
___m_AlphaHitTestMinimumThreshold_44 = value;
}
inline static int32_t get_offset_of_m_Tracked_45() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_Tracked_45)); }
inline bool get_m_Tracked_45() const { return ___m_Tracked_45; }
inline bool* get_address_of_m_Tracked_45() { return &___m_Tracked_45; }
inline void set_m_Tracked_45(bool value)
{
___m_Tracked_45 = value;
}
inline static int32_t get_offset_of_m_UseSpriteMesh_46() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_UseSpriteMesh_46)); }
inline bool get_m_UseSpriteMesh_46() const { return ___m_UseSpriteMesh_46; }
inline bool* get_address_of_m_UseSpriteMesh_46() { return &___m_UseSpriteMesh_46; }
inline void set_m_UseSpriteMesh_46(bool value)
{
___m_UseSpriteMesh_46 = value;
}
inline static int32_t get_offset_of_m_PixelsPerUnitMultiplier_47() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_PixelsPerUnitMultiplier_47)); }
inline float get_m_PixelsPerUnitMultiplier_47() const { return ___m_PixelsPerUnitMultiplier_47; }
inline float* get_address_of_m_PixelsPerUnitMultiplier_47() { return &___m_PixelsPerUnitMultiplier_47; }
inline void set_m_PixelsPerUnitMultiplier_47(float value)
{
___m_PixelsPerUnitMultiplier_47 = value;
}
inline static int32_t get_offset_of_m_CachedReferencePixelsPerUnit_48() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_CachedReferencePixelsPerUnit_48)); }
inline float get_m_CachedReferencePixelsPerUnit_48() const { return ___m_CachedReferencePixelsPerUnit_48; }
inline float* get_address_of_m_CachedReferencePixelsPerUnit_48() { return &___m_CachedReferencePixelsPerUnit_48; }
inline void set_m_CachedReferencePixelsPerUnit_48(float value)
{
___m_CachedReferencePixelsPerUnit_48 = value;
}
};
struct Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_StaticFields
{
public:
// UnityEngine.Material UnityEngine.UI.Image::s_ETC1DefaultUI
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___s_ETC1DefaultUI_34;
// UnityEngine.Vector2[] UnityEngine.UI.Image::s_VertScratch
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___s_VertScratch_49;
// UnityEngine.Vector2[] UnityEngine.UI.Image::s_UVScratch
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___s_UVScratch_50;
// UnityEngine.Vector3[] UnityEngine.UI.Image::s_Xy
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___s_Xy_51;
// UnityEngine.Vector3[] UnityEngine.UI.Image::s_Uv
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___s_Uv_52;
// System.Collections.Generic.List`1<UnityEngine.UI.Image> UnityEngine.UI.Image::m_TrackedTexturelessImages
List_1_tB46CB6C7789F514A8BE08EB5A4F3D9D26AE5E4DA * ___m_TrackedTexturelessImages_53;
// System.Boolean UnityEngine.UI.Image::s_Initialized
bool ___s_Initialized_54;
public:
inline static int32_t get_offset_of_s_ETC1DefaultUI_34() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_StaticFields, ___s_ETC1DefaultUI_34)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_s_ETC1DefaultUI_34() const { return ___s_ETC1DefaultUI_34; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_s_ETC1DefaultUI_34() { return &___s_ETC1DefaultUI_34; }
inline void set_s_ETC1DefaultUI_34(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___s_ETC1DefaultUI_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_ETC1DefaultUI_34), (void*)value);
}
inline static int32_t get_offset_of_s_VertScratch_49() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_StaticFields, ___s_VertScratch_49)); }
inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* get_s_VertScratch_49() const { return ___s_VertScratch_49; }
inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6** get_address_of_s_VertScratch_49() { return &___s_VertScratch_49; }
inline void set_s_VertScratch_49(Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* value)
{
___s_VertScratch_49 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_VertScratch_49), (void*)value);
}
inline static int32_t get_offset_of_s_UVScratch_50() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_StaticFields, ___s_UVScratch_50)); }
inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* get_s_UVScratch_50() const { return ___s_UVScratch_50; }
inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6** get_address_of_s_UVScratch_50() { return &___s_UVScratch_50; }
inline void set_s_UVScratch_50(Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* value)
{
___s_UVScratch_50 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_UVScratch_50), (void*)value);
}
inline static int32_t get_offset_of_s_Xy_51() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_StaticFields, ___s_Xy_51)); }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get_s_Xy_51() const { return ___s_Xy_51; }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of_s_Xy_51() { return &___s_Xy_51; }
inline void set_s_Xy_51(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value)
{
___s_Xy_51 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Xy_51), (void*)value);
}
inline static int32_t get_offset_of_s_Uv_52() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_StaticFields, ___s_Uv_52)); }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get_s_Uv_52() const { return ___s_Uv_52; }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of_s_Uv_52() { return &___s_Uv_52; }
inline void set_s_Uv_52(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value)
{
___s_Uv_52 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Uv_52), (void*)value);
}
inline static int32_t get_offset_of_m_TrackedTexturelessImages_53() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_StaticFields, ___m_TrackedTexturelessImages_53)); }
inline List_1_tB46CB6C7789F514A8BE08EB5A4F3D9D26AE5E4DA * get_m_TrackedTexturelessImages_53() const { return ___m_TrackedTexturelessImages_53; }
inline List_1_tB46CB6C7789F514A8BE08EB5A4F3D9D26AE5E4DA ** get_address_of_m_TrackedTexturelessImages_53() { return &___m_TrackedTexturelessImages_53; }
inline void set_m_TrackedTexturelessImages_53(List_1_tB46CB6C7789F514A8BE08EB5A4F3D9D26AE5E4DA * value)
{
___m_TrackedTexturelessImages_53 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_TrackedTexturelessImages_53), (void*)value);
}
inline static int32_t get_offset_of_s_Initialized_54() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_StaticFields, ___s_Initialized_54)); }
inline bool get_s_Initialized_54() const { return ___s_Initialized_54; }
inline bool* get_address_of_s_Initialized_54() { return &___s_Initialized_54; }
inline void set_s_Initialized_54(bool value)
{
___s_Initialized_54 = value;
}
};
// UnityEngine.UI.Outline
struct Outline_tB750E496976B072E79142D51C0A991AC20183095 : public Shadow_tA03D2493843CDF8E64569F985AEB3FEEEEB412E1
{
public:
public:
};
// UnityEngine.UI.RawImage
struct RawImage_t68991514DB8F48442D614E7904A298C936B3C7C8 : public MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F
{
public:
// UnityEngine.Texture UnityEngine.UI.RawImage::m_Texture
Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * ___m_Texture_34;
// UnityEngine.Rect UnityEngine.UI.RawImage::m_UVRect
Rect_t35B976DE901B5423C11705E156938EA27AB402CE ___m_UVRect_35;
public:
inline static int32_t get_offset_of_m_Texture_34() { return static_cast<int32_t>(offsetof(RawImage_t68991514DB8F48442D614E7904A298C936B3C7C8, ___m_Texture_34)); }
inline Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * get_m_Texture_34() const { return ___m_Texture_34; }
inline Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 ** get_address_of_m_Texture_34() { return &___m_Texture_34; }
inline void set_m_Texture_34(Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * value)
{
___m_Texture_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Texture_34), (void*)value);
}
inline static int32_t get_offset_of_m_UVRect_35() { return static_cast<int32_t>(offsetof(RawImage_t68991514DB8F48442D614E7904A298C936B3C7C8, ___m_UVRect_35)); }
inline Rect_t35B976DE901B5423C11705E156938EA27AB402CE get_m_UVRect_35() const { return ___m_UVRect_35; }
inline Rect_t35B976DE901B5423C11705E156938EA27AB402CE * get_address_of_m_UVRect_35() { return &___m_UVRect_35; }
inline void set_m_UVRect_35(Rect_t35B976DE901B5423C11705E156938EA27AB402CE value)
{
___m_UVRect_35 = value;
}
};
// UnityEngine.UI.Text
struct Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 : public MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F
{
public:
// UnityEngine.UI.FontData UnityEngine.UI.Text::m_FontData
FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494 * ___m_FontData_34;
// System.String UnityEngine.UI.Text::m_Text
String_t* ___m_Text_35;
// UnityEngine.TextGenerator UnityEngine.UI.Text::m_TextCache
TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 * ___m_TextCache_36;
// UnityEngine.TextGenerator UnityEngine.UI.Text::m_TextCacheForLayout
TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 * ___m_TextCacheForLayout_37;
// System.Boolean UnityEngine.UI.Text::m_DisableFontTextureRebuiltCallback
bool ___m_DisableFontTextureRebuiltCallback_39;
// UnityEngine.UIVertex[] UnityEngine.UI.Text::m_TempVerts
UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* ___m_TempVerts_40;
public:
inline static int32_t get_offset_of_m_FontData_34() { return static_cast<int32_t>(offsetof(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030, ___m_FontData_34)); }
inline FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494 * get_m_FontData_34() const { return ___m_FontData_34; }
inline FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494 ** get_address_of_m_FontData_34() { return &___m_FontData_34; }
inline void set_m_FontData_34(FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494 * value)
{
___m_FontData_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_FontData_34), (void*)value);
}
inline static int32_t get_offset_of_m_Text_35() { return static_cast<int32_t>(offsetof(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030, ___m_Text_35)); }
inline String_t* get_m_Text_35() const { return ___m_Text_35; }
inline String_t** get_address_of_m_Text_35() { return &___m_Text_35; }
inline void set_m_Text_35(String_t* value)
{
___m_Text_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Text_35), (void*)value);
}
inline static int32_t get_offset_of_m_TextCache_36() { return static_cast<int32_t>(offsetof(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030, ___m_TextCache_36)); }
inline TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 * get_m_TextCache_36() const { return ___m_TextCache_36; }
inline TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 ** get_address_of_m_TextCache_36() { return &___m_TextCache_36; }
inline void set_m_TextCache_36(TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 * value)
{
___m_TextCache_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_TextCache_36), (void*)value);
}
inline static int32_t get_offset_of_m_TextCacheForLayout_37() { return static_cast<int32_t>(offsetof(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030, ___m_TextCacheForLayout_37)); }
inline TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 * get_m_TextCacheForLayout_37() const { return ___m_TextCacheForLayout_37; }
inline TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 ** get_address_of_m_TextCacheForLayout_37() { return &___m_TextCacheForLayout_37; }
inline void set_m_TextCacheForLayout_37(TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 * value)
{
___m_TextCacheForLayout_37 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_TextCacheForLayout_37), (void*)value);
}
inline static int32_t get_offset_of_m_DisableFontTextureRebuiltCallback_39() { return static_cast<int32_t>(offsetof(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030, ___m_DisableFontTextureRebuiltCallback_39)); }
inline bool get_m_DisableFontTextureRebuiltCallback_39() const { return ___m_DisableFontTextureRebuiltCallback_39; }
inline bool* get_address_of_m_DisableFontTextureRebuiltCallback_39() { return &___m_DisableFontTextureRebuiltCallback_39; }
inline void set_m_DisableFontTextureRebuiltCallback_39(bool value)
{
___m_DisableFontTextureRebuiltCallback_39 = value;
}
inline static int32_t get_offset_of_m_TempVerts_40() { return static_cast<int32_t>(offsetof(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030, ___m_TempVerts_40)); }
inline UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* get_m_TempVerts_40() const { return ___m_TempVerts_40; }
inline UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A** get_address_of_m_TempVerts_40() { return &___m_TempVerts_40; }
inline void set_m_TempVerts_40(UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* value)
{
___m_TempVerts_40 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_TempVerts_40), (void*)value);
}
};
struct Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_StaticFields
{
public:
// UnityEngine.Material UnityEngine.UI.Text::s_DefaultText
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___s_DefaultText_38;
public:
inline static int32_t get_offset_of_s_DefaultText_38() { return static_cast<int32_t>(offsetof(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_StaticFields, ___s_DefaultText_38)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_s_DefaultText_38() const { return ___s_DefaultText_38; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_s_DefaultText_38() { return &___s_DefaultText_38; }
inline void set_s_DefaultText_38(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___s_DefaultText_38 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultText_38), (void*)value);
}
};
// UnityEngine.UI.VerticalLayoutGroup
struct VerticalLayoutGroup_tAAEE0BAA82E9A110591DEC9A3FFC25A01C2FFA11 : public HorizontalOrVerticalLayoutGroup_tFE5C3DB19C2CC4906B3E5D5F4E1966CB585174AB
{
public:
public:
};
#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
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2134;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2134 = { sizeof (AvailableTrackingData_tF1140FC398AFB5CA7E9FBBBC8ECB242E91E86AAD)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2134[8] =
{
AvailableTrackingData_tF1140FC398AFB5CA7E9FBBBC8ECB242E91E86AAD::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2135;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2135 = { sizeof (XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A)+ sizeof (RuntimeObject), sizeof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2135[10] =
{
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A::get_offset_of_m_Type_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A::get_offset_of_m_AvailableFields_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A::get_offset_of_m_Position_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A::get_offset_of_m_Rotation_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A::get_offset_of_m_Velocity_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A::get_offset_of_m_AngularVelocity_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A::get_offset_of_m_Acceleration_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A::get_offset_of_m_AngularAcceleration_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A::get_offset_of_m_Tracked_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A::get_offset_of_m_UniqueID_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2136;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2136 = { sizeof (InputFeatureType_t683990CF03F80321E203CDC5EDCA5846BB56BAF4)+ sizeof (RuntimeObject), sizeof(uint32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2136[12] =
{
InputFeatureType_t683990CF03F80321E203CDC5EDCA5846BB56BAF4::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2137;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2137 = { sizeof (InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C)+ sizeof (RuntimeObject), sizeof(InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C_marshaled_pinvoke), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2137[2] =
{
InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C::get_offset_of_m_Name_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C::get_offset_of_m_InternalType_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2138;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2138 = { sizeof (Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3)+ sizeof (RuntimeObject), sizeof(Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2138[2] =
{
Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3::get_offset_of_m_DeviceId_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3::get_offset_of_m_FeatureIndex_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2139;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2139 = { sizeof (Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5)+ sizeof (RuntimeObject), sizeof(Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2139[2] =
{
Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5::get_offset_of_m_DeviceId_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5::get_offset_of_m_FeatureIndex_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2140;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2140 = { sizeof (Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0)+ sizeof (RuntimeObject), sizeof(Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2140[2] =
{
Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0::get_offset_of_m_DeviceId_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0::get_offset_of_m_FeatureIndex_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2141;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2141 = { sizeof (FrameReceivedEventArgs_t4637B6D2FC28197602B18C1815C4A778645479DD)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2141[1] =
{
FrameReceivedEventArgs_t4637B6D2FC28197602B18C1815C4A778645479DD::get_offset_of_m_CameraSubsystem_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2142;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2142 = { sizeof (XRCameraSubsystem_t9271DB5D8FEDD3431246FCB6D9257A940246E701), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2142[1] =
{
XRCameraSubsystem_t9271DB5D8FEDD3431246FCB6D9257A940246E701::get_offset_of_FrameReceived_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2143;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2143 = { sizeof (XRCameraSubsystemDescriptor_t46972B2D1CC489288B72CD0856AB7675B5EEEE6D), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2144;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2144 = { sizeof (PointCloudUpdatedEventArgs_tE7E1E32A6042806B927B110250C0D4FE755C6B07)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2144[1] =
{
PointCloudUpdatedEventArgs_tE7E1E32A6042806B927B110250C0D4FE755C6B07::get_offset_of_m_DepthSubsystem_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2145;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2145 = { sizeof (XRDepthSubsystem_t1F42ECBC6085EFA6909640A9521920C55444D089), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2145[1] =
{
XRDepthSubsystem_t1F42ECBC6085EFA6909640A9521920C55444D089::get_offset_of_PointCloudUpdated_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2146;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2146 = { sizeof (XRDepthSubsystemDescriptor_tC60EB1B6195A885126644DA89E946EABFF96CCB9), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2147;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2147 = { sizeof (XRDisplaySubsystem_t05B719D068CC184B2C77C98875416D36775CDC70), -1, sizeof(XRDisplaySubsystem_t05B719D068CC184B2C77C98875416D36775CDC70_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2147[1] =
{
XRDisplaySubsystem_t05B719D068CC184B2C77C98875416D36775CDC70_StaticFields::get_offset_of_displayFocusChanged_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2148;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2148 = { sizeof (XRDisplaySubsystemDescriptor_tFF4A2A9182D1A4F2929DA301E861A6DB7F0B46EB), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2149;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2149 = { sizeof (XRExperienceSubsystem_tD574929FC9D5345CC504365E74496C6217D275F1), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2149[2] =
{
XRExperienceSubsystem_tD574929FC9D5345CC504365E74496C6217D275F1::get_offset_of_ExperienceTypeChanged_2(),
XRExperienceSubsystem_tD574929FC9D5345CC504365E74496C6217D275F1::get_offset_of_BoundaryChanged_3(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2150;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2150 = { sizeof (XRExperienceSubsystemDescriptor_t5B75071CF84F4EA0709340CCF6AD12DE5730E2A4), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2151;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2151 = { sizeof (GestureEventState_t8CD572FBB171284FB9F873ACEF77E7BDC326C922)+ sizeof (RuntimeObject), sizeof(uint32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2151[6] =
{
GestureEventState_t8CD572FBB171284FB9F873ACEF77E7BDC326C922::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2152;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2152 = { sizeof (GestureTrackingCoordinates_t633D971D579C2223A4A78E5A0476345C8D621C75)+ sizeof (RuntimeObject), sizeof(uint32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2152[5] =
{
GestureTrackingCoordinates_t633D971D579C2223A4A78E5A0476345C8D621C75::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2153;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2153 = { sizeof (GestureHoldValidFields_t6B4143D37C45FCA9780F7BADDD582B6EF0323FFE)+ sizeof (RuntimeObject), sizeof(uint32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2153[5] =
{
GestureHoldValidFields_t6B4143D37C45FCA9780F7BADDD582B6EF0323FFE::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2154;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2154 = { sizeof (NativeGestureHoldEvent_t730220DBDB536EA39C176DF1AEDA918E180472DD)+ sizeof (RuntimeObject), sizeof(NativeGestureHoldEvent_t730220DBDB536EA39C176DF1AEDA918E180472DD ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2154[5] =
{
NativeGestureHoldEvent_t730220DBDB536EA39C176DF1AEDA918E180472DD::get_offset_of_U3CeventStateU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeGestureHoldEvent_t730220DBDB536EA39C176DF1AEDA918E180472DD::get_offset_of_U3CtimeU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeGestureHoldEvent_t730220DBDB536EA39C176DF1AEDA918E180472DD::get_offset_of_U3CinternalDeviceIdU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeGestureHoldEvent_t730220DBDB536EA39C176DF1AEDA918E180472DD::get_offset_of_U3CpointerPoseU3Ek__BackingField_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeGestureHoldEvent_t730220DBDB536EA39C176DF1AEDA918E180472DD::get_offset_of_U3CvalidFieldsU3Ek__BackingField_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2155;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2155 = { sizeof (GestureHoldEvent_tE6ACA548C0C4D8F8C3B197066BD5E7B46A6B576A)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2155[2] =
{
GestureHoldEvent_tE6ACA548C0C4D8F8C3B197066BD5E7B46A6B576A::get_offset_of_U3CnativeEventU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
GestureHoldEvent_tE6ACA548C0C4D8F8C3B197066BD5E7B46A6B576A::get_offset_of_U3CgestureSubsystemU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2156;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2156 = { sizeof (GestureManipulationValidFields_t38C72CBF011B56FBD9653299A864D4219ED5BC8F)+ sizeof (RuntimeObject), sizeof(uint32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2156[6] =
{
GestureManipulationValidFields_t38C72CBF011B56FBD9653299A864D4219ED5BC8F::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2157;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2157 = { sizeof (NativeGestureManipulationEvent_t89FDDF7354D6EAB482DC00A9B0ED9205E82E4321)+ sizeof (RuntimeObject), sizeof(NativeGestureManipulationEvent_t89FDDF7354D6EAB482DC00A9B0ED9205E82E4321 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2157[6] =
{
NativeGestureManipulationEvent_t89FDDF7354D6EAB482DC00A9B0ED9205E82E4321::get_offset_of_U3CeventStateU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeGestureManipulationEvent_t89FDDF7354D6EAB482DC00A9B0ED9205E82E4321::get_offset_of_U3CtimeU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeGestureManipulationEvent_t89FDDF7354D6EAB482DC00A9B0ED9205E82E4321::get_offset_of_U3CinternalDeviceIdU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeGestureManipulationEvent_t89FDDF7354D6EAB482DC00A9B0ED9205E82E4321::get_offset_of_U3CtranslationU3Ek__BackingField_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeGestureManipulationEvent_t89FDDF7354D6EAB482DC00A9B0ED9205E82E4321::get_offset_of_U3CpointerPoseU3Ek__BackingField_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeGestureManipulationEvent_t89FDDF7354D6EAB482DC00A9B0ED9205E82E4321::get_offset_of_U3CvalidFieldsU3Ek__BackingField_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2158;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2158 = { sizeof (GestureManipulationEvent_t80F0163CC6437F2E1BC5B773E9599AF499D08E4F)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2158[2] =
{
GestureManipulationEvent_t80F0163CC6437F2E1BC5B773E9599AF499D08E4F::get_offset_of_U3CnativeEventU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
GestureManipulationEvent_t80F0163CC6437F2E1BC5B773E9599AF499D08E4F::get_offset_of_U3CgestureSubsystemU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2159;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2159 = { sizeof (GestureNavigationValidFields_t90D7FD00C42C32C7E4CEAB7C89296AEAB80EFC7A)+ sizeof (RuntimeObject), sizeof(uint32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2159[7] =
{
GestureNavigationValidFields_t90D7FD00C42C32C7E4CEAB7C89296AEAB80EFC7A::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2160;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2160 = { sizeof (NativeGestureNavigationEvent_t7A61BC08AC1387B9A0F756E471D7FE47B7834890)+ sizeof (RuntimeObject), sizeof(NativeGestureNavigationEvent_t7A61BC08AC1387B9A0F756E471D7FE47B7834890 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2160[7] =
{
NativeGestureNavigationEvent_t7A61BC08AC1387B9A0F756E471D7FE47B7834890::get_offset_of_U3CeventStateU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeGestureNavigationEvent_t7A61BC08AC1387B9A0F756E471D7FE47B7834890::get_offset_of_U3CtimeU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeGestureNavigationEvent_t7A61BC08AC1387B9A0F756E471D7FE47B7834890::get_offset_of_U3CinternalDeviceIdU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeGestureNavigationEvent_t7A61BC08AC1387B9A0F756E471D7FE47B7834890::get_offset_of_U3CgestureTrackingCoordinatesU3Ek__BackingField_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeGestureNavigationEvent_t7A61BC08AC1387B9A0F756E471D7FE47B7834890::get_offset_of_U3CnormalizedOffsetU3Ek__BackingField_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeGestureNavigationEvent_t7A61BC08AC1387B9A0F756E471D7FE47B7834890::get_offset_of_U3CpointerPoseU3Ek__BackingField_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeGestureNavigationEvent_t7A61BC08AC1387B9A0F756E471D7FE47B7834890::get_offset_of_U3CvalidFieldsU3Ek__BackingField_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2161;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2161 = { sizeof (GestureNavigationEvent_t3718B4FDF2C71A07DFAB23CE2E27D1D022417866)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2161[2] =
{
GestureNavigationEvent_t3718B4FDF2C71A07DFAB23CE2E27D1D022417866::get_offset_of_U3CnativeEventU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
GestureNavigationEvent_t3718B4FDF2C71A07DFAB23CE2E27D1D022417866::get_offset_of_U3CgestureSubsystemU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2162;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2162 = { sizeof (GestureRecognitionValidFields_tB4168FF3AED1B9EB5DD9E81316827080DD500636)+ sizeof (RuntimeObject), sizeof(uint32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2162[5] =
{
GestureRecognitionValidFields_tB4168FF3AED1B9EB5DD9E81316827080DD500636::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2163;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2163 = { sizeof (NativeGestureRecognitionEvent_t14CAF4301F20BCE91B9E879F6A1605D14DD42519)+ sizeof (RuntimeObject), sizeof(NativeGestureRecognitionEvent_t14CAF4301F20BCE91B9E879F6A1605D14DD42519 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2163[5] =
{
NativeGestureRecognitionEvent_t14CAF4301F20BCE91B9E879F6A1605D14DD42519::get_offset_of_U3CeventStateU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeGestureRecognitionEvent_t14CAF4301F20BCE91B9E879F6A1605D14DD42519::get_offset_of_U3CtimeU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeGestureRecognitionEvent_t14CAF4301F20BCE91B9E879F6A1605D14DD42519::get_offset_of_U3CinternalDeviceIdU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeGestureRecognitionEvent_t14CAF4301F20BCE91B9E879F6A1605D14DD42519::get_offset_of_U3CpointerPoseU3Ek__BackingField_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeGestureRecognitionEvent_t14CAF4301F20BCE91B9E879F6A1605D14DD42519::get_offset_of_U3CvalidFieldsU3Ek__BackingField_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2164;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2164 = { sizeof (GestureRecognitionEvent_tBB5EFD6FF7697E5F8FDFB64BA9A51003282AEE68)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2164[2] =
{
GestureRecognitionEvent_tBB5EFD6FF7697E5F8FDFB64BA9A51003282AEE68::get_offset_of_U3CnativeEventU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
GestureRecognitionEvent_tBB5EFD6FF7697E5F8FDFB64BA9A51003282AEE68::get_offset_of_U3CgestureSubsystemU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2165;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2165 = { sizeof (GestureTappedValidFields_t47AC525F8D30838CFCAC4A8E592339A0CA7C31EB)+ sizeof (RuntimeObject), sizeof(uint32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2165[6] =
{
GestureTappedValidFields_t47AC525F8D30838CFCAC4A8E592339A0CA7C31EB::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2166;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2166 = { sizeof (NativeGestureTappedEvent_tBC0278D6741BF5A2EFEA94AE6F13B94BB8F27E97)+ sizeof (RuntimeObject), sizeof(NativeGestureTappedEvent_tBC0278D6741BF5A2EFEA94AE6F13B94BB8F27E97 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2166[6] =
{
NativeGestureTappedEvent_tBC0278D6741BF5A2EFEA94AE6F13B94BB8F27E97::get_offset_of_U3CeventStateU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeGestureTappedEvent_tBC0278D6741BF5A2EFEA94AE6F13B94BB8F27E97::get_offset_of_U3CtimeU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeGestureTappedEvent_tBC0278D6741BF5A2EFEA94AE6F13B94BB8F27E97::get_offset_of_U3CinternalDeviceIdU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeGestureTappedEvent_tBC0278D6741BF5A2EFEA94AE6F13B94BB8F27E97::get_offset_of_U3CtappedCountU3Ek__BackingField_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeGestureTappedEvent_tBC0278D6741BF5A2EFEA94AE6F13B94BB8F27E97::get_offset_of_U3CpointerPoseU3Ek__BackingField_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeGestureTappedEvent_tBC0278D6741BF5A2EFEA94AE6F13B94BB8F27E97::get_offset_of_U3CvalidFieldsU3Ek__BackingField_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2167;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2167 = { sizeof (GestureTappedEvent_t793E61A597E40572998004754809BBF49D738535)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2167[2] =
{
GestureTappedEvent_t793E61A597E40572998004754809BBF49D738535::get_offset_of_U3CnativeEventU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
GestureTappedEvent_t793E61A597E40572998004754809BBF49D738535::get_offset_of_U3CgestureSubsystemU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2168;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2168 = { sizeof (XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2168[5] =
{
XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D::get_offset_of_m_HoldChanged_2(),
XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D::get_offset_of_m_ManipulationChanged_3(),
XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D::get_offset_of_m_NavigationChanged_4(),
XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D::get_offset_of_m_RecognitionChanged_5(),
XRGestureSubsystem_t3B96ED0176B1F522E14CFC2C44F688F8FC3FAA7D::get_offset_of_m_TappedChanged_6(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2169;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2169 = { sizeof (XRGestureSubsystemDescriptor_t5422349A45F3230A30F3F6DC80B173828E95595A), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2170;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2170 = { sizeof (MeshGenerationStatus_t58ABE4F39930471B888640F3BF5843A5A52CDBC6)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2170[6] =
{
MeshGenerationStatus_t58ABE4F39930471B888640F3BF5843A5A52CDBC6::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2171;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2171 = { sizeof (HashCodeHelper_t240ABA7F47D7854880115EA07A9C50F359A7DCBA), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2172;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2172 = { sizeof (MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2172[5] =
{
MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056::get_offset_of_U3CMeshIdU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056::get_offset_of_U3CMeshU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056::get_offset_of_U3CMeshColliderU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056::get_offset_of_U3CStatusU3Ek__BackingField_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
MeshGenerationResult_t24F21E71F8F697D7D216BA4F3F064FB5434E6056::get_offset_of_U3CAttributesU3Ek__BackingField_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2173;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2173 = { sizeof (MeshVertexAttributes_t4C1E42BCB078C4499F890CE145589B9085A5D737)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2173[6] =
{
MeshVertexAttributes_t4C1E42BCB078C4499F890CE145589B9085A5D737::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2174;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2174 = { sizeof (XRMeshSubsystem_t4BD421D51492BBB1328FD2C7D8B4EB08A3BA80E2), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2175;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2175 = { sizeof (XRMeshSubsystemDescriptor_t42FE49F96E6B9CC621E4A87F5B4D365DD0861D6D), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2176;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2176 = { sizeof (PlaneAlignment_tA2F16C66968FD0E8F2D028575BF5A74395340AC6)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2176[4] =
{
PlaneAlignment_tA2F16C66968FD0E8F2D028575BF5A74395340AC6::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2177;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2177 = { sizeof (BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9)+ sizeof (RuntimeObject), sizeof(BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2177[7] =
{
BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9::get_offset_of_m_InstanceId_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9::get_offset_of_U3CIdU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9::get_offset_of_U3CSubsumedByIdU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9::get_offset_of_U3CPoseU3Ek__BackingField_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9::get_offset_of_U3CCenterU3Ek__BackingField_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9::get_offset_of_U3CSizeU3Ek__BackingField_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
BoundedPlane_tBFBBCCD2AB87AEBD14E6A168EFAA0680862814D9::get_offset_of_U3CAlignmentU3Ek__BackingField_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2178;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2178 = { sizeof (PlaneAddedEventArgs_t06BF8697BA4D8CD3A8C9AB8DF51F8D01D2910002)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2178[2] =
{
PlaneAddedEventArgs_t06BF8697BA4D8CD3A8C9AB8DF51F8D01D2910002::get_offset_of_U3CPlaneSubsystemU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
PlaneAddedEventArgs_t06BF8697BA4D8CD3A8C9AB8DF51F8D01D2910002::get_offset_of_U3CPlaneU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2179;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2179 = { sizeof (PlaneUpdatedEventArgs_tD63FB1655000C0BC238033545144C1FD81CED133)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2179[2] =
{
PlaneUpdatedEventArgs_tD63FB1655000C0BC238033545144C1FD81CED133::get_offset_of_U3CPlaneSubsystemU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
PlaneUpdatedEventArgs_tD63FB1655000C0BC238033545144C1FD81CED133::get_offset_of_U3CPlaneU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2180;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2180 = { sizeof (PlaneRemovedEventArgs_t21E9C5879A8317E5F72263ED2235116F609E4C6A)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2180[2] =
{
PlaneRemovedEventArgs_t21E9C5879A8317E5F72263ED2235116F609E4C6A::get_offset_of_U3CPlaneSubsystemU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
PlaneRemovedEventArgs_t21E9C5879A8317E5F72263ED2235116F609E4C6A::get_offset_of_U3CPlaneU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2181;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2181 = { sizeof (XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2181[3] =
{
XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B::get_offset_of_PlaneAdded_2(),
XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B::get_offset_of_PlaneUpdated_3(),
XRPlaneSubsystem_t3ABC3FDCBC5AC6F1CAA30E08A89EFD7F9D49D72B::get_offset_of_PlaneRemoved_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2182;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2182 = { sizeof (XRPlaneSubsystemDescriptor_t0F6814B2CAD6778836A3A230A200600556C57D7F), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2183;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2183 = { sizeof (ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E)+ sizeof (RuntimeObject), sizeof(ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2183[3] =
{
ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E::get_offset_of_U3CIdU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E::get_offset_of_U3CTrackingStateU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
ReferencePoint_t209849A64F7DAFF039E2519A19CA3DAE45599E7E::get_offset_of_U3CPoseU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2184;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2184 = { sizeof (ReferencePointUpdatedEventArgs_t1B91A539846D2D040D4B0BFFD9A67B0DF30AD6BA)+ sizeof (RuntimeObject), sizeof(ReferencePointUpdatedEventArgs_t1B91A539846D2D040D4B0BFFD9A67B0DF30AD6BA ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2184[3] =
{
ReferencePointUpdatedEventArgs_t1B91A539846D2D040D4B0BFFD9A67B0DF30AD6BA::get_offset_of_U3CReferencePointU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ReferencePointUpdatedEventArgs_t1B91A539846D2D040D4B0BFFD9A67B0DF30AD6BA::get_offset_of_U3CPreviousTrackingStateU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
ReferencePointUpdatedEventArgs_t1B91A539846D2D040D4B0BFFD9A67B0DF30AD6BA::get_offset_of_U3CPreviousPoseU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2185;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2185 = { sizeof (XRReferencePointSubsystem_t9D4A49A2B6580143EF25399812034F001A18D00C), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2185[1] =
{
XRReferencePointSubsystem_t9D4A49A2B6580143EF25399812034F001A18D00C::get_offset_of_ReferencePointUpdated_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2186;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2186 = { sizeof (XRReferencePointSubsystemDescriptor_t0228E77788DA1EAB18104D6AB3DBAF5AF5CFA0D3), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2187;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2187 = { sizeof (TrackingState_tC867717ED982A6E61C703B6A0CCF908E9642C854)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2187[4] =
{
TrackingState_tC867717ED982A6E61C703B6A0CCF908E9642C854::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2188;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2188 = { sizeof (SessionTrackingStateChangedEventArgs_tE4B00077E5AAE143593A0BB3FA2C57237525E7BA)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2188[2] =
{
SessionTrackingStateChangedEventArgs_tE4B00077E5AAE143593A0BB3FA2C57237525E7BA::get_offset_of_m_Session_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
SessionTrackingStateChangedEventArgs_tE4B00077E5AAE143593A0BB3FA2C57237525E7BA::get_offset_of_U3CNewStateU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2189;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2189 = { sizeof (XRSessionSubsystem_t75B8ED54B2BF4876D83B93780A7E13D6A9F32B8F), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2189[1] =
{
XRSessionSubsystem_t75B8ED54B2BF4876D83B93780A7E13D6A9F32B8F::get_offset_of_TrackingStateChanged_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2190;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2190 = { sizeof (XRSessionSubsystemDescriptor_tF69268DD404379B461569E4268BEC52FAFC9F3B9), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2191;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2191 = { sizeof (U3CModuleU3E_tCE4B768174CDE0294B05DD8ED59A7763FF34E99B), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2192;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2192 = { sizeof (U3CModuleU3E_t93DCC9DD64AD0C36686B88FC177EB2212081BDB5), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2193;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2193 = { sizeof (SubsystemRegistration_t0A22FECC46483ABBFFC039449407F73FF11F5A1A), -1, sizeof(SubsystemRegistration_t0A22FECC46483ABBFFC039449407F73FF11F5A1A_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2193[1] =
{
SubsystemRegistration_t0A22FECC46483ABBFFC039449407F73FF11F5A1A_StaticFields::get_offset_of_k_SubsystemDescriptors_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2194;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2194 = { sizeof (U3CModuleU3E_t6EFABDA0B2A020FB3DD6CA286799D867733667F1), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2195;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2195 = { sizeof (NotKeyableAttribute_tC0F8DAA85C33BBE045EFE59BB65D9A060D4282BE), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2196;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2196 = { sizeof (SharedBetweenAnimatorsAttribute_tD52C4EACCF9B8F7A21A34D11D3971A823B131F03), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2197;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2197 = { sizeof (StateMachineBehaviour_t698612ED92024B087045C388731B7673550C786C), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2198;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2198 = { sizeof (AnimationClip_t336CFC94F6275526DC0B9BEEF833D4D89D6DEDDE), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2199;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2199 = { sizeof (AnimationClipPlayable_t6EF38F9EED94096D4793638AFC8D11D285B43183)+ sizeof (RuntimeObject), sizeof(AnimationClipPlayable_t6EF38F9EED94096D4793638AFC8D11D285B43183 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2199[1] =
{
AnimationClipPlayable_t6EF38F9EED94096D4793638AFC8D11D285B43183::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2200;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2200 = { sizeof (AnimationHumanStream_t576024C2BE0EAD2602F724B6C0A61A6A72E6F5C2)+ sizeof (RuntimeObject), sizeof(AnimationHumanStream_t576024C2BE0EAD2602F724B6C0A61A6A72E6F5C2 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2200[1] =
{
AnimationHumanStream_t576024C2BE0EAD2602F724B6C0A61A6A72E6F5C2::get_offset_of_stream_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2201;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2201 = { sizeof (AnimationLayerMixerPlayable_t699CCDE32ABD6FC79BFC09064E473D785D9F9371)+ sizeof (RuntimeObject), sizeof(AnimationLayerMixerPlayable_t699CCDE32ABD6FC79BFC09064E473D785D9F9371 ), sizeof(AnimationLayerMixerPlayable_t699CCDE32ABD6FC79BFC09064E473D785D9F9371_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2201[2] =
{
AnimationLayerMixerPlayable_t699CCDE32ABD6FC79BFC09064E473D785D9F9371::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimationLayerMixerPlayable_t699CCDE32ABD6FC79BFC09064E473D785D9F9371_StaticFields::get_offset_of_m_NullPlayable_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2202;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2202 = { sizeof (AnimationMixerPlayable_tA71C834654979CF92B034B537EE5A3DA9713030A)+ sizeof (RuntimeObject), sizeof(AnimationMixerPlayable_tA71C834654979CF92B034B537EE5A3DA9713030A ), sizeof(AnimationMixerPlayable_tA71C834654979CF92B034B537EE5A3DA9713030A_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2202[2] =
{
AnimationMixerPlayable_tA71C834654979CF92B034B537EE5A3DA9713030A::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimationMixerPlayable_tA71C834654979CF92B034B537EE5A3DA9713030A_StaticFields::get_offset_of_m_NullPlayable_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2203;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2203 = { sizeof (AnimationMotionXToDeltaPlayable_tA5F0BE3BA966E1A6661311F185C1544F90302CDC)+ sizeof (RuntimeObject), sizeof(AnimationMotionXToDeltaPlayable_tA5F0BE3BA966E1A6661311F185C1544F90302CDC ), sizeof(AnimationMotionXToDeltaPlayable_tA5F0BE3BA966E1A6661311F185C1544F90302CDC_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2203[2] =
{
AnimationMotionXToDeltaPlayable_tA5F0BE3BA966E1A6661311F185C1544F90302CDC::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimationMotionXToDeltaPlayable_tA5F0BE3BA966E1A6661311F185C1544F90302CDC_StaticFields::get_offset_of_m_NullPlayable_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2204;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2204 = { sizeof (AnimationOffsetPlayable_t1534674D22C39D6ED74F24A108C3475C7301A93E)+ sizeof (RuntimeObject), sizeof(AnimationOffsetPlayable_t1534674D22C39D6ED74F24A108C3475C7301A93E ), sizeof(AnimationOffsetPlayable_t1534674D22C39D6ED74F24A108C3475C7301A93E_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2204[2] =
{
AnimationOffsetPlayable_t1534674D22C39D6ED74F24A108C3475C7301A93E::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimationOffsetPlayable_t1534674D22C39D6ED74F24A108C3475C7301A93E_StaticFields::get_offset_of_m_NullPlayable_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2205;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2205 = { sizeof (AnimationPlayableOutput_tA10178429D6528BDB4516F6788CE680E349553E6)+ sizeof (RuntimeObject), sizeof(AnimationPlayableOutput_tA10178429D6528BDB4516F6788CE680E349553E6 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2205[1] =
{
AnimationPlayableOutput_tA10178429D6528BDB4516F6788CE680E349553E6::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2206;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2206 = { sizeof (AnimationPosePlayable_t92EAB5BB4093D236F90ED0242488039EA87AFA07)+ sizeof (RuntimeObject), sizeof(AnimationPosePlayable_t92EAB5BB4093D236F90ED0242488039EA87AFA07 ), sizeof(AnimationPosePlayable_t92EAB5BB4093D236F90ED0242488039EA87AFA07_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2206[2] =
{
AnimationPosePlayable_t92EAB5BB4093D236F90ED0242488039EA87AFA07::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimationPosePlayable_t92EAB5BB4093D236F90ED0242488039EA87AFA07_StaticFields::get_offset_of_m_NullPlayable_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2207;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2207 = { sizeof (AnimationRemoveScalePlayable_t02381EE856ADF73C82C1EA6D2AD1878EC5879A7B)+ sizeof (RuntimeObject), sizeof(AnimationRemoveScalePlayable_t02381EE856ADF73C82C1EA6D2AD1878EC5879A7B ), sizeof(AnimationRemoveScalePlayable_t02381EE856ADF73C82C1EA6D2AD1878EC5879A7B_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2207[2] =
{
AnimationRemoveScalePlayable_t02381EE856ADF73C82C1EA6D2AD1878EC5879A7B::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimationRemoveScalePlayable_t02381EE856ADF73C82C1EA6D2AD1878EC5879A7B_StaticFields::get_offset_of_m_NullPlayable_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2208;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2208 = { sizeof (AnimationScriptPlayable_t73DEE79FEABE593A01BC5B5FC403DD19CEC38F5F)+ sizeof (RuntimeObject), sizeof(AnimationScriptPlayable_t73DEE79FEABE593A01BC5B5FC403DD19CEC38F5F ), sizeof(AnimationScriptPlayable_t73DEE79FEABE593A01BC5B5FC403DD19CEC38F5F_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2208[2] =
{
AnimationScriptPlayable_t73DEE79FEABE593A01BC5B5FC403DD19CEC38F5F::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimationScriptPlayable_t73DEE79FEABE593A01BC5B5FC403DD19CEC38F5F_StaticFields::get_offset_of_m_NullPlayable_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2209;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2209 = { sizeof (AnimationStream_tF539D75F7B97F32656D025617E8EDB5C9A2F715E)+ sizeof (RuntimeObject), sizeof(AnimationStream_tF539D75F7B97F32656D025617E8EDB5C9A2F715E ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2209[7] =
{
AnimationStream_tF539D75F7B97F32656D025617E8EDB5C9A2F715E::get_offset_of_m_AnimatorBindingsVersion_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimationStream_tF539D75F7B97F32656D025617E8EDB5C9A2F715E::get_offset_of_constant_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimationStream_tF539D75F7B97F32656D025617E8EDB5C9A2F715E::get_offset_of_input_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimationStream_tF539D75F7B97F32656D025617E8EDB5C9A2F715E::get_offset_of_output_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimationStream_tF539D75F7B97F32656D025617E8EDB5C9A2F715E::get_offset_of_workspace_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimationStream_tF539D75F7B97F32656D025617E8EDB5C9A2F715E::get_offset_of_inputStreamAccessor_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimationStream_tF539D75F7B97F32656D025617E8EDB5C9A2F715E::get_offset_of_animationHandleBinder_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2210;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2210 = { sizeof (AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180)+ sizeof (RuntimeObject), sizeof(AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2210[2] =
{
AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180::get_offset_of_m_ClipInstanceID_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180::get_offset_of_m_Weight_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2211;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2211 = { sizeof (AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2)+ sizeof (RuntimeObject), sizeof(AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2211[9] =
{
AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2::get_offset_of_m_Name_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2::get_offset_of_m_Path_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2::get_offset_of_m_FullPath_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2::get_offset_of_m_NormalizedTime_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2::get_offset_of_m_Length_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2::get_offset_of_m_Speed_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2::get_offset_of_m_SpeedMultiplier_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2::get_offset_of_m_Tag_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimatorStateInfo_tF6D8ADF771CD13DC578AC9A574FD33CC99AD46E2::get_offset_of_m_Loop_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2212;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2212 = { sizeof (AnimatorTransitionInfo_t66D37578B8898C817BD5A5781B420BF92F60AA6B)+ sizeof (RuntimeObject), sizeof(AnimatorTransitionInfo_t66D37578B8898C817BD5A5781B420BF92F60AA6B_marshaled_pinvoke), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2212[8] =
{
AnimatorTransitionInfo_t66D37578B8898C817BD5A5781B420BF92F60AA6B::get_offset_of_m_FullPath_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimatorTransitionInfo_t66D37578B8898C817BD5A5781B420BF92F60AA6B::get_offset_of_m_UserName_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimatorTransitionInfo_t66D37578B8898C817BD5A5781B420BF92F60AA6B::get_offset_of_m_Name_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimatorTransitionInfo_t66D37578B8898C817BD5A5781B420BF92F60AA6B::get_offset_of_m_HasFixedDuration_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimatorTransitionInfo_t66D37578B8898C817BD5A5781B420BF92F60AA6B::get_offset_of_m_Duration_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimatorTransitionInfo_t66D37578B8898C817BD5A5781B420BF92F60AA6B::get_offset_of_m_NormalizedTime_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimatorTransitionInfo_t66D37578B8898C817BD5A5781B420BF92F60AA6B::get_offset_of_m_AnyState_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimatorTransitionInfo_t66D37578B8898C817BD5A5781B420BF92F60AA6B::get_offset_of_m_TransitionType_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2213;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2213 = { sizeof (Animator_tF1A88E66B3B731DDA75A066DBAE9C55837660F5A), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2214;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2214 = { sizeof (AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B)+ sizeof (RuntimeObject), sizeof(AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B ), sizeof(AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2214[2] =
{
AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
AnimatorControllerPlayable_t352C2C3D059CFC0404FF4FBBA302F16C5966F44B_StaticFields::get_offset_of_m_NullPlayable_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2215;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2215 = { sizeof (AnimatorOverrideController_t130F04B57E753FD4288EF3235699ABE7C88FF312), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2215[1] =
{
AnimatorOverrideController_t130F04B57E753FD4288EF3235699ABE7C88FF312::get_offset_of_OnOverrideControllerDirty_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2216;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2216 = { sizeof (OnOverrideControllerDirtyCallback_t73560E6E30067C09BC58A15F9D2726051B077E2E), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2217;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2217 = { sizeof (SkeletonBone_tCDF297229129311214294465F3FA353DB09726F5)+ sizeof (RuntimeObject), sizeof(SkeletonBone_tCDF297229129311214294465F3FA353DB09726F5_marshaled_pinvoke), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2217[5] =
{
SkeletonBone_tCDF297229129311214294465F3FA353DB09726F5::get_offset_of_name_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
SkeletonBone_tCDF297229129311214294465F3FA353DB09726F5::get_offset_of_parentName_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
SkeletonBone_tCDF297229129311214294465F3FA353DB09726F5::get_offset_of_position_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
SkeletonBone_tCDF297229129311214294465F3FA353DB09726F5::get_offset_of_rotation_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
SkeletonBone_tCDF297229129311214294465F3FA353DB09726F5::get_offset_of_scale_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2218;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2218 = { sizeof (HumanLimit_t6AB2A599FC9E1F7E1598954FA9A0E568ECA5B6F3)+ sizeof (RuntimeObject), sizeof(HumanLimit_t6AB2A599FC9E1F7E1598954FA9A0E568ECA5B6F3 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2218[5] =
{
HumanLimit_t6AB2A599FC9E1F7E1598954FA9A0E568ECA5B6F3::get_offset_of_m_Min_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
HumanLimit_t6AB2A599FC9E1F7E1598954FA9A0E568ECA5B6F3::get_offset_of_m_Max_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
HumanLimit_t6AB2A599FC9E1F7E1598954FA9A0E568ECA5B6F3::get_offset_of_m_Center_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
HumanLimit_t6AB2A599FC9E1F7E1598954FA9A0E568ECA5B6F3::get_offset_of_m_AxisLength_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
HumanLimit_t6AB2A599FC9E1F7E1598954FA9A0E568ECA5B6F3::get_offset_of_m_UseDefaultValues_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2219;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2219 = { sizeof (HumanBone_t2CE168CF8638CEABF48FB7B7CCF77BBE0CECF995)+ sizeof (RuntimeObject), sizeof(HumanBone_t2CE168CF8638CEABF48FB7B7CCF77BBE0CECF995_marshaled_pinvoke), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2219[3] =
{
HumanBone_t2CE168CF8638CEABF48FB7B7CCF77BBE0CECF995::get_offset_of_m_BoneName_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
HumanBone_t2CE168CF8638CEABF48FB7B7CCF77BBE0CECF995::get_offset_of_m_HumanName_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
HumanBone_t2CE168CF8638CEABF48FB7B7CCF77BBE0CECF995::get_offset_of_limit_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2220;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2220 = { sizeof (Motion_t497BF9244B6A769D1AE925C3876B187C56C8CF8F), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2221;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2221 = { sizeof (RuntimeAnimatorController_tDA6672C8194522C2F60F8F2F241657E57C3520BD), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2222;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2222 = { sizeof (AnimationEventSource_t0CA86CB3D775209B46F475A99887C93530F20702)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2222[4] =
{
AnimationEventSource_t0CA86CB3D775209B46F475A99887C93530F20702::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2223;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2223 = { sizeof (AnimationEvent_tEDD4E45FEA5CA4657CBBF1E0CFF657191D90673F), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2223[11] =
{
AnimationEvent_tEDD4E45FEA5CA4657CBBF1E0CFF657191D90673F::get_offset_of_m_Time_0(),
AnimationEvent_tEDD4E45FEA5CA4657CBBF1E0CFF657191D90673F::get_offset_of_m_FunctionName_1(),
AnimationEvent_tEDD4E45FEA5CA4657CBBF1E0CFF657191D90673F::get_offset_of_m_StringParameter_2(),
AnimationEvent_tEDD4E45FEA5CA4657CBBF1E0CFF657191D90673F::get_offset_of_m_ObjectReferenceParameter_3(),
AnimationEvent_tEDD4E45FEA5CA4657CBBF1E0CFF657191D90673F::get_offset_of_m_FloatParameter_4(),
AnimationEvent_tEDD4E45FEA5CA4657CBBF1E0CFF657191D90673F::get_offset_of_m_IntParameter_5(),
AnimationEvent_tEDD4E45FEA5CA4657CBBF1E0CFF657191D90673F::get_offset_of_m_MessageOptions_6(),
AnimationEvent_tEDD4E45FEA5CA4657CBBF1E0CFF657191D90673F::get_offset_of_m_Source_7(),
AnimationEvent_tEDD4E45FEA5CA4657CBBF1E0CFF657191D90673F::get_offset_of_m_StateSender_8(),
AnimationEvent_tEDD4E45FEA5CA4657CBBF1E0CFF657191D90673F::get_offset_of_m_AnimatorStateInfo_9(),
AnimationEvent_tEDD4E45FEA5CA4657CBBF1E0CFF657191D90673F::get_offset_of_m_AnimatorClipInfo_10(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2224;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2224 = { sizeof (PlayMode_tE55342CFE774475487030D6B30D815DEF4C509C3)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2224[3] =
{
PlayMode_tE55342CFE774475487030D6B30D815DEF4C509C3::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2225;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2225 = { sizeof (Animation_tCFC171459D159DDEC6500B55543A76219D49BB9C), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2226;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2226 = { sizeof (Enumerator_t6F97AECE1A160A668D8D8798607BE29B1D8CD92C), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2226[2] =
{
Enumerator_t6F97AECE1A160A668D8D8798607BE29B1D8CD92C::get_offset_of_m_Outer_0(),
Enumerator_t6F97AECE1A160A668D8D8798607BE29B1D8CD92C::get_offset_of_m_CurrentIndex_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2227;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2227 = { sizeof (AnimationState_t48FF4D41FEF3492F8286100BE3758CE3A4656386), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2228;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2228 = { sizeof (U3CModuleU3E_tB6F5D3E9B5847F75DE623964BF4C6C552D94BB22), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2229;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2229 = { sizeof (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210), sizeof(Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_marshaled_pinvoke), sizeof(Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2229[4] =
{
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210::get_offset_of_m_Ptr_0(),
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_StaticFields::get_offset_of_s_Current_1(),
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_StaticFields::get_offset_of_s_MasterEvent_2(),
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_StaticFields::get_offset_of_U3CU3Ef__switchU24map0_3(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2230;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2230 = { sizeof (EventType_t3D3937E705A4506226002DAB22071B7B181DA57B)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2230[33] =
{
EventType_t3D3937E705A4506226002DAB22071B7B181DA57B::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2231;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2231 = { sizeof (EventModifiers_tC34E3018F3697001F894187AF6E9E63D7E203061)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2231[9] =
{
EventModifiers_tC34E3018F3697001F894187AF6E9E63D7E203061::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2232;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2232 = { sizeof (GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA), -1, sizeof(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2232[12] =
{
GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields::get_offset_of_s_HotTextField_0(),
GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields::get_offset_of_s_BoxHash_1(),
GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields::get_offset_of_s_ButonHash_2(),
GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields::get_offset_of_s_RepeatButtonHash_3(),
GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields::get_offset_of_s_ToggleHash_4(),
GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields::get_offset_of_s_ButtonGridHash_5(),
GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields::get_offset_of_s_SliderHash_6(),
GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields::get_offset_of_s_BeginGroupHash_7(),
GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields::get_offset_of_s_ScrollviewHash_8(),
GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields::get_offset_of_U3CnextScrollStepTimeU3Ek__BackingField_9(),
GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields::get_offset_of_s_Skin_10(),
GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields::get_offset_of_U3CscrollViewStatesU3Ek__BackingField_11(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2233;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2233 = { sizeof (WindowFunction_t9AF05117863D95AA9F85D497A3B9B53216708100), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2234;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2234 = { sizeof (GUIClip_tD8FEFCDA2C4A085BA10BDDFF5B74095F114B2B61), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2235;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2235 = { sizeof (GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0), -1, sizeof(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2235[7] =
{
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0::get_offset_of_m_Text_0(),
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0::get_offset_of_m_Image_1(),
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0::get_offset_of_m_Tooltip_2(),
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_StaticFields::get_offset_of_s_Text_3(),
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_StaticFields::get_offset_of_s_Image_4(),
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_StaticFields::get_offset_of_s_TextImage_5(),
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_StaticFields::get_offset_of_none_6(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2236;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2236 = { sizeof (FocusType_t8242637722FC265816544B73BC14E4293A78FD85)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2236[4] =
{
FocusType_t8242637722FC265816544B73BC14E4293A78FD85::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2237;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2237 = { sizeof (GUILayout_t5BDBA9AE696E27285227012F08642F97F2CCE2EC), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2238;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2238 = { sizeof (GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2238[2] =
{
GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6::get_offset_of_type_0(),
GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6::get_offset_of_value_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2239;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2239 = { sizeof (Type_t1060D19522CDA0F7C9A26733BE1E8C8E20AC1278)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2239[15] =
{
Type_t1060D19522CDA0F7C9A26733BE1E8C8E20AC1278::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2240;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2240 = { sizeof (GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E), -1, sizeof(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2240[4] =
{
GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields::get_offset_of_s_StoredLayouts_0(),
GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields::get_offset_of_s_StoredWindows_1(),
GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields::get_offset_of_current_2(),
GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields::get_offset_of_kDummyRect_3(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2241;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2241 = { sizeof (LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2241[3] =
{
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468::get_offset_of_topLevel_0(),
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468::get_offset_of_layoutGroups_1(),
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468::get_offset_of_windows_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2242;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2242 = { sizeof (GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2242[5] =
{
GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4::get_offset_of_m_DoubleClickSelectsWord_0(),
GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4::get_offset_of_m_TripleClickSelectsLine_1(),
GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4::get_offset_of_m_CursorColor_2(),
GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4::get_offset_of_m_CursorFlashSpeed_3(),
GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4::get_offset_of_m_SelectionColor_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2243;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2243 = { sizeof (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7), -1, sizeof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2243[27] =
{
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7::get_offset_of_m_Font_4(),
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7::get_offset_of_m_box_5(),
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7::get_offset_of_m_button_6(),
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7::get_offset_of_m_toggle_7(),
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7::get_offset_of_m_label_8(),
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7::get_offset_of_m_textField_9(),
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7::get_offset_of_m_textArea_10(),
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7::get_offset_of_m_window_11(),
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7::get_offset_of_m_horizontalSlider_12(),
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7::get_offset_of_m_horizontalSliderThumb_13(),
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7::get_offset_of_m_verticalSlider_14(),
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7::get_offset_of_m_verticalSliderThumb_15(),
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7::get_offset_of_m_horizontalScrollbar_16(),
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7::get_offset_of_m_horizontalScrollbarThumb_17(),
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7::get_offset_of_m_horizontalScrollbarLeftButton_18(),
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7::get_offset_of_m_horizontalScrollbarRightButton_19(),
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7::get_offset_of_m_verticalScrollbar_20(),
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7::get_offset_of_m_verticalScrollbarThumb_21(),
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7::get_offset_of_m_verticalScrollbarUpButton_22(),
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7::get_offset_of_m_verticalScrollbarDownButton_23(),
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7::get_offset_of_m_ScrollView_24(),
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7::get_offset_of_m_CustomStyles_25(),
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7::get_offset_of_m_Settings_26(),
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_StaticFields::get_offset_of_ms_Error_27(),
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7::get_offset_of_m_Styles_28(),
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_StaticFields::get_offset_of_m_SkinChanged_29(),
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_StaticFields::get_offset_of_current_30(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2244;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2244 = { sizeof (SkinChangedDelegate_tAB4CEEA8C8A0BDCFD51C9624AE173C46A40135D8), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2245;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2245 = { sizeof (GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2245[2] =
{
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5::get_offset_of_m_Ptr_0(),
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5::get_offset_of_m_SourceStyle_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2246;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2246 = { sizeof (GUIStyle_t671F175A201A19166385EE3392292A5F50070572), -1, sizeof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2246[15] =
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572::get_offset_of_m_Ptr_0(),
GUIStyle_t671F175A201A19166385EE3392292A5F50070572::get_offset_of_m_Normal_1(),
GUIStyle_t671F175A201A19166385EE3392292A5F50070572::get_offset_of_m_Hover_2(),
GUIStyle_t671F175A201A19166385EE3392292A5F50070572::get_offset_of_m_Active_3(),
GUIStyle_t671F175A201A19166385EE3392292A5F50070572::get_offset_of_m_Focused_4(),
GUIStyle_t671F175A201A19166385EE3392292A5F50070572::get_offset_of_m_OnNormal_5(),
GUIStyle_t671F175A201A19166385EE3392292A5F50070572::get_offset_of_m_OnHover_6(),
GUIStyle_t671F175A201A19166385EE3392292A5F50070572::get_offset_of_m_OnActive_7(),
GUIStyle_t671F175A201A19166385EE3392292A5F50070572::get_offset_of_m_OnFocused_8(),
GUIStyle_t671F175A201A19166385EE3392292A5F50070572::get_offset_of_m_Border_9(),
GUIStyle_t671F175A201A19166385EE3392292A5F50070572::get_offset_of_m_Padding_10(),
GUIStyle_t671F175A201A19166385EE3392292A5F50070572::get_offset_of_m_Margin_11(),
GUIStyle_t671F175A201A19166385EE3392292A5F50070572::get_offset_of_m_Overflow_12(),
GUIStyle_t671F175A201A19166385EE3392292A5F50070572_StaticFields::get_offset_of_showKeyboardFocus_13(),
GUIStyle_t671F175A201A19166385EE3392292A5F50070572_StaticFields::get_offset_of_s_None_14(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2247;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2247 = { sizeof (ImagePosition_tF065DB37618AF79318821CFE3F1577B99B65FC9C)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2247[5] =
{
ImagePosition_tF065DB37618AF79318821CFE3F1577B99B65FC9C::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2248;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2248 = { sizeof (GUITargetAttribute_tA23DD43B1D91AF11499A0320EBAAC900A35FC4B8), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2248[1] =
{
GUITargetAttribute_tA23DD43B1D91AF11499A0320EBAAC900A35FC4B8::get_offset_of_displayMask_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2249;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2249 = { sizeof (GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA), -1, sizeof(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2249[8] =
{
GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields::get_offset_of_s_SkinMode_0(),
GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields::get_offset_of_s_OriginalID_1(),
GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields::get_offset_of_takeCapture_2(),
GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields::get_offset_of_releaseCapture_3(),
GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields::get_offset_of_processEvent_4(),
GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields::get_offset_of_endContainerGUIFromException_5(),
GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields::get_offset_of_guiChanged_6(),
GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields::get_offset_of_U3CguiIsExitingU3Ek__BackingField_7(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2250;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2250 = { sizeof (ExitGUIException_t6AD1987AE1D23E0E774F9BEA41F30AE4CE378F07), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2251;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2251 = { sizeof (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845), -1, sizeof(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2251[11] =
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845::get_offset_of_minWidth_0(),
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845::get_offset_of_maxWidth_1(),
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845::get_offset_of_minHeight_2(),
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845::get_offset_of_maxHeight_3(),
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845::get_offset_of_rect_4(),
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845::get_offset_of_stretchWidth_5(),
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845::get_offset_of_stretchHeight_6(),
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845::get_offset_of_consideredForMargin_7(),
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845::get_offset_of_m_Style_8(),
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_StaticFields::get_offset_of_kDummyRect_9(),
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_StaticFields::get_offset_of_indent_10(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2252;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2252 = { sizeof (GUIWordWrapSizer_tC17A8FB8EE28BDCFEE27C7E7000BA8215E76CFD0), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2252[3] =
{
GUIWordWrapSizer_tC17A8FB8EE28BDCFEE27C7E7000BA8215E76CFD0::get_offset_of_m_Content_11(),
GUIWordWrapSizer_tC17A8FB8EE28BDCFEE27C7E7000BA8215E76CFD0::get_offset_of_m_ForcedMinHeight_12(),
GUIWordWrapSizer_tC17A8FB8EE28BDCFEE27C7E7000BA8215E76CFD0::get_offset_of_m_ForcedMaxHeight_13(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2253;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2253 = { sizeof (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2253[20] =
{
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601::get_offset_of_entries_11(),
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601::get_offset_of_isVertical_12(),
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601::get_offset_of_resetCoords_13(),
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601::get_offset_of_spacing_14(),
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601::get_offset_of_sameSize_15(),
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601::get_offset_of_isWindow_16(),
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601::get_offset_of_windowID_17(),
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601::get_offset_of_m_Cursor_18(),
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601::get_offset_of_m_StretchableCountX_19(),
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601::get_offset_of_m_StretchableCountY_20(),
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601::get_offset_of_m_UserSpecifiedWidth_21(),
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601::get_offset_of_m_UserSpecifiedHeight_22(),
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601::get_offset_of_m_ChildMinWidth_23(),
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601::get_offset_of_m_ChildMaxWidth_24(),
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601::get_offset_of_m_ChildMinHeight_25(),
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601::get_offset_of_m_ChildMaxHeight_26(),
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601::get_offset_of_m_MarginLeft_27(),
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601::get_offset_of_m_MarginRight_28(),
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601::get_offset_of_m_MarginTop_29(),
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601::get_offset_of_m_MarginBottom_30(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2254;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2254 = { sizeof (GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2254[12] =
{
GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE::get_offset_of_calcMinWidth_31(),
GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE::get_offset_of_calcMaxWidth_32(),
GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE::get_offset_of_calcMinHeight_33(),
GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE::get_offset_of_calcMaxHeight_34(),
GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE::get_offset_of_clientWidth_35(),
GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE::get_offset_of_clientHeight_36(),
GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE::get_offset_of_allowHorizontalScroll_37(),
GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE::get_offset_of_allowVerticalScroll_38(),
GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE::get_offset_of_needsHorizontalScrollbar_39(),
GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE::get_offset_of_needsVerticalScrollbar_40(),
GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE::get_offset_of_horizontalScrollbar_41(),
GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE::get_offset_of_verticalScrollbar_42(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2255;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2255 = { sizeof (ScrollViewState_t738AAD89973B4E764B6F977945263C24A881428E), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2256;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2256 = { sizeof (SliderState_t6081D6F2CF6D0F1A13B2A2D255671B4053EC52CB), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2257;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2257 = { sizeof (TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2257[16] =
{
TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440::get_offset_of_keyboardOnScreen_0(),
TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440::get_offset_of_controlID_1(),
TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440::get_offset_of_style_2(),
TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440::get_offset_of_multiline_3(),
TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440::get_offset_of_hasHorizontalCursorPos_4(),
TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440::get_offset_of_isPasswordField_5(),
TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440::get_offset_of_scrollOffset_6(),
TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440::get_offset_of_m_Content_7(),
TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440::get_offset_of_m_CursorIndex_8(),
TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440::get_offset_of_m_SelectIndex_9(),
TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440::get_offset_of_m_RevealCursor_10(),
TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440::get_offset_of_m_MouseDragSelectsWholeWords_11(),
TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440::get_offset_of_m_DblClickInitPos_12(),
TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440::get_offset_of_m_DblClickSnap_13(),
TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440::get_offset_of_m_bJustSelected_14(),
TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440::get_offset_of_m_iAltCursorPos_15(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2258;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2258 = { sizeof (DblClickSnapping_t82D31F14587749755F9CB1FF9E975DDBEF7630CE)+ sizeof (RuntimeObject), sizeof(uint8_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2258[3] =
{
DblClickSnapping_t82D31F14587749755F9CB1FF9E975DDBEF7630CE::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2259;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2259 = { sizeof (U3CModuleU3E_tA591571AD0F1B8BA034C523CD27F8800C0345102), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2260;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2260 = { sizeof (TouchPhase_t7E9CEC3DD059E32F847242513BD6CE30866AB2A6)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2260[6] =
{
TouchPhase_t7E9CEC3DD059E32F847242513BD6CE30866AB2A6::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2261;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2261 = { sizeof (IMECompositionMode_t491836CA4BD289253C9FF16B3C158744C8598CE2)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2261[4] =
{
IMECompositionMode_t491836CA4BD289253C9FF16B3C158744C8598CE2::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2262;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2262 = { sizeof (TouchType_tBBD83025576FC017B10484014B5C396613A02B8E)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2262[4] =
{
TouchType_tBBD83025576FC017B10484014B5C396613A02B8E::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2263;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2263 = { sizeof (Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8)+ sizeof (RuntimeObject), sizeof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2263[14] =
{
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8::get_offset_of_m_FingerId_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8::get_offset_of_m_Position_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8::get_offset_of_m_RawPosition_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8::get_offset_of_m_PositionDelta_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8::get_offset_of_m_TimeDelta_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8::get_offset_of_m_TapCount_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8::get_offset_of_m_Phase_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8::get_offset_of_m_Type_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8::get_offset_of_m_Pressure_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8::get_offset_of_m_maximumPossiblePressure_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8::get_offset_of_m_Radius_10() + static_cast<int32_t>(sizeof(RuntimeObject)),
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8::get_offset_of_m_RadiusVariance_11() + static_cast<int32_t>(sizeof(RuntimeObject)),
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8::get_offset_of_m_AltitudeAngle_12() + static_cast<int32_t>(sizeof(RuntimeObject)),
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8::get_offset_of_m_AzimuthAngle_13() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2264;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2264 = { sizeof (CameraRaycastHelper_tD4019A7B955AB1B53870F68889B611A1ADAF1E05), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2265;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2265 = { sizeof (Input_tCCB96DE9636DD2C1993637958AA227434290E523), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2266;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2266 = { sizeof (SendMouseEvents_tC8FB7F3FCFF87BDF2E56E1E0D209B81943D8F666), -1, sizeof(SendMouseEvents_tC8FB7F3FCFF87BDF2E56E1E0D209B81943D8F666_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2266[5] =
{
SendMouseEvents_tC8FB7F3FCFF87BDF2E56E1E0D209B81943D8F666_StaticFields::get_offset_of_s_MouseUsed_0(),
SendMouseEvents_tC8FB7F3FCFF87BDF2E56E1E0D209B81943D8F666_StaticFields::get_offset_of_m_LastHit_1(),
SendMouseEvents_tC8FB7F3FCFF87BDF2E56E1E0D209B81943D8F666_StaticFields::get_offset_of_m_MouseDownHit_2(),
SendMouseEvents_tC8FB7F3FCFF87BDF2E56E1E0D209B81943D8F666_StaticFields::get_offset_of_m_CurrentHit_3(),
SendMouseEvents_tC8FB7F3FCFF87BDF2E56E1E0D209B81943D8F666_StaticFields::get_offset_of_m_Cameras_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2267;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2267 = { sizeof (HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2267[2] =
{
HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746::get_offset_of_target_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746::get_offset_of_camera_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2268;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2268 = { sizeof (U3CModuleU3E_t11B36CEBA37CA1FF7C21746E808B860B676A8ECD), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2269;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2269 = { sizeof (Physics2D_tB21970F986016656D66D2922594F336E1EE7D5C7), -1, sizeof(Physics2D_tB21970F986016656D66D2922594F336E1EE7D5C7_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2269[1] =
{
Physics2D_tB21970F986016656D66D2922594F336E1EE7D5C7_StaticFields::get_offset_of_m_LastDisabledRigidbody2D_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2270;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2270 = { sizeof (RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE)+ sizeof (RuntimeObject), sizeof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2270[6] =
{
RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE::get_offset_of_m_Centroid_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE::get_offset_of_m_Point_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE::get_offset_of_m_Normal_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE::get_offset_of_m_Distance_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE::get_offset_of_m_Fraction_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE::get_offset_of_m_Collider_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2271;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2271 = { sizeof (Rigidbody2D_tBDC6900A76D3C47E291446FF008D02B817C81CDE), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2272;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2272 = { sizeof (Collider2D_tD64BE58E48B95D89D349FEAB54D0FE2EEBF83379), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2273;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2273 = { sizeof (U3CModuleU3E_t79D7DE725655CFC1B063EA359E8D75692CF5DC2F), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2274;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2274 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2275;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2275 = { sizeof (CanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2276;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2276 = { sizeof (CanvasRenderer_tB4D9C9FE77FD5C9C4546FC022D6E956960BC2B72), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2276[1] =
{
CanvasRenderer_tB4D9C9FE77FD5C9C4546FC022D6E956960BC2B72::get_offset_of_U3CisMaskU3Ek__BackingField_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2277;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2277 = { sizeof (RectTransformUtility_t9B90669A72B05A33DD88BEBB817BC9CDBB614BBA), -1, sizeof(RectTransformUtility_t9B90669A72B05A33DD88BEBB817BC9CDBB614BBA_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2277[1] =
{
RectTransformUtility_t9B90669A72B05A33DD88BEBB817BC9CDBB614BBA_StaticFields::get_offset_of_s_Corners_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2278;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2278 = { sizeof (RenderMode_tB54632E74CDC4A990E815EB8C3CC515D3A9E2F60)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2278[4] =
{
RenderMode_tB54632E74CDC4A990E815EB8C3CC515D3A9E2F60::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2279;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2279 = { sizeof (Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591), -1, sizeof(Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2279[1] =
{
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_StaticFields::get_offset_of_willRenderCanvases_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2280;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2280 = { sizeof (WillRenderCanvases_tBD5AD090B5938021DEAA679A5AEEA790F60A8BEE), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2281;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2281 = { sizeof (UISystemProfilerApi_tD33E558B2D0176096E5DB375956ACA9F03678F1B), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2282;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2282 = { sizeof (SampleType_t2144AEAF3447ACAFCE1C13AF669F63192F8E75EC)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2282[3] =
{
SampleType_t2144AEAF3447ACAFCE1C13AF669F63192F8E75EC::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2283;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2283 = { sizeof (U3CModuleU3E_tD4E2C466946EFCC911763D21CD7F606F5D963632), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2284;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2284 = { sizeof (XRCameraSubsystem_t60344763BCE87679E570A4AD0BB068B74DBF20AF), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2284[1] =
{
XRCameraSubsystem_t60344763BCE87679E570A4AD0BB068B74DBF20AF::get_offset_of_m_Provider_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2285;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2285 = { sizeof (IProvider_t5D7A855308E0C5E8F9175CA7CDEE91F929A5185C), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2286;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2286 = { sizeof (XRCameraSubsystemCinfo_t2DEC704C4D0CB1EC17BB8521B3358EE08C878BCC)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2286[8] =
{
XRCameraSubsystemCinfo_t2DEC704C4D0CB1EC17BB8521B3358EE08C878BCC::get_offset_of_U3CidU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRCameraSubsystemCinfo_t2DEC704C4D0CB1EC17BB8521B3358EE08C878BCC::get_offset_of_U3CimplementationTypeU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRCameraSubsystemCinfo_t2DEC704C4D0CB1EC17BB8521B3358EE08C878BCC::get_offset_of_U3CsupportsAverageBrightnessU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRCameraSubsystemCinfo_t2DEC704C4D0CB1EC17BB8521B3358EE08C878BCC::get_offset_of_U3CsupportsAverageColorTemperatureU3Ek__BackingField_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRCameraSubsystemCinfo_t2DEC704C4D0CB1EC17BB8521B3358EE08C878BCC::get_offset_of_U3CsupportsColorCorrectionU3Ek__BackingField_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRCameraSubsystemCinfo_t2DEC704C4D0CB1EC17BB8521B3358EE08C878BCC::get_offset_of_U3CsupportsDisplayMatrixU3Ek__BackingField_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRCameraSubsystemCinfo_t2DEC704C4D0CB1EC17BB8521B3358EE08C878BCC::get_offset_of_U3CsupportsProjectionMatrixU3Ek__BackingField_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRCameraSubsystemCinfo_t2DEC704C4D0CB1EC17BB8521B3358EE08C878BCC::get_offset_of_U3CsupportsTimestampU3Ek__BackingField_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2287;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2287 = { sizeof (XRCameraSubsystemDescriptor_tAE89D80BC30DD07708520505B84260DAA5309132), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2287[5] =
{
XRCameraSubsystemDescriptor_tAE89D80BC30DD07708520505B84260DAA5309132::get_offset_of_U3CsupportsAverageBrightnessU3Ek__BackingField_2(),
XRCameraSubsystemDescriptor_tAE89D80BC30DD07708520505B84260DAA5309132::get_offset_of_U3CsupportsAverageColorTemperatureU3Ek__BackingField_3(),
XRCameraSubsystemDescriptor_tAE89D80BC30DD07708520505B84260DAA5309132::get_offset_of_U3CsupportsDisplayMatrixU3Ek__BackingField_4(),
XRCameraSubsystemDescriptor_tAE89D80BC30DD07708520505B84260DAA5309132::get_offset_of_U3CsupportsProjectionMatrixU3Ek__BackingField_5(),
XRCameraSubsystemDescriptor_tAE89D80BC30DD07708520505B84260DAA5309132::get_offset_of_U3CsupportsTimestampU3Ek__BackingField_6(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2288;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2288 = { sizeof (XRDepthSubsystem_tA1188AEE9FA009EAF2BDA064BEA1482FF4CD8AD7), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2288[2] =
{
XRDepthSubsystem_tA1188AEE9FA009EAF2BDA064BEA1482FF4CD8AD7::get_offset_of_m_Interface_0(),
XRDepthSubsystem_tA1188AEE9FA009EAF2BDA064BEA1482FF4CD8AD7::get_offset_of_m_DefaultPointCloud_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2289;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2289 = { sizeof (IDepthApi_t7CEE33C76911E53220D0242D5E38503D64736BE4), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2290;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2290 = { sizeof (XRDepthSubsystemDescriptor_t00ED077879ECD5D44FA419F0EBDCC50963B91E98), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2290[3] =
{
XRDepthSubsystemDescriptor_t00ED077879ECD5D44FA419F0EBDCC50963B91E98::get_offset_of_U3CsupportsFeaturePointsU3Ek__BackingField_2(),
XRDepthSubsystemDescriptor_t00ED077879ECD5D44FA419F0EBDCC50963B91E98::get_offset_of_U3CsupportsUniqueIdsU3Ek__BackingField_3(),
XRDepthSubsystemDescriptor_t00ED077879ECD5D44FA419F0EBDCC50963B91E98::get_offset_of_U3CsupportsConfidenceU3Ek__BackingField_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2291;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2291 = { sizeof (Capabilities_t4BAC3FA7758E1334A38C073AB595944DAE05308E)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2291[5] =
{
Capabilities_t4BAC3FA7758E1334A38C073AB595944DAE05308E::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2292;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2292 = { sizeof (Cinfo_t1EA8BEDEF7B4AF8E7065D4173F829D5C3C09F913)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2292[3] =
{
Cinfo_t1EA8BEDEF7B4AF8E7065D4173F829D5C3C09F913::get_offset_of_id_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Cinfo_t1EA8BEDEF7B4AF8E7065D4173F829D5C3C09F913::get_offset_of_implementationType_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Cinfo_t1EA8BEDEF7B4AF8E7065D4173F829D5C3C09F913::get_offset_of_U3CcapabilitiesU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2293;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2293 = { sizeof (XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0)+ sizeof (RuntimeObject), sizeof(XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2293[4] =
{
XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0::get_offset_of_m_TrackableId_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0::get_offset_of_m_Pose_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0::get_offset_of_m_TrackingState_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRPointCloud_tA4A412DE503530E1B2953919F1463B9B48504ED0::get_offset_of_m_NativePtr_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2294;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2294 = { sizeof (BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227)+ sizeof (RuntimeObject), sizeof(BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2294[8] =
{
BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227::get_offset_of_m_TrackableId_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227::get_offset_of_m_SubsumedById_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227::get_offset_of_m_Center_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227::get_offset_of_m_Pose_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227::get_offset_of_m_Size_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227::get_offset_of_m_Alignment_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227::get_offset_of_m_TrackingState_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
BoundedPlane_t5FBCC289E172852D4A9C51F6581B3C7EEE17A227::get_offset_of_m_NativePtr_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2295;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2295 = { sizeof (PlaneAlignment_t8959E33A181E8A5B46387DDC30F957DD14B48783)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2295[6] =
{
PlaneAlignment_t8959E33A181E8A5B46387DDC30F957DD14B48783::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2296;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2296 = { sizeof (XRPlaneSubsystem_tCAFBDE4A030D5EB56FC6D968DB31FA2852836909), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2296[2] =
{
XRPlaneSubsystem_tCAFBDE4A030D5EB56FC6D968DB31FA2852836909::get_offset_of_m_Provider_0(),
XRPlaneSubsystem_tCAFBDE4A030D5EB56FC6D968DB31FA2852836909::get_offset_of_m_DefaultPlane_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2297;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2297 = { sizeof (IProvider_t40982CEC3244CC0C726CED2C27336E95321F7469), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2298;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2298 = { sizeof (XRPlaneSubsystemDescriptor_t493CA5F0CB7E1F442AE0EE5332BB356314E5545E), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2298[4] =
{
XRPlaneSubsystemDescriptor_t493CA5F0CB7E1F442AE0EE5332BB356314E5545E::get_offset_of_U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_2(),
XRPlaneSubsystemDescriptor_t493CA5F0CB7E1F442AE0EE5332BB356314E5545E::get_offset_of_U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_3(),
XRPlaneSubsystemDescriptor_t493CA5F0CB7E1F442AE0EE5332BB356314E5545E::get_offset_of_U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_4(),
XRPlaneSubsystemDescriptor_t493CA5F0CB7E1F442AE0EE5332BB356314E5545E::get_offset_of_U3CsupportsBoundaryVerticesU3Ek__BackingField_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2299;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2299 = { sizeof (Cinfo_t3A7A0974E08C86861E17F80513931B857013DF29)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2299[6] =
{
Cinfo_t3A7A0974E08C86861E17F80513931B857013DF29::get_offset_of_U3CidU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Cinfo_t3A7A0974E08C86861E17F80513931B857013DF29::get_offset_of_U3CsubsystemImplementationTypeU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Cinfo_t3A7A0974E08C86861E17F80513931B857013DF29::get_offset_of_U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
Cinfo_t3A7A0974E08C86861E17F80513931B857013DF29::get_offset_of_U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
Cinfo_t3A7A0974E08C86861E17F80513931B857013DF29::get_offset_of_U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
Cinfo_t3A7A0974E08C86861E17F80513931B857013DF29::get_offset_of_U3CsupportsBoundaryVerticesU3Ek__BackingField_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2300;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2300 = { sizeof (TrackableType_t078FFF635AE2E4FC51E7D7DB8AB1CB884D30EA1F)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2300[11] =
{
TrackableType_t078FFF635AE2E4FC51E7D7DB8AB1CB884D30EA1F::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2301;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2301 = { sizeof (XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82)+ sizeof (RuntimeObject), sizeof(XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2301[4] =
{
XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82::get_offset_of_m_TrackableId_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82::get_offset_of_m_Pose_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82::get_offset_of_m_Distance_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRRaycastHit_t2DE122E601B75E2070D4A542A13E2486DEE60E82::get_offset_of_m_HitType_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2302;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2302 = { sizeof (XRRaycastSubsystem_t1181EA314910ABB4E1F50BF2F7650EC1512A0A20), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2302[2] =
{
XRRaycastSubsystem_t1181EA314910ABB4E1F50BF2F7650EC1512A0A20::get_offset_of_m_Provider_0(),
XRRaycastSubsystem_t1181EA314910ABB4E1F50BF2F7650EC1512A0A20::get_offset_of_m_DefaultRaycastHit_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2303;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2303 = { sizeof (IProvider_tB9DFB2CA3241B1F6107D01753C0F00628994A3ED), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2304;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2304 = { sizeof (XRRaycastSubsystemDescriptor_tDC6E6E465FE3E4D385429760EF0C84832A09A3D7), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2304[3] =
{
XRRaycastSubsystemDescriptor_tDC6E6E465FE3E4D385429760EF0C84832A09A3D7::get_offset_of_U3CsupportsViewportBasedRaycastU3Ek__BackingField_2(),
XRRaycastSubsystemDescriptor_tDC6E6E465FE3E4D385429760EF0C84832A09A3D7::get_offset_of_U3CsupportsWorldBasedRaycastU3Ek__BackingField_3(),
XRRaycastSubsystemDescriptor_tDC6E6E465FE3E4D385429760EF0C84832A09A3D7::get_offset_of_U3CsupportedTrackableTypesU3Ek__BackingField_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2305;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2305 = { sizeof (Cinfo_t4760A1C9784E5D057E5B5D48B3C4C0B905471704)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2305[5] =
{
Cinfo_t4760A1C9784E5D057E5B5D48B3C4C0B905471704::get_offset_of_U3CidU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Cinfo_t4760A1C9784E5D057E5B5D48B3C4C0B905471704::get_offset_of_U3CsubsystemImplementationTypeU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Cinfo_t4760A1C9784E5D057E5B5D48B3C4C0B905471704::get_offset_of_U3CsupportsViewportBasedRaycastU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
Cinfo_t4760A1C9784E5D057E5B5D48B3C4C0B905471704::get_offset_of_U3CsupportsWorldBasedRaycastU3Ek__BackingField_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
Cinfo_t4760A1C9784E5D057E5B5D48B3C4C0B905471704::get_offset_of_U3CsupportedTrackableTypesU3Ek__BackingField_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2306;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2306 = { sizeof (XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9)+ sizeof (RuntimeObject), sizeof(XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2306[4] =
{
XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9::get_offset_of_m_Id_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9::get_offset_of_m_Pose_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9::get_offset_of_m_TrackingState_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRReferencePoint_tA8592C08A27EC91D9B1FB3B083C95C5D372FF1F9::get_offset_of_m_NativePtr_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2307;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2307 = { sizeof (XRReferencePointSubsystem_tF175EC0188CC6EFB0A0633BA11FCA4D81A6A88E3), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2307[2] =
{
XRReferencePointSubsystem_tF175EC0188CC6EFB0A0633BA11FCA4D81A6A88E3::get_offset_of_m_Provider_0(),
XRReferencePointSubsystem_tF175EC0188CC6EFB0A0633BA11FCA4D81A6A88E3::get_offset_of_m_DefaultReferencePoint_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2308;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2308 = { sizeof (IProvider_tA80639246D0ED291E8332BE2FBC3FE3EA13A4459), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2309;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2309 = { sizeof (XRReferencePointSubsystemDescriptor_t5972C5E3DEF485A89A3AA7D9D47CCD8A67FDB74D), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2309[1] =
{
XRReferencePointSubsystemDescriptor_t5972C5E3DEF485A89A3AA7D9D47CCD8A67FDB74D::get_offset_of_U3CsupportsTrackableAttachmentsU3Ek__BackingField_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2310;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2310 = { sizeof (Cinfo_t763E336A62E286B348AB9B084829CFD16A32D7AD)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2310[3] =
{
Cinfo_t763E336A62E286B348AB9B084829CFD16A32D7AD::get_offset_of_U3CidU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Cinfo_t763E336A62E286B348AB9B084829CFD16A32D7AD::get_offset_of_U3CsubsystemImplementationTypeU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Cinfo_t763E336A62E286B348AB9B084829CFD16A32D7AD::get_offset_of_U3CsupportsTrackableAttachmentsU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2311;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2311 = { sizeof (XRSessionSubsystem_t9B9C16B4BDB611559FB6FA728BE399001E47EFF0), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2311[1] =
{
XRSessionSubsystem_t9B9C16B4BDB611559FB6FA728BE399001E47EFF0::get_offset_of_m_Provider_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2312;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2312 = { sizeof (IProvider_tCE3A36B52F24E47DF8D9945EAB79493A822E9428), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2313;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2313 = { sizeof (XRSessionSubsystemDescriptor_tAB6680BDBC0B281B15C5C9E6F4DA6810CFFBA079), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2313[1] =
{
XRSessionSubsystemDescriptor_tAB6680BDBC0B281B15C5C9E6F4DA6810CFFBA079::get_offset_of_U3CsupportsInstallU3Ek__BackingField_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2314;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2314 = { sizeof (Cinfo_t0D2C3593DAA5642EF84F81D756DBDDACC2E27C1A)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2314[3] =
{
Cinfo_t0D2C3593DAA5642EF84F81D756DBDDACC2E27C1A::get_offset_of_U3CsupportsInstallU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Cinfo_t0D2C3593DAA5642EF84F81D756DBDDACC2E27C1A::get_offset_of_U3CidU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Cinfo_t0D2C3593DAA5642EF84F81D756DBDDACC2E27C1A::get_offset_of_U3CsubsystemImplementationTypeU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2315;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2315 = { sizeof (TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47)+ sizeof (RuntimeObject), sizeof(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47 ), sizeof(TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2315[3] =
{
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47_StaticFields::get_offset_of_s_InvalidId_0(),
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47::get_offset_of_m_SubId1_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
TrackableId_tA7E19AFE62176E25E3759548887E9068E1E4AE47::get_offset_of_m_SubId2_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2316;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2316 = { sizeof (TrackingState_t124D9E603E4E0453A85409CF7762EE8C946233F6)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2316[4] =
{
TrackingState_t124D9E603E4E0453A85409CF7762EE8C946233F6::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2317;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2317 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2318;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2318 = { 0, 0, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2319;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2319 = { sizeof (U3CModuleU3E_t2E16431D825A5D233BFED659B3C516DAB0AC0286), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2320;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2320 = { sizeof (AudioSettings_t77B5D69F704CF3B710B0B6970BB62A4BF25A5B31), -1, sizeof(AudioSettings_t77B5D69F704CF3B710B0B6970BB62A4BF25A5B31_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2320[1] =
{
AudioSettings_t77B5D69F704CF3B710B0B6970BB62A4BF25A5B31_StaticFields::get_offset_of_OnAudioConfigurationChanged_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2321;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2321 = { sizeof (AudioConfigurationChangeHandler_t8E0E05D0198D95B5412DC716F87D97020EF54926), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2322;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2322 = { sizeof (AudioClip_tCC3C35F579203CE2601243585AB3D6953C3BA051), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2322[2] =
{
AudioClip_tCC3C35F579203CE2601243585AB3D6953C3BA051::get_offset_of_m_PCMReaderCallback_4(),
AudioClip_tCC3C35F579203CE2601243585AB3D6953C3BA051::get_offset_of_m_PCMSetPositionCallback_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2323;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2323 = { sizeof (PCMReaderCallback_t9B87AB13DCD37957B045554BF28A57697E6B8EFB), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2324;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2324 = { sizeof (PCMSetPositionCallback_t092ED33043C0279B5E4D343EBCBD516CEF260801), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2325;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2325 = { sizeof (AudioBehaviour_tC612EC4E17A648A5C568621F3FBF1DBD773C71C7), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2326;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2326 = { sizeof (AudioListener_tE3E1467B84A4AFD509947B44A7C8ACFB67FF2099), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2327;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2327 = { sizeof (AudioSource_t5196F862B4E60F404613361C90D87FBDD041E93C), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2328;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2328 = { sizeof (AudioClipPlayable_t6094311F945E65BC29F85B23A81E8426D596553C)+ sizeof (RuntimeObject), sizeof(AudioClipPlayable_t6094311F945E65BC29F85B23A81E8426D596553C ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2328[1] =
{
AudioClipPlayable_t6094311F945E65BC29F85B23A81E8426D596553C::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2329;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2329 = { sizeof (AudioMixerPlayable_t2C445EB39F9111CCFF7E2E1F813B22007862FA9F)+ sizeof (RuntimeObject), sizeof(AudioMixerPlayable_t2C445EB39F9111CCFF7E2E1F813B22007862FA9F ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2329[1] =
{
AudioMixerPlayable_t2C445EB39F9111CCFF7E2E1F813B22007862FA9F::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2330;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2330 = { sizeof (AudioPlayableOutput_tD2671908FEE2832112E8A3B611089A2558A4DA6B)+ sizeof (RuntimeObject), sizeof(AudioPlayableOutput_tD2671908FEE2832112E8A3B611089A2558A4DA6B ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2330[1] =
{
AudioPlayableOutput_tD2671908FEE2832112E8A3B611089A2558A4DA6B::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2331;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2331 = { sizeof (AudioSampleProvider_tD5B209D07C5F1D4714F92069F4071068B9BC6913), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2331[8] =
{
AudioSampleProvider_tD5B209D07C5F1D4714F92069F4071068B9BC6913::get_offset_of_m_ConsumeSampleFramesNativeFunction_0(),
AudioSampleProvider_tD5B209D07C5F1D4714F92069F4071068B9BC6913::get_offset_of_U3CidU3Ek__BackingField_1(),
AudioSampleProvider_tD5B209D07C5F1D4714F92069F4071068B9BC6913::get_offset_of_U3CtrackIndexU3Ek__BackingField_2(),
AudioSampleProvider_tD5B209D07C5F1D4714F92069F4071068B9BC6913::get_offset_of_U3CownerU3Ek__BackingField_3(),
AudioSampleProvider_tD5B209D07C5F1D4714F92069F4071068B9BC6913::get_offset_of_U3CchannelCountU3Ek__BackingField_4(),
AudioSampleProvider_tD5B209D07C5F1D4714F92069F4071068B9BC6913::get_offset_of_U3CsampleRateU3Ek__BackingField_5(),
AudioSampleProvider_tD5B209D07C5F1D4714F92069F4071068B9BC6913::get_offset_of_sampleFramesAvailable_6(),
AudioSampleProvider_tD5B209D07C5F1D4714F92069F4071068B9BC6913::get_offset_of_sampleFramesOverflow_7(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2332;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2332 = { sizeof (ConsumeSampleFramesNativeFunction_tC1E0B1BFCF2C3D7F87D66FCFA2022369327D931D), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2333;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2333 = { sizeof (SampleFramesHandler_t5179C92AFBB393A85144E9134A862C161726F6AF), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2334;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2334 = { sizeof (U3CModuleU3E_t188571242096CC1D2BEFEA0CA619B862EF745D19), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2335;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2335 = { sizeof (GcUserProfileData_tDCEBF6CF74E9EBC0B9F9847CE96118169391B57D)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2335[4] =
{
GcUserProfileData_tDCEBF6CF74E9EBC0B9F9847CE96118169391B57D::get_offset_of_userName_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
GcUserProfileData_tDCEBF6CF74E9EBC0B9F9847CE96118169391B57D::get_offset_of_userID_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
GcUserProfileData_tDCEBF6CF74E9EBC0B9F9847CE96118169391B57D::get_offset_of_isFriend_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
GcUserProfileData_tDCEBF6CF74E9EBC0B9F9847CE96118169391B57D::get_offset_of_image_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2336;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2336 = { sizeof (GcAchievementDescriptionData_t12849233B11B5241066E0D33B3681C2352CAF0A0)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2336[7] =
{
GcAchievementDescriptionData_t12849233B11B5241066E0D33B3681C2352CAF0A0::get_offset_of_m_Identifier_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
GcAchievementDescriptionData_t12849233B11B5241066E0D33B3681C2352CAF0A0::get_offset_of_m_Title_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
GcAchievementDescriptionData_t12849233B11B5241066E0D33B3681C2352CAF0A0::get_offset_of_m_Image_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
GcAchievementDescriptionData_t12849233B11B5241066E0D33B3681C2352CAF0A0::get_offset_of_m_AchievedDescription_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
GcAchievementDescriptionData_t12849233B11B5241066E0D33B3681C2352CAF0A0::get_offset_of_m_UnachievedDescription_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
GcAchievementDescriptionData_t12849233B11B5241066E0D33B3681C2352CAF0A0::get_offset_of_m_Hidden_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
GcAchievementDescriptionData_t12849233B11B5241066E0D33B3681C2352CAF0A0::get_offset_of_m_Points_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2337;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2337 = { sizeof (GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55)+ sizeof (RuntimeObject), sizeof(GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55_marshaled_pinvoke), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2337[5] =
{
GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55::get_offset_of_m_Identifier_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55::get_offset_of_m_PercentCompleted_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55::get_offset_of_m_Completed_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55::get_offset_of_m_Hidden_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
GcAchievementData_t5CBCF44628981C91C76C552716A7D551670DCE55::get_offset_of_m_LastReportedDate_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2338;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2338 = { sizeof (GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A)+ sizeof (RuntimeObject), sizeof(GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A_marshaled_pinvoke), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2338[7] =
{
GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A::get_offset_of_m_Category_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A::get_offset_of_m_ValueLow_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A::get_offset_of_m_ValueHigh_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A::get_offset_of_m_Date_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A::get_offset_of_m_FormattedValue_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A::get_offset_of_m_PlayerID_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
GcScoreData_t45EF6CC4038C34CE5823D33D1978C5A3F2E0D09A::get_offset_of_m_Rank_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2339;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2339 = { sizeof (GameCenterPlatform_t699FF764080BA03011F7DBEA26659A3E4FB2ED43), -1, sizeof(GameCenterPlatform_t699FF764080BA03011F7DBEA26659A3E4FB2ED43_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2339[7] =
{
GameCenterPlatform_t699FF764080BA03011F7DBEA26659A3E4FB2ED43_StaticFields::get_offset_of_s_AuthenticateCallback_0(),
GameCenterPlatform_t699FF764080BA03011F7DBEA26659A3E4FB2ED43_StaticFields::get_offset_of_s_adCache_1(),
GameCenterPlatform_t699FF764080BA03011F7DBEA26659A3E4FB2ED43_StaticFields::get_offset_of_s_friends_2(),
GameCenterPlatform_t699FF764080BA03011F7DBEA26659A3E4FB2ED43_StaticFields::get_offset_of_s_users_3(),
GameCenterPlatform_t699FF764080BA03011F7DBEA26659A3E4FB2ED43_StaticFields::get_offset_of_s_ResetAchievements_4(),
GameCenterPlatform_t699FF764080BA03011F7DBEA26659A3E4FB2ED43_StaticFields::get_offset_of_m_LocalUser_5(),
GameCenterPlatform_t699FF764080BA03011F7DBEA26659A3E4FB2ED43_StaticFields::get_offset_of_m_GcBoards_6(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2340;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2340 = { sizeof (U3CUnityEngine_SocialPlatforms_ISocialPlatform_AuthenticateU3Ec__AnonStorey0_t5601A9A066EAEA224918FCB9B71F770D57C3B488), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2340[1] =
{
U3CUnityEngine_SocialPlatforms_ISocialPlatform_AuthenticateU3Ec__AnonStorey0_t5601A9A066EAEA224918FCB9B71F770D57C3B488::get_offset_of_callback_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2341;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2341 = { sizeof (LocalUser_tBBCEEB55B6F28DFA7F4677E9273622A34CABB135), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2341[3] =
{
LocalUser_tBBCEEB55B6F28DFA7F4677E9273622A34CABB135::get_offset_of_m_Friends_5(),
LocalUser_tBBCEEB55B6F28DFA7F4677E9273622A34CABB135::get_offset_of_m_Authenticated_6(),
LocalUser_tBBCEEB55B6F28DFA7F4677E9273622A34CABB135::get_offset_of_m_Underage_7(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2342;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2342 = { sizeof (UserProfile_tB1F9D8E54F0480240196974DCCAF2742F8F0A51E), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2342[5] =
{
UserProfile_tB1F9D8E54F0480240196974DCCAF2742F8F0A51E::get_offset_of_m_UserName_0(),
UserProfile_tB1F9D8E54F0480240196974DCCAF2742F8F0A51E::get_offset_of_m_ID_1(),
UserProfile_tB1F9D8E54F0480240196974DCCAF2742F8F0A51E::get_offset_of_m_IsFriend_2(),
UserProfile_tB1F9D8E54F0480240196974DCCAF2742F8F0A51E::get_offset_of_m_State_3(),
UserProfile_tB1F9D8E54F0480240196974DCCAF2742F8F0A51E::get_offset_of_m_Image_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2343;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2343 = { sizeof (Achievement_t853D7B9496E1B0395F9DC4EC4B6C677A82498633), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2343[5] =
{
Achievement_t853D7B9496E1B0395F9DC4EC4B6C677A82498633::get_offset_of_m_Completed_0(),
Achievement_t853D7B9496E1B0395F9DC4EC4B6C677A82498633::get_offset_of_m_Hidden_1(),
Achievement_t853D7B9496E1B0395F9DC4EC4B6C677A82498633::get_offset_of_m_LastReportedDate_2(),
Achievement_t853D7B9496E1B0395F9DC4EC4B6C677A82498633::get_offset_of_U3CidU3Ek__BackingField_3(),
Achievement_t853D7B9496E1B0395F9DC4EC4B6C677A82498633::get_offset_of_U3CpercentCompletedU3Ek__BackingField_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2344;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2344 = { sizeof (AchievementDescription_t3A0A2B1921C25802FE46B81BF301BFCAA2FEE6E7), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2344[7] =
{
AchievementDescription_t3A0A2B1921C25802FE46B81BF301BFCAA2FEE6E7::get_offset_of_m_Title_0(),
AchievementDescription_t3A0A2B1921C25802FE46B81BF301BFCAA2FEE6E7::get_offset_of_m_Image_1(),
AchievementDescription_t3A0A2B1921C25802FE46B81BF301BFCAA2FEE6E7::get_offset_of_m_AchievedDescription_2(),
AchievementDescription_t3A0A2B1921C25802FE46B81BF301BFCAA2FEE6E7::get_offset_of_m_UnachievedDescription_3(),
AchievementDescription_t3A0A2B1921C25802FE46B81BF301BFCAA2FEE6E7::get_offset_of_m_Hidden_4(),
AchievementDescription_t3A0A2B1921C25802FE46B81BF301BFCAA2FEE6E7::get_offset_of_m_Points_5(),
AchievementDescription_t3A0A2B1921C25802FE46B81BF301BFCAA2FEE6E7::get_offset_of_U3CidU3Ek__BackingField_6(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2345;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2345 = { sizeof (Score_tE23EDB9F6DECBC3AD8D644EC255512A0CDF533E7), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2345[6] =
{
Score_tE23EDB9F6DECBC3AD8D644EC255512A0CDF533E7::get_offset_of_m_Date_0(),
Score_tE23EDB9F6DECBC3AD8D644EC255512A0CDF533E7::get_offset_of_m_FormattedValue_1(),
Score_tE23EDB9F6DECBC3AD8D644EC255512A0CDF533E7::get_offset_of_m_UserID_2(),
Score_tE23EDB9F6DECBC3AD8D644EC255512A0CDF533E7::get_offset_of_m_Rank_3(),
Score_tE23EDB9F6DECBC3AD8D644EC255512A0CDF533E7::get_offset_of_U3CleaderboardIDU3Ek__BackingField_4(),
Score_tE23EDB9F6DECBC3AD8D644EC255512A0CDF533E7::get_offset_of_U3CvalueU3Ek__BackingField_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2346;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2346 = { sizeof (Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2346[10] =
{
Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE::get_offset_of_m_Loading_0(),
Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE::get_offset_of_m_LocalUserScore_1(),
Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE::get_offset_of_m_MaxRange_2(),
Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE::get_offset_of_m_Scores_3(),
Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE::get_offset_of_m_Title_4(),
Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE::get_offset_of_m_UserIDs_5(),
Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE::get_offset_of_U3CidU3Ek__BackingField_6(),
Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE::get_offset_of_U3CuserScopeU3Ek__BackingField_7(),
Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE::get_offset_of_U3CrangeU3Ek__BackingField_8(),
Leaderboard_t01480B36811BC84DF398C8A847972B62F5E2E4FE::get_offset_of_U3CtimeScopeU3Ek__BackingField_9(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2347;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2347 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2348;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2348 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2349;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2349 = { sizeof (UserState_t84B00958348DD8A2B8778416E393E229DACA5871)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2349[6] =
{
UserState_t84B00958348DD8A2B8778416E393E229DACA5871::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2350;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2350 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2351;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2351 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2352;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2352 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2353;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2353 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2354;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2354 = { sizeof (UserScope_t85B1CA855A894226BDE6A19B4CBE7EC9F02D16E3)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2354[3] =
{
UserScope_t85B1CA855A894226BDE6A19B4CBE7EC9F02D16E3::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2355;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2355 = { sizeof (TimeScope_t33ED9CE3541B951879D86F5AE6A8D9389E7A2369)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2355[4] =
{
TimeScope_t33ED9CE3541B951879D86F5AE6A8D9389E7A2369::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2356;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2356 = { sizeof (Range_t2332F6C6E1E19A355F5C1A93FF4434B92FBDBABC)+ sizeof (RuntimeObject), sizeof(Range_t2332F6C6E1E19A355F5C1A93FF4434B92FBDBABC ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2356[2] =
{
Range_t2332F6C6E1E19A355F5C1A93FF4434B92FBDBABC::get_offset_of_from_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Range_t2332F6C6E1E19A355F5C1A93FF4434B92FBDBABC::get_offset_of_count_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2357;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2357 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2358;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2358 = { sizeof (GcLeaderboard_t363887C9C2BFA6F02D08CC6F6BB93E8ABE9A42D2), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2358[2] =
{
GcLeaderboard_t363887C9C2BFA6F02D08CC6F6BB93E8ABE9A42D2::get_offset_of_m_InternalLeaderboard_0(),
GcLeaderboard_t363887C9C2BFA6F02D08CC6F6BB93E8ABE9A42D2::get_offset_of_m_GenericLeaderboard_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2359;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2359 = { sizeof (U3CModuleU3E_tF8A948C14EE892A95D0E0992A0BE6B176FF2DA1D), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2360;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2360 = { sizeof (NativeUpdateCallback_tCC4B5A2692C21C00FC2FC1E4EC5280E98423B8D5), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2361;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2361 = { sizeof (NativeInputEventBuffer_t9960648276F01C5C3435E0E6FD870F2DA8A132EF)+ sizeof (RuntimeObject), sizeof(NativeInputEventBuffer_t9960648276F01C5C3435E0E6FD870F2DA8A132EF ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2361[4] =
{
NativeInputEventBuffer_t9960648276F01C5C3435E0E6FD870F2DA8A132EF::get_offset_of_eventBuffer_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeInputEventBuffer_t9960648276F01C5C3435E0E6FD870F2DA8A132EF::get_offset_of_eventCount_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeInputEventBuffer_t9960648276F01C5C3435E0E6FD870F2DA8A132EF::get_offset_of_sizeInBytes_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
NativeInputEventBuffer_t9960648276F01C5C3435E0E6FD870F2DA8A132EF::get_offset_of_capacityInBytes_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2362;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2362 = { sizeof (NativeInputUpdateType_t744D5594ED044E47F3BAF84F45326948B8930C71)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2362[6] =
{
NativeInputUpdateType_t744D5594ED044E47F3BAF84F45326948B8930C71::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2363;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2363 = { sizeof (NativeInputSystem_t522F6391494159917EE6963E9E61C9EFA9C5795C), -1, sizeof(NativeInputSystem_t522F6391494159917EE6963E9E61C9EFA9C5795C_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2363[4] =
{
NativeInputSystem_t522F6391494159917EE6963E9E61C9EFA9C5795C_StaticFields::get_offset_of_onUpdate_0(),
NativeInputSystem_t522F6391494159917EE6963E9E61C9EFA9C5795C_StaticFields::get_offset_of_onBeforeUpdate_1(),
NativeInputSystem_t522F6391494159917EE6963E9E61C9EFA9C5795C_StaticFields::get_offset_of_onShouldRunUpdate_2(),
NativeInputSystem_t522F6391494159917EE6963E9E61C9EFA9C5795C_StaticFields::get_offset_of_s_OnDeviceDiscoveredCallback_3(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2364;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2364 = { sizeof (U3CModuleU3E_t4F0A0E4F117BEB98FD7E89F0DE774BD5A1E6DBAC), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2365;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2365 = { sizeof (JsonUtility_t91C9687A587DA7DCF335BCBCA8E3BEA2C716DC7F), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2366;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2366 = { sizeof (U3CModuleU3E_tAA355D8AE5C7E9492E77ED0BEF24E3CD28D275D9), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2367;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2367 = { sizeof (ParticleSystem_t45DA87A3E83E738DA3FDAA5A48A133F1A1247C3D), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2368;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2368 = { sizeof (MainModule_t99C675667E0A363368324132DFA34B27FFEE6FC7)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2368[1] =
{
MainModule_t99C675667E0A363368324132DFA34B27FFEE6FC7::get_offset_of_m_ParticleSystem_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2369;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2369 = { sizeof (Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E)+ sizeof (RuntimeObject), sizeof(Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2369[16] =
{
Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E::get_offset_of_m_Position_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E::get_offset_of_m_Velocity_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E::get_offset_of_m_AnimatedVelocity_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E::get_offset_of_m_InitialVelocity_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E::get_offset_of_m_AxisOfRotation_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E::get_offset_of_m_Rotation_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E::get_offset_of_m_AngularVelocity_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E::get_offset_of_m_StartSize_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E::get_offset_of_m_StartColor_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E::get_offset_of_m_RandomSeed_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E::get_offset_of_m_Lifetime_10() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E::get_offset_of_m_StartLifetime_11() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E::get_offset_of_m_MeshIndex_12() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E::get_offset_of_m_EmitAccumulator0_13() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E::get_offset_of_m_EmitAccumulator1_14() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_t64AF74F5D9C7EE7018AD98F29E4FF653558A581E::get_offset_of_m_Flags_15() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2370;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2370 = { sizeof (MinMaxCurve_tDB335EDEBEBD4CFA753081D7C3A2FE2EECFA6D71)+ sizeof (RuntimeObject), sizeof(MinMaxCurve_tDB335EDEBEBD4CFA753081D7C3A2FE2EECFA6D71 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2370[6] =
{
MinMaxCurve_tDB335EDEBEBD4CFA753081D7C3A2FE2EECFA6D71::get_offset_of_m_Mode_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
MinMaxCurve_tDB335EDEBEBD4CFA753081D7C3A2FE2EECFA6D71::get_offset_of_m_CurveMultiplier_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
MinMaxCurve_tDB335EDEBEBD4CFA753081D7C3A2FE2EECFA6D71::get_offset_of_m_CurveMin_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
MinMaxCurve_tDB335EDEBEBD4CFA753081D7C3A2FE2EECFA6D71::get_offset_of_m_CurveMax_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
MinMaxCurve_tDB335EDEBEBD4CFA753081D7C3A2FE2EECFA6D71::get_offset_of_m_ConstantMin_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
MinMaxCurve_tDB335EDEBEBD4CFA753081D7C3A2FE2EECFA6D71::get_offset_of_m_ConstantMax_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2371;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2371 = { sizeof (EmitParams_t03557E552852EC6B71876CD05C4098733702A219)+ sizeof (RuntimeObject), sizeof(EmitParams_t03557E552852EC6B71876CD05C4098733702A219_marshaled_pinvoke), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2371[12] =
{
EmitParams_t03557E552852EC6B71876CD05C4098733702A219::get_offset_of_m_Particle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
EmitParams_t03557E552852EC6B71876CD05C4098733702A219::get_offset_of_m_PositionSet_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
EmitParams_t03557E552852EC6B71876CD05C4098733702A219::get_offset_of_m_VelocitySet_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
EmitParams_t03557E552852EC6B71876CD05C4098733702A219::get_offset_of_m_AxisOfRotationSet_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
EmitParams_t03557E552852EC6B71876CD05C4098733702A219::get_offset_of_m_RotationSet_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
EmitParams_t03557E552852EC6B71876CD05C4098733702A219::get_offset_of_m_AngularVelocitySet_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
EmitParams_t03557E552852EC6B71876CD05C4098733702A219::get_offset_of_m_StartSizeSet_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
EmitParams_t03557E552852EC6B71876CD05C4098733702A219::get_offset_of_m_StartColorSet_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
EmitParams_t03557E552852EC6B71876CD05C4098733702A219::get_offset_of_m_RandomSeedSet_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
EmitParams_t03557E552852EC6B71876CD05C4098733702A219::get_offset_of_m_StartLifetimeSet_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
EmitParams_t03557E552852EC6B71876CD05C4098733702A219::get_offset_of_m_MeshIndexSet_10() + static_cast<int32_t>(sizeof(RuntimeObject)),
EmitParams_t03557E552852EC6B71876CD05C4098733702A219::get_offset_of_m_ApplyShapeToPosition_11() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2372;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2372 = { sizeof (ParticleSystemCurveMode_tD8A2390BB482B39C0C0714F3DDE715386BC7D48D)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2372[5] =
{
ParticleSystemCurveMode_tD8A2390BB482B39C0C0714F3DDE715386BC7D48D::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2373;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2373 = { sizeof (ParticleSystemStopBehavior_t391374C3CA738F223224E1F294A11CD06D3E1EF0)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2373[3] =
{
ParticleSystemStopBehavior_t391374C3CA738F223224E1F294A11CD06D3E1EF0::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2374;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2374 = { sizeof (ParticleSystemRenderer_t86E4ED2C0ADF5D2E7FA3D636B6B070600D05C459), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2375;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2375 = { sizeof (U3CModuleU3E_t76DD45B11E728799BA16B6E93B81827DD86E5AEE), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2376;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2376 = { sizeof (AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2376[10] =
{
0,
0,
0,
0,
0,
AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5::get_offset_of_m_NormalTrigger_5(),
AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5::get_offset_of_m_HighlightedTrigger_6(),
AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5::get_offset_of_m_PressedTrigger_7(),
AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5::get_offset_of_m_SelectedTrigger_8(),
AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5::get_offset_of_m_DisabledTrigger_9(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2377;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2377 = { sizeof (Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2377[1] =
{
Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B::get_offset_of_m_OnClick_20(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2378;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2378 = { sizeof (ButtonClickedEvent_t975D9C903BC4880557ADD7D3ACFB01CB2B3D6DDB), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2379;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2379 = { sizeof (U3COnFinishSubmitU3Ed__9_t7C528EE5FE9D8ABC7FECC7FA2DAFBABBF165DF54), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2379[5] =
{
U3COnFinishSubmitU3Ed__9_t7C528EE5FE9D8ABC7FECC7FA2DAFBABBF165DF54::get_offset_of_U3CU3E1__state_0(),
U3COnFinishSubmitU3Ed__9_t7C528EE5FE9D8ABC7FECC7FA2DAFBABBF165DF54::get_offset_of_U3CU3E2__current_1(),
U3COnFinishSubmitU3Ed__9_t7C528EE5FE9D8ABC7FECC7FA2DAFBABBF165DF54::get_offset_of_U3CU3E4__this_2(),
U3COnFinishSubmitU3Ed__9_t7C528EE5FE9D8ABC7FECC7FA2DAFBABBF165DF54::get_offset_of_U3CfadeTimeU3E5__2_3(),
U3COnFinishSubmitU3Ed__9_t7C528EE5FE9D8ABC7FECC7FA2DAFBABBF165DF54::get_offset_of_U3CelapsedTimeU3E5__3_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2380;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2380 = { sizeof (CanvasUpdate_t101AC9B078FFAAC6BDA703E7439B320BC19E9AF6)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2380[7] =
{
CanvasUpdate_t101AC9B078FFAAC6BDA703E7439B320BC19E9AF6::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2381;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2381 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2382;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2382 = { sizeof (CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9), -1, sizeof(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2382[6] =
{
CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_StaticFields::get_offset_of_s_Instance_0(),
CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9::get_offset_of_m_PerformingLayoutUpdate_1(),
CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9::get_offset_of_m_PerformingGraphicUpdate_2(),
CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9::get_offset_of_m_LayoutRebuildQueue_3(),
CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9::get_offset_of_m_GraphicRebuildQueue_4(),
CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_StaticFields::get_offset_of_s_SortLayoutFunction_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2383;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2383 = { sizeof (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA)+ sizeof (RuntimeObject), sizeof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2383[7] =
{
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA::get_offset_of_m_NormalColor_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA::get_offset_of_m_HighlightedColor_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA::get_offset_of_m_PressedColor_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA::get_offset_of_m_SelectedColor_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA::get_offset_of_m_DisabledColor_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA::get_offset_of_m_ColorMultiplier_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA::get_offset_of_m_FadeDuration_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2384;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2384 = { sizeof (ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F), -1, sizeof(ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2384[2] =
{
ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F_StaticFields::get_offset_of_s_Instance_0(),
ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F::get_offset_of_m_Clippers_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2385;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2385 = { sizeof (Clipping_t54CCE61957223C3A78768A2185E906846335DE25), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2386;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2386 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2387;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2387 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2388;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2388 = { sizeof (RectangularVertexClipper_t6C47856C4F775A5799A49A100196C2BB14C5DD91), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2388[2] =
{
RectangularVertexClipper_t6C47856C4F775A5799A49A100196C2BB14C5DD91::get_offset_of_m_WorldCorners_0(),
RectangularVertexClipper_t6C47856C4F775A5799A49A100196C2BB14C5DD91::get_offset_of_m_CanvasCorners_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2389;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2389 = { sizeof (DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2), -1, sizeof(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2389[10] =
{
DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields::get_offset_of_m_CurrentFactory_0(),
0,
0,
0,
DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields::get_offset_of_s_ThickElementSize_4(),
DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields::get_offset_of_s_ThinElementSize_5(),
DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields::get_offset_of_s_ImageElementSize_6(),
DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields::get_offset_of_s_DefaultSelectableColor_7(),
DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields::get_offset_of_s_PanelColor_8(),
DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields::get_offset_of_s_TextColor_9(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2390;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2390 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2391;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2391 = { sizeof (DefaultRuntimeFactory_t220869A7714E77F38D078944261214EF14D509F2), -1, sizeof(DefaultRuntimeFactory_t220869A7714E77F38D078944261214EF14D509F2_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2391[1] =
{
DefaultRuntimeFactory_t220869A7714E77F38D078944261214EF14D509F2_StaticFields::get_offset_of_Default_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2392;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2392 = { sizeof (Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2392[7] =
{
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4::get_offset_of_standard_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4::get_offset_of_background_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4::get_offset_of_inputField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4::get_offset_of_knob_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4::get_offset_of_checkmark_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4::get_offset_of_dropdown_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4::get_offset_of_mask_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2393;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2393 = { sizeof (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F), -1, sizeof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2393[15] =
{
Dropdown_tF6331401084B1213CAB10587A6EC81461501930F::get_offset_of_m_Template_20(),
Dropdown_tF6331401084B1213CAB10587A6EC81461501930F::get_offset_of_m_CaptionText_21(),
Dropdown_tF6331401084B1213CAB10587A6EC81461501930F::get_offset_of_m_CaptionImage_22(),
Dropdown_tF6331401084B1213CAB10587A6EC81461501930F::get_offset_of_m_ItemText_23(),
Dropdown_tF6331401084B1213CAB10587A6EC81461501930F::get_offset_of_m_ItemImage_24(),
Dropdown_tF6331401084B1213CAB10587A6EC81461501930F::get_offset_of_m_Value_25(),
Dropdown_tF6331401084B1213CAB10587A6EC81461501930F::get_offset_of_m_Options_26(),
Dropdown_tF6331401084B1213CAB10587A6EC81461501930F::get_offset_of_m_OnValueChanged_27(),
Dropdown_tF6331401084B1213CAB10587A6EC81461501930F::get_offset_of_m_AlphaFadeSpeed_28(),
Dropdown_tF6331401084B1213CAB10587A6EC81461501930F::get_offset_of_m_Dropdown_29(),
Dropdown_tF6331401084B1213CAB10587A6EC81461501930F::get_offset_of_m_Blocker_30(),
Dropdown_tF6331401084B1213CAB10587A6EC81461501930F::get_offset_of_m_Items_31(),
Dropdown_tF6331401084B1213CAB10587A6EC81461501930F::get_offset_of_m_AlphaTweenRunner_32(),
Dropdown_tF6331401084B1213CAB10587A6EC81461501930F::get_offset_of_validTemplate_33(),
Dropdown_tF6331401084B1213CAB10587A6EC81461501930F_StaticFields::get_offset_of_s_NoOptionData_34(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2394;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2394 = { sizeof (DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2394[4] =
{
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46::get_offset_of_m_Text_4(),
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46::get_offset_of_m_Image_5(),
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46::get_offset_of_m_RectTransform_6(),
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46::get_offset_of_m_Toggle_7(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2395;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2395 = { sizeof (OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2395[2] =
{
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831::get_offset_of_m_Text_0(),
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831::get_offset_of_m_Image_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2396;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2396 = { sizeof (OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2396[1] =
{
OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D::get_offset_of_m_Options_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2397;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2397 = { sizeof (DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2398;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2398 = { sizeof (U3CU3Ec__DisplayClass62_0_t1F0325C99F37D0AA9A6FB09CBF04290AEFD21E6A), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2398[2] =
{
U3CU3Ec__DisplayClass62_0_t1F0325C99F37D0AA9A6FB09CBF04290AEFD21E6A::get_offset_of_item_0(),
U3CU3Ec__DisplayClass62_0_t1F0325C99F37D0AA9A6FB09CBF04290AEFD21E6A::get_offset_of_U3CU3E4__this_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2399;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2399 = { sizeof (U3CDelayedDestroyDropdownListU3Ed__74_tE1C8F40CDF9DE52D3A9F431CB712B752DE9F6D69), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2399[4] =
{
U3CDelayedDestroyDropdownListU3Ed__74_tE1C8F40CDF9DE52D3A9F431CB712B752DE9F6D69::get_offset_of_U3CU3E1__state_0(),
U3CDelayedDestroyDropdownListU3Ed__74_tE1C8F40CDF9DE52D3A9F431CB712B752DE9F6D69::get_offset_of_U3CU3E2__current_1(),
U3CDelayedDestroyDropdownListU3Ed__74_tE1C8F40CDF9DE52D3A9F431CB712B752DE9F6D69::get_offset_of_delay_2(),
U3CDelayedDestroyDropdownListU3Ed__74_tE1C8F40CDF9DE52D3A9F431CB712B752DE9F6D69::get_offset_of_U3CU3E4__this_3(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2400;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2400 = { sizeof (FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2400[12] =
{
FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494::get_offset_of_m_Font_0(),
FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494::get_offset_of_m_FontSize_1(),
FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494::get_offset_of_m_FontStyle_2(),
FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494::get_offset_of_m_BestFit_3(),
FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494::get_offset_of_m_MinSize_4(),
FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494::get_offset_of_m_MaxSize_5(),
FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494::get_offset_of_m_Alignment_6(),
FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494::get_offset_of_m_AlignByGeometry_7(),
FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494::get_offset_of_m_RichText_8(),
FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494::get_offset_of_m_HorizontalOverflow_9(),
FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494::get_offset_of_m_VerticalOverflow_10(),
FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494::get_offset_of_m_LineSpacing_11(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2401;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2401 = { sizeof (FontUpdateTracker_t2584C33FA26620846ABD0529AC058833E791D612), -1, sizeof(FontUpdateTracker_t2584C33FA26620846ABD0529AC058833E791D612_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2401[1] =
{
FontUpdateTracker_t2584C33FA26620846ABD0529AC058833E791D612_StaticFields::get_offset_of_m_Tracked_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2402;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2402 = { sizeof (Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8), -1, sizeof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2402[21] =
{
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8_StaticFields::get_offset_of_s_DefaultUI_4(),
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8_StaticFields::get_offset_of_s_WhiteTexture_5(),
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8::get_offset_of_m_Material_6(),
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8::get_offset_of_m_Color_7(),
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8::get_offset_of_m_SkipLayoutUpdate_8(),
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8::get_offset_of_m_SkipMaterialUpdate_9(),
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8::get_offset_of_m_RaycastTarget_10(),
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8::get_offset_of_m_RectTransform_11(),
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8::get_offset_of_m_CanvasRenderer_12(),
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8::get_offset_of_m_Canvas_13(),
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8::get_offset_of_m_VertsDirty_14(),
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8::get_offset_of_m_MaterialDirty_15(),
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8::get_offset_of_m_OnDirtyLayoutCallback_16(),
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8::get_offset_of_m_OnDirtyVertsCallback_17(),
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8::get_offset_of_m_OnDirtyMaterialCallback_18(),
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8_StaticFields::get_offset_of_s_Mesh_19(),
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8_StaticFields::get_offset_of_s_VertexHelper_20(),
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8::get_offset_of_m_CachedMesh_21(),
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8::get_offset_of_m_CachedUvs_22(),
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8::get_offset_of_m_ColorTweenRunner_23(),
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8::get_offset_of_U3CuseLegacyMeshGenerationU3Ek__BackingField_24(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2403;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2403 = { sizeof (GraphicRaycaster_t9AA334998113578A7FC0B27D7D6FEF19E74B9D83), -1, sizeof(GraphicRaycaster_t9AA334998113578A7FC0B27D7D6FEF19E74B9D83_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2403[7] =
{
0,
GraphicRaycaster_t9AA334998113578A7FC0B27D7D6FEF19E74B9D83::get_offset_of_m_IgnoreReversedGraphics_6(),
GraphicRaycaster_t9AA334998113578A7FC0B27D7D6FEF19E74B9D83::get_offset_of_m_BlockingObjects_7(),
GraphicRaycaster_t9AA334998113578A7FC0B27D7D6FEF19E74B9D83::get_offset_of_m_BlockingMask_8(),
GraphicRaycaster_t9AA334998113578A7FC0B27D7D6FEF19E74B9D83::get_offset_of_m_Canvas_9(),
GraphicRaycaster_t9AA334998113578A7FC0B27D7D6FEF19E74B9D83::get_offset_of_m_RaycastResults_10(),
GraphicRaycaster_t9AA334998113578A7FC0B27D7D6FEF19E74B9D83_StaticFields::get_offset_of_s_SortedGraphics_11(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2404;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2404 = { sizeof (BlockingObjects_tFC334A7FDC8003C26A58D8FF24EDD045C49F9E23)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2404[5] =
{
BlockingObjects_tFC334A7FDC8003C26A58D8FF24EDD045C49F9E23::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2405;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2405 = { sizeof (U3CU3Ec_t9EA6FFB8A51BECB82C29C8D6817842AE373849E5), -1, sizeof(U3CU3Ec_t9EA6FFB8A51BECB82C29C8D6817842AE373849E5_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2405[2] =
{
U3CU3Ec_t9EA6FFB8A51BECB82C29C8D6817842AE373849E5_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_t9EA6FFB8A51BECB82C29C8D6817842AE373849E5_StaticFields::get_offset_of_U3CU3E9__24_0_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2406;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2406 = { sizeof (GraphicRegistry_t19E314996D0558CDC3EE57FBA9278A6746C0E02A), -1, sizeof(GraphicRegistry_t19E314996D0558CDC3EE57FBA9278A6746C0E02A_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2406[3] =
{
GraphicRegistry_t19E314996D0558CDC3EE57FBA9278A6746C0E02A_StaticFields::get_offset_of_s_Instance_0(),
GraphicRegistry_t19E314996D0558CDC3EE57FBA9278A6746C0E02A::get_offset_of_m_Graphics_1(),
GraphicRegistry_t19E314996D0558CDC3EE57FBA9278A6746C0E02A_StaticFields::get_offset_of_s_EmptyList_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2407;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2407 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2408;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2408 = { sizeof (Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E), -1, sizeof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2408[21] =
{
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_StaticFields::get_offset_of_s_ETC1DefaultUI_34(),
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E::get_offset_of_m_Sprite_35(),
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E::get_offset_of_m_OverrideSprite_36(),
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E::get_offset_of_m_Type_37(),
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E::get_offset_of_m_PreserveAspect_38(),
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E::get_offset_of_m_FillCenter_39(),
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E::get_offset_of_m_FillMethod_40(),
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E::get_offset_of_m_FillAmount_41(),
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E::get_offset_of_m_FillClockwise_42(),
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E::get_offset_of_m_FillOrigin_43(),
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E::get_offset_of_m_AlphaHitTestMinimumThreshold_44(),
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E::get_offset_of_m_Tracked_45(),
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E::get_offset_of_m_UseSpriteMesh_46(),
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E::get_offset_of_m_PixelsPerUnitMultiplier_47(),
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E::get_offset_of_m_CachedReferencePixelsPerUnit_48(),
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_StaticFields::get_offset_of_s_VertScratch_49(),
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_StaticFields::get_offset_of_s_UVScratch_50(),
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_StaticFields::get_offset_of_s_Xy_51(),
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_StaticFields::get_offset_of_s_Uv_52(),
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_StaticFields::get_offset_of_m_TrackedTexturelessImages_53(),
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_StaticFields::get_offset_of_s_Initialized_54(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2409;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2409 = { sizeof (Type_t96B8A259B84ADA5E7D3B1F13AEAE22175937F38A)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2409[5] =
{
Type_t96B8A259B84ADA5E7D3B1F13AEAE22175937F38A::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2410;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2410 = { sizeof (FillMethod_t0DB7332683118B7C7D2748BE74CFBF19CD19F8C5)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2410[6] =
{
FillMethod_t0DB7332683118B7C7D2748BE74CFBF19CD19F8C5::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2411;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2411 = { sizeof (OriginHorizontal_t042F335793CA8EA2C0D55B2B27820D9674075394)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2411[3] =
{
OriginHorizontal_t042F335793CA8EA2C0D55B2B27820D9674075394::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2412;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2412 = { sizeof (OriginVertical_t921649D0F10E91D5FE9E48725A7C562308798125)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2412[3] =
{
OriginVertical_t921649D0F10E91D5FE9E48725A7C562308798125::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2413;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2413 = { sizeof (Origin90_tA111B7ECE5F050DAC340410DCAF50B7900707DBD)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2413[5] =
{
Origin90_tA111B7ECE5F050DAC340410DCAF50B7900707DBD::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2414;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2414 = { sizeof (Origin180_tCF5E1711B4803DCB48210FFE1B23C253242EFC62)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2414[5] =
{
Origin180_tCF5E1711B4803DCB48210FFE1B23C253242EFC62::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2415;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2415 = { sizeof (Origin360_tF25A2DF8C754C42BEAB24082ED5243E047CB9575)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2415[5] =
{
Origin360_tF25A2DF8C754C42BEAB24082ED5243E047CB9575::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2416;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2416 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2417;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2417 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2418;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2418 = { sizeof (InputField_t533609195B110760BCFF00B746C87D81969CB005), -1, sizeof(InputField_t533609195B110760BCFF00B746C87D81969CB005_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2418[50] =
{
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_Keyboard_20(),
InputField_t533609195B110760BCFF00B746C87D81969CB005_StaticFields::get_offset_of_kSeparators_21(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_TextComponent_22(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_Placeholder_23(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_ContentType_24(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_InputType_25(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_AsteriskChar_26(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_KeyboardType_27(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_LineType_28(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_HideMobileInput_29(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_CharacterValidation_30(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_CharacterLimit_31(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_OnEndEdit_32(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_OnValueChanged_33(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_OnValidateInput_34(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_CaretColor_35(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_CustomCaretColor_36(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_SelectionColor_37(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_Text_38(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_CaretBlinkRate_39(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_CaretWidth_40(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_ReadOnly_41(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_CaretPosition_42(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_CaretSelectPosition_43(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_caretRectTrans_44(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_CursorVerts_45(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_InputTextCache_46(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_CachedInputRenderer_47(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_PreventFontCallback_48(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_Mesh_49(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_AllowInput_50(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_ShouldActivateNextUpdate_51(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_UpdateDrag_52(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_DragPositionOutOfBounds_53(),
0,
0,
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_CaretVisible_56(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_BlinkCoroutine_57(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_BlinkStartTime_58(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_DrawStart_59(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_DrawEnd_60(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_DragCoroutine_61(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_OriginalText_62(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_WasCanceled_63(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_HasDoneFocusTransition_64(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_WaitForSecondsRealtime_65(),
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_TouchKeyboardAllowsInPlaceEditing_66(),
0,
InputField_t533609195B110760BCFF00B746C87D81969CB005::get_offset_of_m_ProcessingEvent_68(),
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2419;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2419 = { sizeof (ContentType_t8F7DB5382A51BC2D99814DEB6BCD904D5E5B2048)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2419[11] =
{
ContentType_t8F7DB5382A51BC2D99814DEB6BCD904D5E5B2048::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2420;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2420 = { sizeof (InputType_t1726189312457C509B0693B5ACDB9DA7387EB54A)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2420[4] =
{
InputType_t1726189312457C509B0693B5ACDB9DA7387EB54A::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2421;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2421 = { sizeof (CharacterValidation_t2661E1767E01D63D4C8CE8F95C53C617118F206E)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2421[7] =
{
CharacterValidation_t2661E1767E01D63D4C8CE8F95C53C617118F206E::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2422;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2422 = { sizeof (LineType_t9C34D02DDDA75D3E914ADD9E417258B40D56DED6)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2422[4] =
{
LineType_t9C34D02DDDA75D3E914ADD9E417258B40D56DED6::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2423;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2423 = { sizeof (OnValidateInput_t3E857B491A319A5B22F6AD3D02CFD22C1BBFD8D0), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2424;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2424 = { sizeof (SubmitEvent_tE1EC12ACD7DE7D57B9ECBBACA05493E226E53E4A), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2425;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2425 = { sizeof (OnChangeEvent_t6C3C7DD6AEA262BB97AD53B0E669EC7EC19BCC1A), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2426;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2426 = { sizeof (EditState_tCBDEBEE5EE39A49CCEDC05CA512DB0C35C23E629)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2426[3] =
{
EditState_tCBDEBEE5EE39A49CCEDC05CA512DB0C35C23E629::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2427;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2427 = { sizeof (U3CCaretBlinkU3Ed__159_t36133DA91EEA742617E101110D7206F0EDCEF467), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2427[3] =
{
U3CCaretBlinkU3Ed__159_t36133DA91EEA742617E101110D7206F0EDCEF467::get_offset_of_U3CU3E1__state_0(),
U3CCaretBlinkU3Ed__159_t36133DA91EEA742617E101110D7206F0EDCEF467::get_offset_of_U3CU3E2__current_1(),
U3CCaretBlinkU3Ed__159_t36133DA91EEA742617E101110D7206F0EDCEF467::get_offset_of_U3CU3E4__this_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2428;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2428 = { sizeof (U3CMouseDragOutsideRectU3Ed__179_tA57998CEE46A16212E0ECC60BADCD29931B06712), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2428[4] =
{
U3CMouseDragOutsideRectU3Ed__179_tA57998CEE46A16212E0ECC60BADCD29931B06712::get_offset_of_U3CU3E1__state_0(),
U3CMouseDragOutsideRectU3Ed__179_tA57998CEE46A16212E0ECC60BADCD29931B06712::get_offset_of_U3CU3E2__current_1(),
U3CMouseDragOutsideRectU3Ed__179_tA57998CEE46A16212E0ECC60BADCD29931B06712::get_offset_of_eventData_2(),
U3CMouseDragOutsideRectU3Ed__179_tA57998CEE46A16212E0ECC60BADCD29931B06712::get_offset_of_U3CU3E4__this_3(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2429;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2429 = { sizeof (AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2429[5] =
{
AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6::get_offset_of_m_AspectMode_4(),
AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6::get_offset_of_m_AspectRatio_5(),
AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6::get_offset_of_m_Rect_6(),
AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6::get_offset_of_m_DelayedSetDirty_7(),
AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6::get_offset_of_m_Tracker_8(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2430;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2430 = { sizeof (AspectMode_t2D8C205891B8E63CA16B6AC3BA1D41320903C65A)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2430[6] =
{
AspectMode_t2D8C205891B8E63CA16B6AC3BA1D41320903C65A::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2431;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2431 = { sizeof (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2431[14] =
{
CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564::get_offset_of_m_UiScaleMode_4(),
CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564::get_offset_of_m_ReferencePixelsPerUnit_5(),
CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564::get_offset_of_m_ScaleFactor_6(),
CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564::get_offset_of_m_ReferenceResolution_7(),
CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564::get_offset_of_m_ScreenMatchMode_8(),
CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564::get_offset_of_m_MatchWidthOrHeight_9(),
0,
CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564::get_offset_of_m_PhysicalUnit_11(),
CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564::get_offset_of_m_FallbackScreenDPI_12(),
CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564::get_offset_of_m_DefaultSpriteDPI_13(),
CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564::get_offset_of_m_DynamicPixelsPerUnit_14(),
CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564::get_offset_of_m_Canvas_15(),
CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564::get_offset_of_m_PrevScaleFactor_16(),
CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564::get_offset_of_m_PrevReferencePixelsPerUnit_17(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2432;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2432 = { sizeof (ScaleMode_t38950B182EA5E1C8589AB5E02F36FEABB8A5CAA6)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2432[4] =
{
ScaleMode_t38950B182EA5E1C8589AB5E02F36FEABB8A5CAA6::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2433;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2433 = { sizeof (ScreenMatchMode_t61C3A62F8F54F705D47C2C37B06DC8083238C133)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2433[4] =
{
ScreenMatchMode_t61C3A62F8F54F705D47C2C37B06DC8083238C133::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2434;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2434 = { sizeof (Unit_tD24A4DB24016D1A6B46579640E170359F76F8313)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2434[6] =
{
Unit_tD24A4DB24016D1A6B46579640E170359F76F8313::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2435;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2435 = { sizeof (ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2435[4] =
{
ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8::get_offset_of_m_HorizontalFit_4(),
ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8::get_offset_of_m_VerticalFit_5(),
ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8::get_offset_of_m_Rect_6(),
ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8::get_offset_of_m_Tracker_7(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2436;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2436 = { sizeof (FitMode_tBF783E77415F7063B468C18E758F738D83D60A08)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2436[4] =
{
FitMode_tBF783E77415F7063B468C18E758F738D83D60A08::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2437;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2437 = { sizeof (GridLayoutGroup_t1C70294BD2567FD584672222A8BFD5A0DF1CA2A8), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2437[6] =
{
GridLayoutGroup_t1C70294BD2567FD584672222A8BFD5A0DF1CA2A8::get_offset_of_m_StartCorner_12(),
GridLayoutGroup_t1C70294BD2567FD584672222A8BFD5A0DF1CA2A8::get_offset_of_m_StartAxis_13(),
GridLayoutGroup_t1C70294BD2567FD584672222A8BFD5A0DF1CA2A8::get_offset_of_m_CellSize_14(),
GridLayoutGroup_t1C70294BD2567FD584672222A8BFD5A0DF1CA2A8::get_offset_of_m_Spacing_15(),
GridLayoutGroup_t1C70294BD2567FD584672222A8BFD5A0DF1CA2A8::get_offset_of_m_Constraint_16(),
GridLayoutGroup_t1C70294BD2567FD584672222A8BFD5A0DF1CA2A8::get_offset_of_m_ConstraintCount_17(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2438;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2438 = { sizeof (Corner_tD61F36EC56D401A65DA06BE1A21689319201D18E)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2438[5] =
{
Corner_tD61F36EC56D401A65DA06BE1A21689319201D18E::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2439;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2439 = { sizeof (Axis_tD4645F3B274E7AE7793C038A2BA2E68C6F0F02F0)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2439[3] =
{
Axis_tD4645F3B274E7AE7793C038A2BA2E68C6F0F02F0::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2440;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2440 = { sizeof (Constraint_tF471E55525B89D1E7C938CC0AF7515709494C59D)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2440[4] =
{
Constraint_tF471E55525B89D1E7C938CC0AF7515709494C59D::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2441;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2441 = { sizeof (HorizontalLayoutGroup_tEFAFA0DDCCE4FC89CC2C0BE96E7C025D243CFE37), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2442;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2442 = { sizeof (HorizontalOrVerticalLayoutGroup_tFE5C3DB19C2CC4906B3E5D5F4E1966CB585174AB), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2442[7] =
{
HorizontalOrVerticalLayoutGroup_tFE5C3DB19C2CC4906B3E5D5F4E1966CB585174AB::get_offset_of_m_Spacing_12(),
HorizontalOrVerticalLayoutGroup_tFE5C3DB19C2CC4906B3E5D5F4E1966CB585174AB::get_offset_of_m_ChildForceExpandWidth_13(),
HorizontalOrVerticalLayoutGroup_tFE5C3DB19C2CC4906B3E5D5F4E1966CB585174AB::get_offset_of_m_ChildForceExpandHeight_14(),
HorizontalOrVerticalLayoutGroup_tFE5C3DB19C2CC4906B3E5D5F4E1966CB585174AB::get_offset_of_m_ChildControlWidth_15(),
HorizontalOrVerticalLayoutGroup_tFE5C3DB19C2CC4906B3E5D5F4E1966CB585174AB::get_offset_of_m_ChildControlHeight_16(),
HorizontalOrVerticalLayoutGroup_tFE5C3DB19C2CC4906B3E5D5F4E1966CB585174AB::get_offset_of_m_ChildScaleWidth_17(),
HorizontalOrVerticalLayoutGroup_tFE5C3DB19C2CC4906B3E5D5F4E1966CB585174AB::get_offset_of_m_ChildScaleHeight_18(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2443;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2443 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2444;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2444 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2445;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2445 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2446;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2446 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2447;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2447 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2448;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2448 = { sizeof (LayoutElement_tD503826DB41B6EA85AC689292F8B2661B3C1048B), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2448[8] =
{
LayoutElement_tD503826DB41B6EA85AC689292F8B2661B3C1048B::get_offset_of_m_IgnoreLayout_4(),
LayoutElement_tD503826DB41B6EA85AC689292F8B2661B3C1048B::get_offset_of_m_MinWidth_5(),
LayoutElement_tD503826DB41B6EA85AC689292F8B2661B3C1048B::get_offset_of_m_MinHeight_6(),
LayoutElement_tD503826DB41B6EA85AC689292F8B2661B3C1048B::get_offset_of_m_PreferredWidth_7(),
LayoutElement_tD503826DB41B6EA85AC689292F8B2661B3C1048B::get_offset_of_m_PreferredHeight_8(),
LayoutElement_tD503826DB41B6EA85AC689292F8B2661B3C1048B::get_offset_of_m_FlexibleWidth_9(),
LayoutElement_tD503826DB41B6EA85AC689292F8B2661B3C1048B::get_offset_of_m_FlexibleHeight_10(),
LayoutElement_tD503826DB41B6EA85AC689292F8B2661B3C1048B::get_offset_of_m_LayoutPriority_11(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2449;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2449 = { sizeof (LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2449[8] =
{
LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4::get_offset_of_m_Padding_4(),
LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4::get_offset_of_m_ChildAlignment_5(),
LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4::get_offset_of_m_Rect_6(),
LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4::get_offset_of_m_Tracker_7(),
LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4::get_offset_of_m_TotalMinSize_8(),
LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4::get_offset_of_m_TotalPreferredSize_9(),
LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4::get_offset_of_m_TotalFlexibleSize_10(),
LayoutGroup_t9E072B95DA6476C487C0B07A815291249025C0E4::get_offset_of_m_RectChildren_11(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2450;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2450 = { sizeof (U3CDelayedSetDirtyU3Ed__56_tD8253C23DF3FBC7349A3E8FEAE713AA0AA18232B), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2450[3] =
{
U3CDelayedSetDirtyU3Ed__56_tD8253C23DF3FBC7349A3E8FEAE713AA0AA18232B::get_offset_of_U3CU3E1__state_0(),
U3CDelayedSetDirtyU3Ed__56_tD8253C23DF3FBC7349A3E8FEAE713AA0AA18232B::get_offset_of_U3CU3E2__current_1(),
U3CDelayedSetDirtyU3Ed__56_tD8253C23DF3FBC7349A3E8FEAE713AA0AA18232B::get_offset_of_rectTransform_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2451;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2451 = { sizeof (LayoutRebuilder_t8D3501B43B1DE666140E2931FFA732B5B09EA5BD), -1, sizeof(LayoutRebuilder_t8D3501B43B1DE666140E2931FFA732B5B09EA5BD_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2451[3] =
{
LayoutRebuilder_t8D3501B43B1DE666140E2931FFA732B5B09EA5BD::get_offset_of_m_ToRebuild_0(),
LayoutRebuilder_t8D3501B43B1DE666140E2931FFA732B5B09EA5BD::get_offset_of_m_CachedHashFromTransform_1(),
LayoutRebuilder_t8D3501B43B1DE666140E2931FFA732B5B09EA5BD_StaticFields::get_offset_of_s_Rebuilders_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2452;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2452 = { sizeof (U3CU3Ec_tD38D06365CEFC6925DAE86387A916ABBFE8D9467), -1, sizeof(U3CU3Ec_tD38D06365CEFC6925DAE86387A916ABBFE8D9467_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2452[6] =
{
U3CU3Ec_tD38D06365CEFC6925DAE86387A916ABBFE8D9467_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_tD38D06365CEFC6925DAE86387A916ABBFE8D9467_StaticFields::get_offset_of_U3CU3E9__10_0_1(),
U3CU3Ec_tD38D06365CEFC6925DAE86387A916ABBFE8D9467_StaticFields::get_offset_of_U3CU3E9__12_0_2(),
U3CU3Ec_tD38D06365CEFC6925DAE86387A916ABBFE8D9467_StaticFields::get_offset_of_U3CU3E9__12_1_3(),
U3CU3Ec_tD38D06365CEFC6925DAE86387A916ABBFE8D9467_StaticFields::get_offset_of_U3CU3E9__12_2_4(),
U3CU3Ec_tD38D06365CEFC6925DAE86387A916ABBFE8D9467_StaticFields::get_offset_of_U3CU3E9__12_3_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2453;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2453 = { sizeof (LayoutUtility_t3B5074E34900DA384884FC50809EA395CB69E7D5), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2454;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2454 = { sizeof (U3CU3Ec_tDC8A34C65EFB98EEB31B97954FEEF954AD102DDD), -1, sizeof(U3CU3Ec_tDC8A34C65EFB98EEB31B97954FEEF954AD102DDD_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2454[9] =
{
U3CU3Ec_tDC8A34C65EFB98EEB31B97954FEEF954AD102DDD_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_tDC8A34C65EFB98EEB31B97954FEEF954AD102DDD_StaticFields::get_offset_of_U3CU3E9__3_0_1(),
U3CU3Ec_tDC8A34C65EFB98EEB31B97954FEEF954AD102DDD_StaticFields::get_offset_of_U3CU3E9__4_0_2(),
U3CU3Ec_tDC8A34C65EFB98EEB31B97954FEEF954AD102DDD_StaticFields::get_offset_of_U3CU3E9__4_1_3(),
U3CU3Ec_tDC8A34C65EFB98EEB31B97954FEEF954AD102DDD_StaticFields::get_offset_of_U3CU3E9__5_0_4(),
U3CU3Ec_tDC8A34C65EFB98EEB31B97954FEEF954AD102DDD_StaticFields::get_offset_of_U3CU3E9__6_0_5(),
U3CU3Ec_tDC8A34C65EFB98EEB31B97954FEEF954AD102DDD_StaticFields::get_offset_of_U3CU3E9__7_0_6(),
U3CU3Ec_tDC8A34C65EFB98EEB31B97954FEEF954AD102DDD_StaticFields::get_offset_of_U3CU3E9__7_1_7(),
U3CU3Ec_tDC8A34C65EFB98EEB31B97954FEEF954AD102DDD_StaticFields::get_offset_of_U3CU3E9__8_0_8(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2455;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2455 = { sizeof (VerticalLayoutGroup_tAAEE0BAA82E9A110591DEC9A3FFC25A01C2FFA11), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2456;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2456 = { sizeof (Mask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2456[5] =
{
Mask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB::get_offset_of_m_RectTransform_4(),
Mask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB::get_offset_of_m_ShowMaskGraphic_5(),
Mask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB::get_offset_of_m_Graphic_6(),
Mask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB::get_offset_of_m_MaskMaterial_7(),
Mask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB::get_offset_of_m_UnmaskMaterial_8(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2457;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2457 = { sizeof (MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2457[9] =
{
MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F::get_offset_of_m_ShouldRecalculateStencil_25(),
MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F::get_offset_of_m_MaskMaterial_26(),
MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F::get_offset_of_m_ParentMask_27(),
MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F::get_offset_of_m_Maskable_28(),
MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F::get_offset_of_m_IncludeForMasking_29(),
MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F::get_offset_of_m_OnCullStateChanged_30(),
MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F::get_offset_of_m_ShouldRecalculate_31(),
MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F::get_offset_of_m_StencilValue_32(),
MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F::get_offset_of_m_Corners_33(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2458;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2458 = { sizeof (CullStateChangedEvent_t6BC3E87DBC04B585798460D55F56B86C23B62FE4), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2459;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2459 = { sizeof (MaskUtilities_t28395C0AF1B83B3A798D76DC69B012BB303D9683), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2460;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2460 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2461;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2461 = { sizeof (Misc_t87057804A6479127307E42B6C83A4F3244521315), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2462;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2462 = { sizeof (MultipleDisplayUtilities_t0C0C3B406CC78C2E7A290C62E132CC1BDC3BD31A), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2463;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2463 = { sizeof (Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2463[5] =
{
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07::get_offset_of_m_Mode_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07::get_offset_of_m_SelectOnUp_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07::get_offset_of_m_SelectOnDown_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07::get_offset_of_m_SelectOnLeft_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07::get_offset_of_m_SelectOnRight_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2464;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2464 = { sizeof (Mode_t93F92BD50B147AE38D82BA33FA77FD247A59FE26)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2464[6] =
{
Mode_t93F92BD50B147AE38D82BA33FA77FD247A59FE26::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2465;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2465 = { sizeof (RawImage_t68991514DB8F48442D614E7904A298C936B3C7C8), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2465[2] =
{
RawImage_t68991514DB8F48442D614E7904A298C936B3C7C8::get_offset_of_m_Texture_34(),
RawImage_t68991514DB8F48442D614E7904A298C936B3C7C8::get_offset_of_m_UVRect_35(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2466;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2466 = { sizeof (RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2466[10] =
{
RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B::get_offset_of_m_VertexClipper_4(),
RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B::get_offset_of_m_RectTransform_5(),
RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B::get_offset_of_m_MaskableTargets_6(),
RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B::get_offset_of_m_ClipTargets_7(),
RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B::get_offset_of_m_ShouldRecalculateClipRects_8(),
RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B::get_offset_of_m_Clippers_9(),
RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B::get_offset_of_m_LastClipRectCanvasSpace_10(),
RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B::get_offset_of_m_ForceClip_11(),
RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B::get_offset_of_m_Canvas_12(),
RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B::get_offset_of_m_Corners_13(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2467;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2467 = { sizeof (Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2467[12] =
{
Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389::get_offset_of_m_HandleRect_20(),
Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389::get_offset_of_m_Direction_21(),
Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389::get_offset_of_m_Value_22(),
Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389::get_offset_of_m_Size_23(),
Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389::get_offset_of_m_NumberOfSteps_24(),
Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389::get_offset_of_m_OnValueChanged_25(),
Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389::get_offset_of_m_ContainerRect_26(),
Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389::get_offset_of_m_Offset_27(),
Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389::get_offset_of_m_Tracker_28(),
Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389::get_offset_of_m_PointerDownRepeat_29(),
Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389::get_offset_of_isPointerDownAndNotDragging_30(),
Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389::get_offset_of_m_DelayedUpdateVisuals_31(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2468;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2468 = { sizeof (Direction_t7DC57FCC1DB6C12E88B2227EEEE2FCEF3F1483FF)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2468[5] =
{
Direction_t7DC57FCC1DB6C12E88B2227EEEE2FCEF3F1483FF::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2469;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2469 = { sizeof (ScrollEvent_t07B0FA266C69E36437A0083D5058B2952D151FF7), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2470;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2470 = { sizeof (Axis_t5CC6D92E75113BD2F2816AFC44EF728126921DF7)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2470[3] =
{
Axis_t5CC6D92E75113BD2F2816AFC44EF728126921DF7::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2471;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2471 = { sizeof (U3CClickRepeatU3Ed__57_t8AEFCC130793890A19566D24B454C47B2705B074), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2471[4] =
{
U3CClickRepeatU3Ed__57_t8AEFCC130793890A19566D24B454C47B2705B074::get_offset_of_U3CU3E1__state_0(),
U3CClickRepeatU3Ed__57_t8AEFCC130793890A19566D24B454C47B2705B074::get_offset_of_U3CU3E2__current_1(),
U3CClickRepeatU3Ed__57_t8AEFCC130793890A19566D24B454C47B2705B074::get_offset_of_U3CU3E4__this_2(),
U3CClickRepeatU3Ed__57_t8AEFCC130793890A19566D24B454C47B2705B074::get_offset_of_eventData_3(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2472;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2472 = { sizeof (ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2472[37] =
{
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_Content_4(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_Horizontal_5(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_Vertical_6(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_MovementType_7(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_Elasticity_8(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_Inertia_9(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_DecelerationRate_10(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_ScrollSensitivity_11(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_Viewport_12(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_HorizontalScrollbar_13(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_VerticalScrollbar_14(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_HorizontalScrollbarVisibility_15(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_VerticalScrollbarVisibility_16(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_HorizontalScrollbarSpacing_17(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_VerticalScrollbarSpacing_18(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_OnValueChanged_19(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_PointerStartLocalCursor_20(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_ContentStartPosition_21(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_ViewRect_22(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_ContentBounds_23(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_ViewBounds_24(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_Velocity_25(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_Dragging_26(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_Scrolling_27(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_PrevPosition_28(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_PrevContentBounds_29(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_PrevViewBounds_30(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_HasRebuiltLayout_31(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_HSliderExpand_32(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_VSliderExpand_33(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_HSliderHeight_34(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_VSliderWidth_35(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_Rect_36(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_HorizontalScrollbarRect_37(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_VerticalScrollbarRect_38(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_Tracker_39(),
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51::get_offset_of_m_Corners_40(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2473;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2473 = { sizeof (MovementType_t78F2436465C40CA3C70631E1E5F088EA7A15C97A)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2473[4] =
{
MovementType_t78F2436465C40CA3C70631E1E5F088EA7A15C97A::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2474;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2474 = { sizeof (ScrollbarVisibility_t4D6A5D8EF1681A91CED9F04283D0C882DCE1531F)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2474[4] =
{
ScrollbarVisibility_t4D6A5D8EF1681A91CED9F04283D0C882DCE1531F::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2475;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2475 = { sizeof (ScrollRectEvent_t8995F69D65BA823FB862144B12E6D3504236FEEB), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2476;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2476 = { sizeof (Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A), -1, sizeof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2476[16] =
{
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A_StaticFields::get_offset_of_s_Selectables_4(),
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A_StaticFields::get_offset_of_s_SelectableCount_5(),
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A_StaticFields::get_offset_of_s_IsDirty_6(),
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A::get_offset_of_m_Navigation_7(),
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A::get_offset_of_m_Transition_8(),
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A::get_offset_of_m_Colors_9(),
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A::get_offset_of_m_SpriteState_10(),
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A::get_offset_of_m_AnimationTriggers_11(),
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A::get_offset_of_m_Interactable_12(),
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A::get_offset_of_m_TargetGraphic_13(),
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A::get_offset_of_m_GroupsAllowInteraction_14(),
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A::get_offset_of_m_WillRemove_15(),
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A::get_offset_of_U3CisPointerInsideU3Ek__BackingField_16(),
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A::get_offset_of_U3CisPointerDownU3Ek__BackingField_17(),
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A::get_offset_of_U3ChasSelectionU3Ek__BackingField_18(),
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A::get_offset_of_m_CanvasGroupCache_19(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2477;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2477 = { sizeof (Transition_tA9261C608B54C52324084A0B080E7A3E0548A181)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2477[5] =
{
Transition_tA9261C608B54C52324084A0B080E7A3E0548A181::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2478;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2478 = { sizeof (SelectionState_tF089B96B46A592693753CBF23C52A3887632D210)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2478[6] =
{
SelectionState_tF089B96B46A592693753CBF23C52A3887632D210::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2479;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2479 = { sizeof (SetPropertyUtility_t20B3FC057E91FD49F7F71279C2DFAAD263E32DEC), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2480;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2480 = { sizeof (Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2480[16] =
{
Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09::get_offset_of_m_FillRect_20(),
Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09::get_offset_of_m_HandleRect_21(),
Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09::get_offset_of_m_Direction_22(),
Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09::get_offset_of_m_MinValue_23(),
Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09::get_offset_of_m_MaxValue_24(),
Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09::get_offset_of_m_WholeNumbers_25(),
Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09::get_offset_of_m_Value_26(),
Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09::get_offset_of_m_OnValueChanged_27(),
Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09::get_offset_of_m_FillImage_28(),
Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09::get_offset_of_m_FillTransform_29(),
Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09::get_offset_of_m_FillContainerRect_30(),
Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09::get_offset_of_m_HandleTransform_31(),
Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09::get_offset_of_m_HandleContainerRect_32(),
Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09::get_offset_of_m_Offset_33(),
Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09::get_offset_of_m_Tracker_34(),
Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09::get_offset_of_m_DelayedUpdateVisuals_35(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2481;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2481 = { sizeof (Direction_tAAEBCB52D43F1B8F5DBB1A6F1025F9D02852B67E)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2481[5] =
{
Direction_tAAEBCB52D43F1B8F5DBB1A6F1025F9D02852B67E::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2482;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2482 = { sizeof (SliderEvent_t64A824F56F80FC8E2F233F0A0FB0821702DF416C), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2483;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2483 = { sizeof (Axis_t5D4CE8029AAE120D6F7C8AC3FE1B1F46B2623830)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2483[3] =
{
Axis_t5D4CE8029AAE120D6F7C8AC3FE1B1F46B2623830::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2484;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2484 = { sizeof (SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2484[4] =
{
SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A::get_offset_of_m_HighlightedSprite_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A::get_offset_of_m_PressedSprite_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A::get_offset_of_m_SelectedSprite_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A::get_offset_of_m_DisabledSprite_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2485;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2485 = { sizeof (StencilMaterial_t1DC5D1CDE53AF67E74925AC2F4083FD29810D974), -1, sizeof(StencilMaterial_t1DC5D1CDE53AF67E74925AC2F4083FD29810D974_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2485[1] =
{
StencilMaterial_t1DC5D1CDE53AF67E74925AC2F4083FD29810D974_StaticFields::get_offset_of_m_List_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2486;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2486 = { sizeof (MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2486[10] =
{
MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701::get_offset_of_baseMat_0(),
MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701::get_offset_of_customMat_1(),
MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701::get_offset_of_count_2(),
MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701::get_offset_of_stencilId_3(),
MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701::get_offset_of_operation_4(),
MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701::get_offset_of_compareFunction_5(),
MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701::get_offset_of_readMask_6(),
MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701::get_offset_of_writeMask_7(),
MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701::get_offset_of_useAlphaClip_8(),
MatEntry_t6D4406239BE26E2ED3F441944F6A047913DB6701::get_offset_of_colorMask_9(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2487;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2487 = { sizeof (Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030), -1, sizeof(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2487[7] =
{
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030::get_offset_of_m_FontData_34(),
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030::get_offset_of_m_Text_35(),
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030::get_offset_of_m_TextCache_36(),
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030::get_offset_of_m_TextCacheForLayout_37(),
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_StaticFields::get_offset_of_s_DefaultText_38(),
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030::get_offset_of_m_DisableFontTextureRebuiltCallback_39(),
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030::get_offset_of_m_TempVerts_40(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2488;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2488 = { sizeof (Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2488[5] =
{
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106::get_offset_of_toggleTransition_20(),
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106::get_offset_of_graphic_21(),
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106::get_offset_of_m_Group_22(),
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106::get_offset_of_onValueChanged_23(),
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106::get_offset_of_m_IsOn_24(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2489;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2489 = { sizeof (ToggleTransition_t45980EB1352FF47B2D8D8EBC90385AB68939046D)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2489[3] =
{
ToggleTransition_t45980EB1352FF47B2D8D8EBC90385AB68939046D::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2490;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2490 = { sizeof (ToggleEvent_t50D925F8E220FB47DA738411CEF9C57FF7E1DC43), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2491;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2491 = { sizeof (ToggleGroup_t11E2B254D3C968C7D0DA11C606CC06D7D7F0D786), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2491[2] =
{
ToggleGroup_t11E2B254D3C968C7D0DA11C606CC06D7D7F0D786::get_offset_of_m_AllowSwitchOff_4(),
ToggleGroup_t11E2B254D3C968C7D0DA11C606CC06D7D7F0D786::get_offset_of_m_Toggles_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2492;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2492 = { sizeof (U3CU3Ec_t97EB3105DF6005EBB830B751CB253A590768A27E), -1, sizeof(U3CU3Ec_t97EB3105DF6005EBB830B751CB253A590768A27E_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2492[3] =
{
U3CU3Ec_t97EB3105DF6005EBB830B751CB253A590768A27E_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_t97EB3105DF6005EBB830B751CB253A590768A27E_StaticFields::get_offset_of_U3CU3E9__12_0_1(),
U3CU3Ec_t97EB3105DF6005EBB830B751CB253A590768A27E_StaticFields::get_offset_of_U3CU3E9__13_0_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2493;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2493 = { 0, 0, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2493[1] =
{
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2494;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2494 = { 0, 0, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2494[4] =
{
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2495;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2495 = { sizeof (ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A), -1, sizeof(ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2495[7] =
{
ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A::get_offset_of_raycast3D_0(),
ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A::get_offset_of_raycast3DAll_1(),
ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A::get_offset_of_raycast2D_2(),
ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A::get_offset_of_getRayIntersectionAll_3(),
ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A::get_offset_of_getRayIntersectionAllNonAlloc_4(),
ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A::get_offset_of_getRaycastNonAlloc_5(),
ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A_StaticFields::get_offset_of_s_ReflectionMethodsCache_6(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2496;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2496 = { sizeof (Raycast3DCallback_t83483916473C9710AEDB316A65CBE62C58935C5F), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2497;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2497 = { sizeof (Raycast2DCallback_tE99ABF9ABC3A380677949E8C05A3E477889B82BE), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2498;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2498 = { sizeof (RaycastAllCallback_t751407A44270E02FAA43D0846A58EE6A8C4AE1CE), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2499;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2499 = { sizeof (GetRayIntersectionAllCallback_t68C2581CCF05E868297EBD3F3361274954845095), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2500;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2500 = { sizeof (GetRayIntersectionAllNonAllocCallback_tAD7508D45DB6679B6394983579AD18D967CC2AD4), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2501;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2501 = { sizeof (GetRaycastNonAllocCallback_tC13D9767CFF00EAB26E9FCC4BDD505F0721A2B4D), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2502;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2502 = { sizeof (VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F), -1, sizeof(VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2502[12] =
{
VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F::get_offset_of_m_Positions_0(),
VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F::get_offset_of_m_Colors_1(),
VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F::get_offset_of_m_Uv0S_2(),
VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F::get_offset_of_m_Uv1S_3(),
VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F::get_offset_of_m_Uv2S_4(),
VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F::get_offset_of_m_Uv3S_5(),
VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F::get_offset_of_m_Normals_6(),
VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F::get_offset_of_m_Tangents_7(),
VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F::get_offset_of_m_Indices_8(),
VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F_StaticFields::get_offset_of_s_DefaultTangent_9(),
VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F_StaticFields::get_offset_of_s_DefaultNormal_10(),
VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F::get_offset_of_m_ListsInitalized_11(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2503;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2503 = { sizeof (BaseVertexEffect_t1EF95AB1FC33A027710E7DC86D19F700156C4F6A), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2504;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2504 = { sizeof (BaseMeshEffect_t72759F31F9D204D7EFB6B45097873809D4524BA5), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2504[1] =
{
BaseMeshEffect_t72759F31F9D204D7EFB6B45097873809D4524BA5::get_offset_of_m_Graphic_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2505;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2505 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2506;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2506 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2507;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2507 = { sizeof (Outline_tB750E496976B072E79142D51C0A991AC20183095), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2508;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2508 = { sizeof (PositionAsUV1_t26F06E879E7B8DD2F93B8B3643053534D82F684A), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2509;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2509 = { sizeof (Shadow_tA03D2493843CDF8E64569F985AEB3FEEEEB412E1), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2509[4] =
{
Shadow_tA03D2493843CDF8E64569F985AEB3FEEEEB412E1::get_offset_of_m_EffectColor_5(),
Shadow_tA03D2493843CDF8E64569F985AEB3FEEEEB412E1::get_offset_of_m_EffectDistance_6(),
Shadow_tA03D2493843CDF8E64569F985AEB3FEEEEB412E1::get_offset_of_m_UseGraphicAlpha_7(),
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2510;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2510 = { 0, 0, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2510[2] =
{
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2511;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2511 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2512;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2512 = { sizeof (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2512[6] =
{
ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228::get_offset_of_m_Target_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228::get_offset_of_m_StartColor_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228::get_offset_of_m_TargetColor_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228::get_offset_of_m_TweenMode_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228::get_offset_of_m_Duration_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228::get_offset_of_m_IgnoreTimeScale_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2513;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2513 = { sizeof (ColorTweenMode_tDCE018D37330F576ACCD00D16CAF91AE55315F2F)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2513[4] =
{
ColorTweenMode_tDCE018D37330F576ACCD00D16CAF91AE55315F2F::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2514;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2514 = { sizeof (ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2515;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2515 = { sizeof (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2515[5] =
{
FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A::get_offset_of_m_Target_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A::get_offset_of_m_StartValue_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A::get_offset_of_m_TargetValue_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A::get_offset_of_m_Duration_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A::get_offset_of_m_IgnoreTimeScale_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2516;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2516 = { sizeof (FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2517;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2517 = { 0, 0, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2517[2] =
{
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2518;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2518 = { 0, 0, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2518[4] =
{
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2519;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2519 = { sizeof (AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2519[2] =
{
AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442::get_offset_of_U3CmoveVectorU3Ek__BackingField_2(),
AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442::get_offset_of_U3CmoveDirU3Ek__BackingField_3(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2520;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2520 = { sizeof (AbstractEventData_t636F385820C291DAE25897BCEB4FBCADDA3B75F6), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2520[1] =
{
AbstractEventData_t636F385820C291DAE25897BCEB4FBCADDA3B75F6::get_offset_of_m_Used_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2521;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2521 = { sizeof (BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2521[1] =
{
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5::get_offset_of_m_EventSystem_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2522;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2522 = { sizeof (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2522[21] =
{
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63::get_offset_of_U3CpointerEnterU3Ek__BackingField_2(),
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63::get_offset_of_m_PointerPress_3(),
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63::get_offset_of_U3ClastPressU3Ek__BackingField_4(),
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63::get_offset_of_U3CrawPointerPressU3Ek__BackingField_5(),
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63::get_offset_of_U3CpointerDragU3Ek__BackingField_6(),
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63::get_offset_of_U3CpointerCurrentRaycastU3Ek__BackingField_7(),
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63::get_offset_of_U3CpointerPressRaycastU3Ek__BackingField_8(),
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63::get_offset_of_hovered_9(),
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63::get_offset_of_U3CeligibleForClickU3Ek__BackingField_10(),
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63::get_offset_of_U3CpointerIdU3Ek__BackingField_11(),
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63::get_offset_of_U3CpositionU3Ek__BackingField_12(),
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63::get_offset_of_U3CdeltaU3Ek__BackingField_13(),
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63::get_offset_of_U3CpressPositionU3Ek__BackingField_14(),
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63::get_offset_of_U3CworldPositionU3Ek__BackingField_15(),
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63::get_offset_of_U3CworldNormalU3Ek__BackingField_16(),
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63::get_offset_of_U3CclickTimeU3Ek__BackingField_17(),
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63::get_offset_of_U3CclickCountU3Ek__BackingField_18(),
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63::get_offset_of_U3CscrollDeltaU3Ek__BackingField_19(),
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63::get_offset_of_U3CuseDragThresholdU3Ek__BackingField_20(),
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63::get_offset_of_U3CdraggingU3Ek__BackingField_21(),
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63::get_offset_of_U3CbuttonU3Ek__BackingField_22(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2523;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2523 = { sizeof (InputButton_tCC7470F9FD2AFE525243394F0215B47D4BF86AB0)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2523[4] =
{
InputButton_tCC7470F9FD2AFE525243394F0215B47D4BF86AB0::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2524;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2524 = { sizeof (FramePressState_t14175B3126231E1E65C038FBC84A1C6A24E3E79E)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2524[5] =
{
FramePressState_t14175B3126231E1E65C038FBC84A1C6A24E3E79E::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2525;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2525 = { sizeof (EventHandle_tF6428A551850EC70E06F4140A2D3121C4B0DC64E)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2525[3] =
{
EventHandle_tF6428A551850EC70E06F4140A2D3121C4B0DC64E::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2526;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2526 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2527;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2527 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2528;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2528 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2529;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2529 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2530;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2530 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2531;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2531 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2532;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2532 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2533;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2533 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2534;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2534 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2535;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2535 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2536;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2536 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2537;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2537 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2538;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2538 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2539;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2539 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2540;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2540 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2541;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2541 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2542;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2542 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2543;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2543 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2544;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2544 = { sizeof (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77), -1, sizeof(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2544[11] =
{
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77::get_offset_of_m_SystemInputModules_4(),
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77::get_offset_of_m_CurrentInputModule_5(),
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_StaticFields::get_offset_of_m_EventSystems_6(),
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77::get_offset_of_m_FirstSelected_7(),
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77::get_offset_of_m_sendNavigationEvents_8(),
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77::get_offset_of_m_DragThreshold_9(),
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77::get_offset_of_m_CurrentSelected_10(),
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77::get_offset_of_m_HasFocus_11(),
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77::get_offset_of_m_SelectionGuard_12(),
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77::get_offset_of_m_DummyData_13(),
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_StaticFields::get_offset_of_s_RaycastComparer_14(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2545;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2545 = { sizeof (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2545[1] =
{
EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298::get_offset_of_m_Delegates_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2546;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2546 = { sizeof (TriggerEvent_tF73252408C49CDE2F1A05AA75FE09086C53A9793), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2547;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2547 = { sizeof (Entry_t58989269D924DCD15F196DDEDAB84B85ED4D734E), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2547[2] =
{
Entry_t58989269D924DCD15F196DDEDAB84B85ED4D734E::get_offset_of_eventID_0(),
Entry_t58989269D924DCD15F196DDEDAB84B85ED4D734E::get_offset_of_callback_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2548;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2548 = { sizeof (EventTriggerType_t1F93B498A28A60FC59EBD7B6AC28C25CABA3E0DE)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2548[18] =
{
EventTriggerType_t1F93B498A28A60FC59EBD7B6AC28C25CABA3E0DE::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2549;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2549 = { sizeof (ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985), -1, sizeof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2549[19] =
{
ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields::get_offset_of_s_PointerEnterHandler_0(),
ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields::get_offset_of_s_PointerExitHandler_1(),
ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields::get_offset_of_s_PointerDownHandler_2(),
ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields::get_offset_of_s_PointerUpHandler_3(),
ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields::get_offset_of_s_PointerClickHandler_4(),
ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields::get_offset_of_s_InitializePotentialDragHandler_5(),
ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields::get_offset_of_s_BeginDragHandler_6(),
ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields::get_offset_of_s_DragHandler_7(),
ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields::get_offset_of_s_EndDragHandler_8(),
ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields::get_offset_of_s_DropHandler_9(),
ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields::get_offset_of_s_ScrollHandler_10(),
ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields::get_offset_of_s_UpdateSelectedHandler_11(),
ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields::get_offset_of_s_SelectHandler_12(),
ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields::get_offset_of_s_DeselectHandler_13(),
ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields::get_offset_of_s_MoveHandler_14(),
ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields::get_offset_of_s_SubmitHandler_15(),
ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields::get_offset_of_s_CancelHandler_16(),
ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields::get_offset_of_s_HandlerListPool_17(),
ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields::get_offset_of_s_InternalTransformList_18(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2550;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2550 = { 0, 0, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2551;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2551 = { sizeof (U3CU3Ec_t91DA84DB86FD18E664B2FBDACCB1B7A5E2A0849C), -1, sizeof(U3CU3Ec_t91DA84DB86FD18E664B2FBDACCB1B7A5E2A0849C_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2551[1] =
{
U3CU3Ec_t91DA84DB86FD18E664B2FBDACCB1B7A5E2A0849C_StaticFields::get_offset_of_U3CU3E9_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2552;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2552 = { sizeof (BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2553;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2553 = { sizeof (BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2553[6] =
{
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939::get_offset_of_m_RaycastResultCache_4(),
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939::get_offset_of_m_AxisEventData_5(),
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939::get_offset_of_m_EventSystem_6(),
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939::get_offset_of_m_BaseEventData_7(),
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939::get_offset_of_m_InputOverride_8(),
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939::get_offset_of_m_DefaultInput_9(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2554;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2554 = { sizeof (PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2554[6] =
{
0,
0,
0,
0,
PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C::get_offset_of_m_PointerData_14(),
PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C::get_offset_of_m_MouseState_15(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2555;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2555 = { sizeof (ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2555[2] =
{
ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D::get_offset_of_m_Button_0(),
ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D::get_offset_of_m_EventData_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2556;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2556 = { sizeof (MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2556[1] =
{
MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7::get_offset_of_m_TrackedButtons_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2557;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2557 = { sizeof (MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2557[2] =
{
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988::get_offset_of_buttonState_0(),
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988::get_offset_of_buttonData_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2558;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2558 = { sizeof (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2558[14] =
{
StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5::get_offset_of_m_PrevActionTime_16(),
StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5::get_offset_of_m_LastMoveVector_17(),
StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5::get_offset_of_m_ConsecutiveMoveCount_18(),
StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5::get_offset_of_m_LastMousePosition_19(),
StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5::get_offset_of_m_MousePosition_20(),
StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5::get_offset_of_m_CurrentFocusedGameObject_21(),
StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5::get_offset_of_m_InputPointerEvent_22(),
StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5::get_offset_of_m_HorizontalAxis_23(),
StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5::get_offset_of_m_VerticalAxis_24(),
StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5::get_offset_of_m_SubmitButton_25(),
StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5::get_offset_of_m_CancelButton_26(),
StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5::get_offset_of_m_InputActionsPerSecond_27(),
StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5::get_offset_of_m_RepeatDelay_28(),
StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5::get_offset_of_m_ForceModuleActive_29(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2559;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2559 = { sizeof (InputMode_t6C81C4F84B743FC877C53380040470BE273BA79D)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2559[3] =
{
InputMode_t6C81C4F84B743FC877C53380040470BE273BA79D::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2560;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2560 = { sizeof (TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2560[4] =
{
TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945::get_offset_of_m_LastMousePosition_16(),
TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945::get_offset_of_m_MousePosition_17(),
TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945::get_offset_of_m_InputPointerEvent_18(),
TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945::get_offset_of_m_ForceModuleActive_19(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2561;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2561 = { sizeof (MoveDirection_t82C25470C79BBE899C5E27B312A983D7FF457E1B)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2561[6] =
{
MoveDirection_t82C25470C79BBE899C5E27B312A983D7FF457E1B::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2562;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2562 = { sizeof (RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A), -1, sizeof(RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2562[1] =
{
RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_StaticFields::get_offset_of_s_Raycasters_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2563;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2563 = { sizeof (BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2563[1] =
{
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966::get_offset_of_m_RootRaycaster_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2564;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2564 = { sizeof (Physics2DRaycaster_t5D190F0825AA5F9E76892B852D6A5437D9981972), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2564[1] =
{
Physics2DRaycaster_t5D190F0825AA5F9E76892B852D6A5437D9981972::get_offset_of_m_Hits_11(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2565;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2565 = { sizeof (PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2565[6] =
{
0,
PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C::get_offset_of_m_EventCamera_6(),
PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C::get_offset_of_m_EventMask_7(),
PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C::get_offset_of_m_MaxRayIntersections_8(),
PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C::get_offset_of_m_LastMaxRayIntersections_9(),
PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C::get_offset_of_m_Hits_10(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2566;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2566 = { sizeof (RaycastHitComparer_t5465A53942AAC60F5716D514946F4AB6C263CFA2), -1, sizeof(RaycastHitComparer_t5465A53942AAC60F5716D514946F4AB6C263CFA2_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2566[1] =
{
RaycastHitComparer_t5465A53942AAC60F5716D514946F4AB6C263CFA2_StaticFields::get_offset_of_instance_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2567;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2567 = { sizeof (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2567[11] =
{
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91::get_offset_of_m_GameObject_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91::get_offset_of_module_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91::get_offset_of_distance_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91::get_offset_of_index_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91::get_offset_of_depth_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91::get_offset_of_sortingLayer_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91::get_offset_of_sortingOrder_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91::get_offset_of_worldPosition_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91::get_offset_of_worldNormal_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91::get_offset_of_screenPosition_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91::get_offset_of_displayIndex_10() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2568;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2568 = { sizeof (UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2569;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2569 = { sizeof (U3CPrivateImplementationDetailsU3E_tC8332394FBFEEB4B73459A35E182942340DA3537), -1, sizeof(U3CPrivateImplementationDetailsU3E_tC8332394FBFEEB4B73459A35E182942340DA3537_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2569[1] =
{
U3CPrivateImplementationDetailsU3E_tC8332394FBFEEB4B73459A35E182942340DA3537_StaticFields::get_offset_of_U37BBE37982E6C057ED87163CAFC7FD6E5E42EEA46_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2570;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2570 = { sizeof (__StaticArrayInitTypeSizeU3D12_t7F98A3A922EF4B6DA62C3CF2D4E5897EED2C26B8)+ sizeof (RuntimeObject), sizeof(__StaticArrayInitTypeSizeU3D12_t7F98A3A922EF4B6DA62C3CF2D4E5897EED2C26B8 ), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2571;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2571 = { sizeof (U3CModuleU3E_tCD4309F8DDA0F37A98DBCDFE49F6C8F300C242B0), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2572;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2572 = { sizeof (ContinuousEvent_tBAB6336255F3FC327CBA03CE368CD4D8D027107A), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2573;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2573 = { sizeof (AnalyticsSessionState_t61CA873937E9A3B881B71B32F518A954A4C8F267)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2573[5] =
{
AnalyticsSessionState_t61CA873937E9A3B881B71B32F518A954A4C8F267::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2574;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2574 = { sizeof (AnalyticsSessionInfo_tE075F764A74D2B095CFD57F3B179397F504B7D8C), -1, sizeof(AnalyticsSessionInfo_tE075F764A74D2B095CFD57F3B179397F504B7D8C_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2574[1] =
{
AnalyticsSessionInfo_tE075F764A74D2B095CFD57F3B179397F504B7D8C_StaticFields::get_offset_of_sessionStateChanged_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2575;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2575 = { sizeof (SessionStateChanged_t9084549A636BD45086D66CC6765DA8C3DD31066F), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2576;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2576 = { sizeof (RemoteSettings_t3F7E07D15288B0DF84A4A32044592D8AFA6D36ED), -1, sizeof(RemoteSettings_t3F7E07D15288B0DF84A4A32044592D8AFA6D36ED_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2576[3] =
{
RemoteSettings_t3F7E07D15288B0DF84A4A32044592D8AFA6D36ED_StaticFields::get_offset_of_Updated_0(),
RemoteSettings_t3F7E07D15288B0DF84A4A32044592D8AFA6D36ED_StaticFields::get_offset_of_BeforeFetchFromServer_1(),
RemoteSettings_t3F7E07D15288B0DF84A4A32044592D8AFA6D36ED_StaticFields::get_offset_of_Completed_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2577;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2577 = { sizeof (UpdatedEventHandler_tB0230BC83686D7126AB4D3800A66351028CA514F), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2578;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2578 = { sizeof (RemoteConfigSettings_t97154F5546B47CE72257CC2F0B677BDF696AEC4A), sizeof(RemoteConfigSettings_t97154F5546B47CE72257CC2F0B677BDF696AEC4A_marshaled_pinvoke), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2578[2] =
{
RemoteConfigSettings_t97154F5546B47CE72257CC2F0B677BDF696AEC4A::get_offset_of_m_Ptr_0(),
RemoteConfigSettings_t97154F5546B47CE72257CC2F0B677BDF696AEC4A::get_offset_of_Updated_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2579;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2579 = { sizeof (RemoteConfigSettingsHelper_t2F0887933AC2724EEA806E32E9147A493C0A33BE), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2580;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2580 = { sizeof (Tag_t7FB12BCA4EA470318C147C1AED37575DEB552307)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2580[12] =
{
Tag_t7FB12BCA4EA470318C147C1AED37575DEB552307::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2581;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2581 = { sizeof (U3CModuleU3E_t2FBFFC67F8D6B1FA13284515F9BBD8C9333B5C86), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2582;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2582 = { sizeof (WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296), -1, sizeof(WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2582[1] =
{
WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_StaticFields::get_offset_of_domainRegex_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2583;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2583 = { sizeof (CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0), sizeof(CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_pinvoke), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2583[1] =
{
CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0::get_offset_of_m_Ptr_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2584;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2584 = { sizeof (U3CModuleU3E_t8276593D2182AD0E8D12AF6BAFC4DCCD5C1DB6C1), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2585;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2585 = { sizeof (Api_t4000D9F2E2A2012E34CA6CA8B3EA3E0BF565182C), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2586;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2586 = { sizeof (ARKitCameraSubsystem_t60568A6D41C4421316052C06185DC95BA291F614), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2587;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2587 = { sizeof (Provider_t10F5BFB8A0883F5ABFC689F55DC4B6DFA0E9535E), -1, sizeof(Provider_t10F5BFB8A0883F5ABFC689F55DC4B6DFA0E9535E_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2587[2] =
{
Provider_t10F5BFB8A0883F5ABFC689F55DC4B6DFA0E9535E_StaticFields::get_offset_of_k_TextureYPropertyNameId_0(),
Provider_t10F5BFB8A0883F5ABFC689F55DC4B6DFA0E9535E_StaticFields::get_offset_of_k_TextureCbCrPropertyNameId_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2588;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2588 = { sizeof (NativeApi_tAC74EBF9B7EAB0504916300254C661F63CF9173A), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2589;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2589 = { sizeof (ARKitRaycastSubsystem_t603C87A6FBC8139D35116A61251EB289E21ABC09), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2590;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2590 = { sizeof (Provider_tC61D3306173539ECD1E3F0E7184408EA855AA0B3), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2591;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2591 = { sizeof (NativeApi_tB7917295BEDEB8E60FC3C8181CFDEB126B4DDB2A), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2592;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2592 = { sizeof (ARKitReferencePointSubsystem_t7883B8562F4226A121B744F99A8CE262F2D0E017), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2593;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2593 = { sizeof (Provider_t509F1B75CECA94E702BEAA9F7C67EA2313C58986), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2594;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2594 = { sizeof (ARKitSessionSubsystem_tD9267F6454E65E2C795C8CAF65C9CCB0BBE1636A), -1, sizeof(ARKitSessionSubsystem_tD9267F6454E65E2C795C8CAF65C9CCB0BBE1636A_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2594[1] =
{
ARKitSessionSubsystem_tD9267F6454E65E2C795C8CAF65C9CCB0BBE1636A_StaticFields::get_offset_of_s_OnAsyncWorldMapCompleted_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2595;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2595 = { sizeof (Provider_t475F303CC6F0955D8B266D4CD5B7022F3658389B), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2596;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2596 = { sizeof (NativeApi_t164DECAC3F6004936824870871CC817A16AC9050), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2597;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2597 = { sizeof (Availability_tFD76A2177DDFE5A5A8CDB75EB9CF784CDD9A7487)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2597[3] =
{
Availability_tFD76A2177DDFE5A5A8CDB75EB9CF784CDD9A7487::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2598;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2598 = { sizeof (OnAsyncConversionCompleteDelegate_t841FB5BE19010FE3AFBEDEA37C52A468755B19FF), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2599;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2599 = { sizeof (ARWorldMap_t8BAE5D083A023D7DD23C29E4082B6BBD329010DE)+ sizeof (RuntimeObject), sizeof(ARWorldMap_t8BAE5D083A023D7DD23C29E4082B6BBD329010DE ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2599[1] =
{
ARWorldMap_t8BAE5D083A023D7DD23C29E4082B6BBD329010DE::get_offset_of_U3CnativeHandleU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2600;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2600 = { sizeof (ARWorldMapRequestStatus_tF71BE763C5F9644F3D7377ACE110F7FFBBE3D5DC)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2600[8] =
{
ARWorldMapRequestStatus_tF71BE763C5F9644F3D7377ACE110F7FFBBE3D5DC::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2601;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2601 = { sizeof (ARWorldMapRequestStatusExtensions_t8FC86F2BC224C9CCC808FF3B4610B22BE5F8051F), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2602;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2602 = { sizeof (ARKitXRDepthSubsystem_tA5A5BCEDB5F2217FEE76B4751167757193534501), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2603;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2603 = { sizeof (Provider_t38A44526F6D5F1EBFDA048E10377C8F3FA82EF70), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2604;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2604 = { sizeof (TransformPositionsJob_t4BCA4844CF5EFB6C0A19B9E5059390B2E499E283)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2604[2] =
{
TransformPositionsJob_t4BCA4844CF5EFB6C0A19B9E5059390B2E499E283::get_offset_of_positionsIn_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
TransformPositionsJob_t4BCA4844CF5EFB6C0A19B9E5059390B2E499E283::get_offset_of_positionsOut_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2605;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2605 = { sizeof (ARKitXRPlaneSubsystem_tBCCDC8EA086FD3B3AD556F50AECA1BBFA9A8272A), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2606;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2606 = { sizeof (Provider_tE828C43D91B7E57F44E04A10F068C304DBAE5A6A), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2607;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2607 = { sizeof (FlipBoundaryWindingJob_tAB484E8E0F98EEA68CD01FECAEBD5BFA7C75B312)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2607[1] =
{
FlipBoundaryWindingJob_tAB484E8E0F98EEA68CD01FECAEBD5BFA7C75B312::get_offset_of_positions_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2608;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2608 = { sizeof (TransformBoundaryPositionsJob_t42DE86BF3E6AB9CAC98E5C1772288A28226EC59A)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2608[2] =
{
TransformBoundaryPositionsJob_t42DE86BF3E6AB9CAC98E5C1772288A28226EC59A::get_offset_of_positionsIn_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
TransformBoundaryPositionsJob_t42DE86BF3E6AB9CAC98E5C1772288A28226EC59A::get_offset_of_positionsOut_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2609;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2609 = { sizeof (U3CModuleU3E_tB308A2384DEB86F8845A4E61970976B8944B5DC4), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2610;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2610 = { sizeof (U3CModuleU3E_t6CDDDF959E7E18A6744E43B613F41CDAC780256A), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2611;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2611 = { sizeof (fireControl_tA923E47CF08C5A366ED38D42648E37AC75F9D035), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2611[1] =
{
fireControl_tA923E47CF08C5A366ED38D42648E37AC75F9D035::get_offset_of_ps_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2612;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2612 = { sizeof (flyScript_t91000275481D48F5248A086AE32503B678104C38), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2612[1] =
{
flyScript_t91000275481D48F5248A086AE32503B678104C38::get_offset_of_anim_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2613;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2613 = { sizeof (trainScript_t0CB2C76EFCD81565FB6D9E4607C88104AEB555DE), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2613[1] =
{
trainScript_t0CB2C76EFCD81565FB6D9E4607C88104AEB555DE::get_offset_of_anima_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2614;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2614 = { sizeof (UnityARUserAnchorExample_tA0ADFEE995056AD62918E948C7DED4850EECD70B), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2614[4] =
{
UnityARUserAnchorExample_tA0ADFEE995056AD62918E948C7DED4850EECD70B::get_offset_of_prefabObject_4(),
UnityARUserAnchorExample_tA0ADFEE995056AD62918E948C7DED4850EECD70B::get_offset_of_distanceFromCamera_5(),
UnityARUserAnchorExample_tA0ADFEE995056AD62918E948C7DED4850EECD70B::get_offset_of_m_Clones_6(),
UnityARUserAnchorExample_tA0ADFEE995056AD62918E948C7DED4850EECD70B::get_offset_of_m_TimeUntilRemove_7(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2615;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2615 = { sizeof (GenerateImageAnchor_t88A7A4DE61FA02D020BCCC11F5CD996543AFD770), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2615[3] =
{
GenerateImageAnchor_t88A7A4DE61FA02D020BCCC11F5CD996543AFD770::get_offset_of_referenceImage_4(),
GenerateImageAnchor_t88A7A4DE61FA02D020BCCC11F5CD996543AFD770::get_offset_of_prefabToGenerate_5(),
GenerateImageAnchor_t88A7A4DE61FA02D020BCCC11F5CD996543AFD770::get_offset_of_imageAnchorGO_6(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2616;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2616 = { sizeof (RelocalizationControl_tE4C8E6C63F558C2D2836065A702EFB37F3B51CAF), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2616[3] =
{
RelocalizationControl_tE4C8E6C63F558C2D2836065A702EFB37F3B51CAF::get_offset_of_buttonText_4(),
RelocalizationControl_tE4C8E6C63F558C2D2836065A702EFB37F3B51CAF::get_offset_of_trackingStateText_5(),
RelocalizationControl_tE4C8E6C63F558C2D2836065A702EFB37F3B51CAF::get_offset_of_trackingReasonText_6(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2617;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2617 = { sizeof (PointCloudIdsExample_t2401E140E9DF16F80EA897C3A777476C317DB247), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2617[4] =
{
PointCloudIdsExample_t2401E140E9DF16F80EA897C3A777476C317DB247::get_offset_of_frameUpdated_4(),
PointCloudIdsExample_t2401E140E9DF16F80EA897C3A777476C317DB247::get_offset_of_m_PointCloudIdentifiers_5(),
PointCloudIdsExample_t2401E140E9DF16F80EA897C3A777476C317DB247::get_offset_of_m_IdentifiersSeenSoFar_6(),
PointCloudIdsExample_t2401E140E9DF16F80EA897C3A777476C317DB247::get_offset_of_m_ExistingIdsSeen_7(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2618;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2618 = { sizeof (SetWorldOriginControl_tEE1230C376B9AC6868E77308291FA137E6943EE1), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2618[3] =
{
SetWorldOriginControl_tEE1230C376B9AC6868E77308291FA137E6943EE1::get_offset_of_arCamera_4(),
SetWorldOriginControl_tEE1230C376B9AC6868E77308291FA137E6943EE1::get_offset_of_positionText_5(),
SetWorldOriginControl_tEE1230C376B9AC6868E77308291FA137E6943EE1::get_offset_of_rotationText_6(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2619;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2619 = { sizeof (FaceTrackingVideoFormatsExample_t2FE4E7FA2213CDA88F2FEB558A5C41E09EAEEF39), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2619[2] =
{
FaceTrackingVideoFormatsExample_t2FE4E7FA2213CDA88F2FEB558A5C41E09EAEEF39::get_offset_of_formatsParent_4(),
FaceTrackingVideoFormatsExample_t2FE4E7FA2213CDA88F2FEB558A5C41E09EAEEF39::get_offset_of_videoFormatButtonPrefab_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2620;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2620 = { sizeof (VideoFormatButton_t5243961AFDF957A2BC12E0D28B3AFC0BE71D7B83), -1, sizeof(VideoFormatButton_t5243961AFDF957A2BC12E0D28B3AFC0BE71D7B83_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2620[3] =
{
VideoFormatButton_t5243961AFDF957A2BC12E0D28B3AFC0BE71D7B83::get_offset_of_videoFormatDescription_4(),
VideoFormatButton_t5243961AFDF957A2BC12E0D28B3AFC0BE71D7B83::get_offset_of_arVideoFormat_5(),
VideoFormatButton_t5243961AFDF957A2BC12E0D28B3AFC0BE71D7B83_StaticFields::get_offset_of_FormatButtonPressedEvent_6(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2621;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2621 = { sizeof (VideoFormatButtonPressed_tE2EB379E3E66B4C8D84030EA0FE11BE4714820CC), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2622;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2622 = { sizeof (VideoFormatsExample_t33090EA342CA6D34540CD00BAB4D81FE5B8BE08B), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2622[2] =
{
VideoFormatsExample_t33090EA342CA6D34540CD00BAB4D81FE5B8BE08B::get_offset_of_formatsParent_4(),
VideoFormatsExample_t33090EA342CA6D34540CD00BAB4D81FE5B8BE08B::get_offset_of_videoFormatButtonPrefab_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2623;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2623 = { sizeof (GenerateEnvironmentProbeAnchors_t9C539D7382961D288A28BF7816D17AA5BD0F58F2), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2623[2] =
{
GenerateEnvironmentProbeAnchors_t9C539D7382961D288A28BF7816D17AA5BD0F58F2::get_offset_of_m_ReflectionProbePrefab_4(),
GenerateEnvironmentProbeAnchors_t9C539D7382961D288A28BF7816D17AA5BD0F58F2::get_offset_of_probeAnchorMap_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2624;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2624 = { sizeof (HitCreateEnvironmentProbe_tDFC0CE4F605BBBCBB41A6CD82DF60F75223304A1), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2624[2] =
{
HitCreateEnvironmentProbe_tDFC0CE4F605BBBCBB41A6CD82DF60F75223304A1::get_offset_of_maxRayDistance_4(),
HitCreateEnvironmentProbe_tDFC0CE4F605BBBCBB41A6CD82DF60F75223304A1::get_offset_of_collisionLayer_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2625;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2625 = { sizeof (ReflectionProbeGameObject_tD75E3FD28D072B9F8A906119378358A6538AB58C), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2625[4] =
{
ReflectionProbeGameObject_tD75E3FD28D072B9F8A906119378358A6538AB58C::get_offset_of_reflectionProbe_4(),
ReflectionProbeGameObject_tD75E3FD28D072B9F8A906119378358A6538AB58C::get_offset_of_latchUpdate_5(),
ReflectionProbeGameObject_tD75E3FD28D072B9F8A906119378358A6538AB58C::get_offset_of_latchedTexture_6(),
ReflectionProbeGameObject_tD75E3FD28D072B9F8A906119378358A6538AB58C::get_offset_of_debugExtentGO_7(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2626;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2626 = { sizeof (GenerateObjectAnchor_t5894B553121A8401B4B119B72CE621702B55AC02), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2626[3] =
{
GenerateObjectAnchor_t5894B553121A8401B4B119B72CE621702B55AC02::get_offset_of_referenceObjectAsset_4(),
GenerateObjectAnchor_t5894B553121A8401B4B119B72CE621702B55AC02::get_offset_of_prefabToGenerate_5(),
GenerateObjectAnchor_t5894B553121A8401B4B119B72CE621702B55AC02::get_offset_of_objectAnchorGO_6(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2627;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2627 = { sizeof (UpdateWorldMappingStatus_tA474863E7C7B2C743BB4109F5D84160177875FA8), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2627[2] =
{
UpdateWorldMappingStatus_tA474863E7C7B2C743BB4109F5D84160177875FA8::get_offset_of_text_4(),
UpdateWorldMappingStatus_tA474863E7C7B2C743BB4109F5D84160177875FA8::get_offset_of_tracking_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2628;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2628 = { sizeof (WorldMapManager_t2E882FE3D5782FCC4EEE54E41A3A12CF64DEF7F8), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2628[4] =
{
WorldMapManager_t2E882FE3D5782FCC4EEE54E41A3A12CF64DEF7F8::get_offset_of_m_ARCameraManager_4(),
WorldMapManager_t2E882FE3D5782FCC4EEE54E41A3A12CF64DEF7F8::get_offset_of_m_LoadedMap_5(),
WorldMapManager_t2E882FE3D5782FCC4EEE54E41A3A12CF64DEF7F8::get_offset_of_serializedWorldMap_6(),
WorldMapManager_t2E882FE3D5782FCC4EEE54E41A3A12CF64DEF7F8::get_offset_of_m_LastReason_7(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2629;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2629 = { sizeof (DetectedObjectManager_tCEE47583DD2EABFAA00DA5A636B378282CDC5570), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2629[2] =
{
DetectedObjectManager_tCEE47583DD2EABFAA00DA5A636B378282CDC5570::get_offset_of_m_ObjectPrefab_4(),
DetectedObjectManager_tCEE47583DD2EABFAA00DA5A636B378282CDC5570::get_offset_of_objectAnchorMap_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2630;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2630 = { sizeof (ObjectScanManager_tB78B61ABE77713CB550B3D60BA37F5D0B6C62AC8), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2630[6] =
{
ObjectScanManager_tB78B61ABE77713CB550B3D60BA37F5D0B6C62AC8::get_offset_of_m_ARSessionManager_4(),
ObjectScanManager_tB78B61ABE77713CB550B3D60BA37F5D0B6C62AC8::get_offset_of_listOfObjects_5(),
ObjectScanManager_tB78B61ABE77713CB550B3D60BA37F5D0B6C62AC8::get_offset_of_objIndex_6(),
ObjectScanManager_tB78B61ABE77713CB550B3D60BA37F5D0B6C62AC8::get_offset_of_scannedObjects_7(),
ObjectScanManager_tB78B61ABE77713CB550B3D60BA37F5D0B6C62AC8::get_offset_of_detectionMode_8(),
ObjectScanManager_tB78B61ABE77713CB550B3D60BA37F5D0B6C62AC8::get_offset_of_pickBoundingBox_9(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2631;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2631 = { sizeof (ObjectScanSessionManager_t52876CFEBCB163AC5653E45E5CDBBED9CCB34015), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2631[8] =
{
ObjectScanSessionManager_t52876CFEBCB163AC5653E45E5CDBBED9CCB34015::get_offset_of_m_camera_4(),
ObjectScanSessionManager_t52876CFEBCB163AC5653E45E5CDBBED9CCB34015::get_offset_of_m_session_5(),
ObjectScanSessionManager_t52876CFEBCB163AC5653E45E5CDBBED9CCB34015::get_offset_of_startAlignment_6(),
ObjectScanSessionManager_t52876CFEBCB163AC5653E45E5CDBBED9CCB34015::get_offset_of_planeDetection_7(),
ObjectScanSessionManager_t52876CFEBCB163AC5653E45E5CDBBED9CCB34015::get_offset_of_getPointCloudData_8(),
ObjectScanSessionManager_t52876CFEBCB163AC5653E45E5CDBBED9CCB34015::get_offset_of_enableLightEstimation_9(),
ObjectScanSessionManager_t52876CFEBCB163AC5653E45E5CDBBED9CCB34015::get_offset_of_enableAutoFocus_10(),
ObjectScanSessionManager_t52876CFEBCB163AC5653E45E5CDBBED9CCB34015::get_offset_of_sessionStarted_11(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2632;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2632 = { sizeof (ObjectText_tCCD625CE5B57528B5610D828A60638D93AB7E572), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2632[1] =
{
ObjectText_tCCD625CE5B57528B5610D828A60638D93AB7E572::get_offset_of_textMesh_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2633;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2633 = { sizeof (TongueDetector_t07077E975F972DB0444C238DD1F3CBCDF6F0EAFB), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2633[3] =
{
TongueDetector_t07077E975F972DB0444C238DD1F3CBCDF6F0EAFB::get_offset_of_tongueImage_4(),
TongueDetector_t07077E975F972DB0444C238DD1F3CBCDF6F0EAFB::get_offset_of_shapeEnabled_5(),
TongueDetector_t07077E975F972DB0444C238DD1F3CBCDF6F0EAFB::get_offset_of_currentBlendShapes_6(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2634;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2634 = { sizeof (UnityEyeManager_t1BF4A5D2E57263BCB3CDC38D6013F247EC921E17), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2634[4] =
{
UnityEyeManager_t1BF4A5D2E57263BCB3CDC38D6013F247EC921E17::get_offset_of_eyePrefab_4(),
UnityEyeManager_t1BF4A5D2E57263BCB3CDC38D6013F247EC921E17::get_offset_of_m_session_5(),
UnityEyeManager_t1BF4A5D2E57263BCB3CDC38D6013F247EC921E17::get_offset_of_leftEyeGo_6(),
UnityEyeManager_t1BF4A5D2E57263BCB3CDC38D6013F247EC921E17::get_offset_of_rightEyeGo_7(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2635;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2635 = { sizeof (ARCameraTracker_t5A87759C36869FAA79EFD8E79C44D29A7B01335F), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2635[2] =
{
ARCameraTracker_t5A87759C36869FAA79EFD8E79C44D29A7B01335F::get_offset_of_trackedCamera_4(),
ARCameraTracker_t5A87759C36869FAA79EFD8E79C44D29A7B01335F::get_offset_of_sessionStarted_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2636;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2636 = { sizeof (BlendshapeDriver_t2618FEC6419AB7092B5C35040211AB91B92F7C45), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2636[2] =
{
BlendshapeDriver_t2618FEC6419AB7092B5C35040211AB91B92F7C45::get_offset_of_skinnedMeshRenderer_4(),
BlendshapeDriver_t2618FEC6419AB7092B5C35040211AB91B92F7C45::get_offset_of_currentBlendShapes_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2637;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2637 = { sizeof (BlendshapePrinter_t1CF7CEDEFEEE5EB2BB4E75A9E576E90422019FEE), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2637[2] =
{
BlendshapePrinter_t1CF7CEDEFEEE5EB2BB4E75A9E576E90422019FEE::get_offset_of_shapeEnabled_4(),
BlendshapePrinter_t1CF7CEDEFEEE5EB2BB4E75A9E576E90422019FEE::get_offset_of_currentBlendShapes_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2638;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2638 = { sizeof (UnityARFaceAnchorManager_t057DAF2641A27427E0435C212CFBD7E9342E1076), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2638[2] =
{
UnityARFaceAnchorManager_t057DAF2641A27427E0435C212CFBD7E9342E1076::get_offset_of_anchorPrefab_4(),
UnityARFaceAnchorManager_t057DAF2641A27427E0435C212CFBD7E9342E1076::get_offset_of_m_session_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2639;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2639 = { sizeof (UnityARFaceMeshManager_tBC7942032838F3403D88525E33C1B95863AE372D), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2639[3] =
{
UnityARFaceMeshManager_tBC7942032838F3403D88525E33C1B95863AE372D::get_offset_of_meshFilter_4(),
UnityARFaceMeshManager_tBC7942032838F3403D88525E33C1B95863AE372D::get_offset_of_m_session_5(),
UnityARFaceMeshManager_tBC7942032838F3403D88525E33C1B95863AE372D::get_offset_of_faceMesh_6(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2640;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2640 = { sizeof (FocusSquare_tD8F227673C3CDFE7F5C33248EA25805E57CB8057), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2640[7] =
{
FocusSquare_tD8F227673C3CDFE7F5C33248EA25805E57CB8057::get_offset_of_findingSquare_4(),
FocusSquare_tD8F227673C3CDFE7F5C33248EA25805E57CB8057::get_offset_of_foundSquare_5(),
FocusSquare_tD8F227673C3CDFE7F5C33248EA25805E57CB8057::get_offset_of_maxRayDistance_6(),
FocusSquare_tD8F227673C3CDFE7F5C33248EA25805E57CB8057::get_offset_of_collisionLayerMask_7(),
FocusSquare_tD8F227673C3CDFE7F5C33248EA25805E57CB8057::get_offset_of_findingSquareDist_8(),
FocusSquare_tD8F227673C3CDFE7F5C33248EA25805E57CB8057::get_offset_of_squareState_9(),
FocusSquare_tD8F227673C3CDFE7F5C33248EA25805E57CB8057::get_offset_of_trackingInitialized_10(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2641;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2641 = { sizeof (FocusState_t1B277CF9E686879A9BA54318345E7BEDD44A232C)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2641[4] =
{
FocusState_t1B277CF9E686879A9BA54318345E7BEDD44A232C::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2642;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2642 = { sizeof (BallMaker_t445DA39119C2725BF0A209F5621CC47250869EBF), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2642[5] =
{
BallMaker_t445DA39119C2725BF0A209F5621CC47250869EBF::get_offset_of_ballPrefab_4(),
BallMaker_t445DA39119C2725BF0A209F5621CC47250869EBF::get_offset_of_createHeight_5(),
BallMaker_t445DA39119C2725BF0A209F5621CC47250869EBF::get_offset_of_maxRayDistance_6(),
BallMaker_t445DA39119C2725BF0A209F5621CC47250869EBF::get_offset_of_collisionLayer_7(),
BallMaker_t445DA39119C2725BF0A209F5621CC47250869EBF::get_offset_of_props_8(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2643;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2643 = { sizeof (BallMover_t696C670720FE1CD8219B87A8278193B52C1E9413), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2643[4] =
{
BallMover_t696C670720FE1CD8219B87A8278193B52C1E9413::get_offset_of_collBallPrefab_4(),
BallMover_t696C670720FE1CD8219B87A8278193B52C1E9413::get_offset_of_maxRayDistance_5(),
BallMover_t696C670720FE1CD8219B87A8278193B52C1E9413::get_offset_of_collisionLayer_6(),
BallMover_t696C670720FE1CD8219B87A8278193B52C1E9413::get_offset_of_collBallGO_7(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2644;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2644 = { sizeof (Ballz_t35A6EFA1D751EB0ADEC94057232BC51F10D415E9), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2644[2] =
{
Ballz_t35A6EFA1D751EB0ADEC94057232BC51F10D415E9::get_offset_of_yDistanceThreshold_4(),
Ballz_t35A6EFA1D751EB0ADEC94057232BC51F10D415E9::get_offset_of_startingY_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2645;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2645 = { sizeof (ModeSwitcher_tFB2CB3B9C07236C52C5AD691FCEE5D24CD2AF88F), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2645[3] =
{
ModeSwitcher_tFB2CB3B9C07236C52C5AD691FCEE5D24CD2AF88F::get_offset_of_ballMake_4(),
ModeSwitcher_tFB2CB3B9C07236C52C5AD691FCEE5D24CD2AF88F::get_offset_of_ballMove_5(),
ModeSwitcher_tFB2CB3B9C07236C52C5AD691FCEE5D24CD2AF88F::get_offset_of_appMode_6(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2646;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2646 = { sizeof (ColorValues_t5325D63EAB551F8B6C6247581497F0F5CF528C41)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2646[8] =
{
ColorValues_t5325D63EAB551F8B6C6247581497F0F5CF528C41::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2647;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2647 = { sizeof (ColorChangedEvent_tD7675EE515A344B6B9A4877082202AC7B307FD9F), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2648;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2648 = { sizeof (HSVChangedEvent_t448E1E151C6D975F5EEA20A9B9024B61B1ACF482), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2649;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2649 = { sizeof (ColorPickerTester_tD29592EB715E4C3D5BBC9A3F92C28A80A5F7DB94), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2649[2] =
{
ColorPickerTester_tD29592EB715E4C3D5BBC9A3F92C28A80A5F7DB94::get_offset_of_renderer_4(),
ColorPickerTester_tD29592EB715E4C3D5BBC9A3F92C28A80A5F7DB94::get_offset_of_picker_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2650;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2650 = { sizeof (TiltWindow_tAC72B5374606BDDBC331E4E7BFE57DBF84AFD4D4), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2650[4] =
{
TiltWindow_tAC72B5374606BDDBC331E4E7BFE57DBF84AFD4D4::get_offset_of_range_4(),
TiltWindow_tAC72B5374606BDDBC331E4E7BFE57DBF84AFD4D4::get_offset_of_mTrans_5(),
TiltWindow_tAC72B5374606BDDBC331E4E7BFE57DBF84AFD4D4::get_offset_of_mStart_6(),
TiltWindow_tAC72B5374606BDDBC331E4E7BFE57DBF84AFD4D4::get_offset_of_mRot_7(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2651;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2651 = { sizeof (ColorImage_tC0BE16447172688733C951BC16CE1C1913AC1257), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2651[2] =
{
ColorImage_tC0BE16447172688733C951BC16CE1C1913AC1257::get_offset_of_picker_4(),
ColorImage_tC0BE16447172688733C951BC16CE1C1913AC1257::get_offset_of_image_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2652;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2652 = { sizeof (ColorLabel_t2AE184CA8DF17ACD68C7AFD578C25284D357B823), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2652[7] =
{
ColorLabel_t2AE184CA8DF17ACD68C7AFD578C25284D357B823::get_offset_of_picker_4(),
ColorLabel_t2AE184CA8DF17ACD68C7AFD578C25284D357B823::get_offset_of_type_5(),
ColorLabel_t2AE184CA8DF17ACD68C7AFD578C25284D357B823::get_offset_of_prefix_6(),
ColorLabel_t2AE184CA8DF17ACD68C7AFD578C25284D357B823::get_offset_of_minValue_7(),
ColorLabel_t2AE184CA8DF17ACD68C7AFD578C25284D357B823::get_offset_of_maxValue_8(),
ColorLabel_t2AE184CA8DF17ACD68C7AFD578C25284D357B823::get_offset_of_precision_9(),
ColorLabel_t2AE184CA8DF17ACD68C7AFD578C25284D357B823::get_offset_of_label_10(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2653;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2653 = { sizeof (ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2653[9] =
{
ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83::get_offset_of__hue_4(),
ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83::get_offset_of__saturation_5(),
ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83::get_offset_of__brightness_6(),
ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83::get_offset_of__red_7(),
ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83::get_offset_of__green_8(),
ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83::get_offset_of__blue_9(),
ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83::get_offset_of__alpha_10(),
ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83::get_offset_of_onValueChanged_11(),
ColorPicker_t06C800C60EF221E6314FD87713C26F67805A2E83::get_offset_of_onHSVChanged_12(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2654;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2654 = { sizeof (ColorPresets_t479C8E0C2B363CAD96E07F2B8D0A558C5192A68F), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2654[3] =
{
ColorPresets_t479C8E0C2B363CAD96E07F2B8D0A558C5192A68F::get_offset_of_picker_4(),
ColorPresets_t479C8E0C2B363CAD96E07F2B8D0A558C5192A68F::get_offset_of_presets_5(),
ColorPresets_t479C8E0C2B363CAD96E07F2B8D0A558C5192A68F::get_offset_of_createPresetImage_6(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2655;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2655 = { sizeof (ColorSlider_tA7CDAE2A85B5612942DBC5DE68349311DB4286B3), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2655[4] =
{
ColorSlider_tA7CDAE2A85B5612942DBC5DE68349311DB4286B3::get_offset_of_hsvpicker_4(),
ColorSlider_tA7CDAE2A85B5612942DBC5DE68349311DB4286B3::get_offset_of_type_5(),
ColorSlider_tA7CDAE2A85B5612942DBC5DE68349311DB4286B3::get_offset_of_slider_6(),
ColorSlider_tA7CDAE2A85B5612942DBC5DE68349311DB4286B3::get_offset_of_listen_7(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2656;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2656 = { sizeof (ColorSliderImage_tFE0F2136443DFFEC5FEB98F3C67D235A26DF3BE5), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2656[4] =
{
ColorSliderImage_tFE0F2136443DFFEC5FEB98F3C67D235A26DF3BE5::get_offset_of_picker_4(),
ColorSliderImage_tFE0F2136443DFFEC5FEB98F3C67D235A26DF3BE5::get_offset_of_type_5(),
ColorSliderImage_tFE0F2136443DFFEC5FEB98F3C67D235A26DF3BE5::get_offset_of_direction_6(),
ColorSliderImage_tFE0F2136443DFFEC5FEB98F3C67D235A26DF3BE5::get_offset_of_image_7(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2657;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2657 = { sizeof (HexColorField_tDB03B01714DE77496F9F4C8F4426B9F92ECA6BF6), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2657[4] =
{
HexColorField_tDB03B01714DE77496F9F4C8F4426B9F92ECA6BF6::get_offset_of_hsvpicker_4(),
HexColorField_tDB03B01714DE77496F9F4C8F4426B9F92ECA6BF6::get_offset_of_displayAlpha_5(),
HexColorField_tDB03B01714DE77496F9F4C8F4426B9F92ECA6BF6::get_offset_of_hexInputField_6(),
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2658;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2658 = { sizeof (SVBoxSlider_tCDDB27E02B8910DF81B2D1673EE6E0DF0EFA5260), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2658[5] =
{
SVBoxSlider_tCDDB27E02B8910DF81B2D1673EE6E0DF0EFA5260::get_offset_of_picker_4(),
SVBoxSlider_tCDDB27E02B8910DF81B2D1673EE6E0DF0EFA5260::get_offset_of_slider_5(),
SVBoxSlider_tCDDB27E02B8910DF81B2D1673EE6E0DF0EFA5260::get_offset_of_image_6(),
SVBoxSlider_tCDDB27E02B8910DF81B2D1673EE6E0DF0EFA5260::get_offset_of_lastH_7(),
SVBoxSlider_tCDDB27E02B8910DF81B2D1673EE6E0DF0EFA5260::get_offset_of_listen_8(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2659;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2659 = { sizeof (HSVUtil_tDF89A3FE9B78CA015C163FC878D58A7A1A492835), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2660;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2660 = { sizeof (HsvColor_t86712029C0DDC51AF171EA028A250A63AF647224)+ sizeof (RuntimeObject), sizeof(HsvColor_t86712029C0DDC51AF171EA028A250A63AF647224 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2660[3] =
{
HsvColor_t86712029C0DDC51AF171EA028A250A63AF647224::get_offset_of_H_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
HsvColor_t86712029C0DDC51AF171EA028A250A63AF647224::get_offset_of_S_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
HsvColor_t86712029C0DDC51AF171EA028A250A63AF647224::get_offset_of_V_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2661;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2661 = { sizeof (ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2661[14] =
{
ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8::get_offset_of_painterParticlePrefab_4(),
ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8::get_offset_of_minDistanceThreshold_5(),
ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8::get_offset_of_maxDistanceThreshold_6(),
ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8::get_offset_of_frameUpdated_7(),
ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8::get_offset_of_particleSize_8(),
ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8::get_offset_of_penDistance_9(),
ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8::get_offset_of_colorPicker_10(),
ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8::get_offset_of_currentPS_11(),
ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8::get_offset_of_particles_12(),
ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8::get_offset_of_previousPosition_13(),
ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8::get_offset_of_currentPaintVertices_14(),
ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8::get_offset_of_currentColor_15(),
ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8::get_offset_of_paintSystems_16(),
ParticlePainter_t6A38EB8F8D688B3243FAE598A366EDF2EC6EA6D8::get_offset_of_paintMode_17(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2662;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2662 = { sizeof (ARReferenceImage_tB296F0D336F71A9B79F9D4C826391CBC8A0D2F92), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2662[3] =
{
ARReferenceImage_tB296F0D336F71A9B79F9D4C826391CBC8A0D2F92::get_offset_of_imageName_4(),
ARReferenceImage_tB296F0D336F71A9B79F9D4C826391CBC8A0D2F92::get_offset_of_imageTexture_5(),
ARReferenceImage_tB296F0D336F71A9B79F9D4C826391CBC8A0D2F92::get_offset_of_physicalSize_6(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2663;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2663 = { sizeof (ARReferenceImagesSet_tE637611976378C4D1057CE06DD14F87EB52174E0), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2663[2] =
{
ARReferenceImagesSet_tE637611976378C4D1057CE06DD14F87EB52174E0::get_offset_of_resourceGroupName_4(),
ARReferenceImagesSet_tE637611976378C4D1057CE06DD14F87EB52174E0::get_offset_of_referenceImages_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2664;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2664 = { sizeof (ARReferenceObjectAsset_t1CCE48A98E8094085A1E7972AB5B3B9FAC93AA77), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2664[2] =
{
ARReferenceObjectAsset_t1CCE48A98E8094085A1E7972AB5B3B9FAC93AA77::get_offset_of_objectName_4(),
ARReferenceObjectAsset_t1CCE48A98E8094085A1E7972AB5B3B9FAC93AA77::get_offset_of_referenceObject_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2665;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2665 = { sizeof (ARReferenceObjectsSetAsset_t0CF5B17AAFFE42A9741BCD5431117FDD025D334E), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2665[2] =
{
ARReferenceObjectsSetAsset_t0CF5B17AAFFE42A9741BCD5431117FDD025D334E::get_offset_of_resourceGroupName_4(),
ARReferenceObjectsSetAsset_t0CF5B17AAFFE42A9741BCD5431117FDD025D334E::get_offset_of_referenceObjectAssets_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2666;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2666 = { sizeof (AR3DOFCameraManager_t63FD3A6AF75537FF46A270BB4A22AA945670D9AD), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2666[3] =
{
AR3DOFCameraManager_t63FD3A6AF75537FF46A270BB4A22AA945670D9AD::get_offset_of_m_camera_4(),
AR3DOFCameraManager_t63FD3A6AF75537FF46A270BB4A22AA945670D9AD::get_offset_of_m_session_5(),
AR3DOFCameraManager_t63FD3A6AF75537FF46A270BB4A22AA945670D9AD::get_offset_of_savedClearMaterial_6(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2667;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2667 = { sizeof (ARKitPlaneMeshRender_tD9D84044808EBC829FDC337422CE6AC0045F5F22), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2667[3] =
{
ARKitPlaneMeshRender_tD9D84044808EBC829FDC337422CE6AC0045F5F22::get_offset_of_meshFilter_4(),
ARKitPlaneMeshRender_tD9D84044808EBC829FDC337422CE6AC0045F5F22::get_offset_of_lineRenderer_5(),
ARKitPlaneMeshRender_tD9D84044808EBC829FDC337422CE6AC0045F5F22::get_offset_of_planeMesh_6(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2668;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2668 = { sizeof (DontDestroyOnLoad_tCF8745CD6B27861A6F9BBA0C26C7DC26D1183CBA), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2669;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2669 = { sizeof (PointCloudParticleExample_t3855DEE2C4FAF81FA644A23E5145312CB571DC5B), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2669[7] =
{
PointCloudParticleExample_t3855DEE2C4FAF81FA644A23E5145312CB571DC5B::get_offset_of_pointCloudParticlePrefab_4(),
PointCloudParticleExample_t3855DEE2C4FAF81FA644A23E5145312CB571DC5B::get_offset_of_maxPointsToShow_5(),
PointCloudParticleExample_t3855DEE2C4FAF81FA644A23E5145312CB571DC5B::get_offset_of_particleSize_6(),
PointCloudParticleExample_t3855DEE2C4FAF81FA644A23E5145312CB571DC5B::get_offset_of_m_PointCloudData_7(),
PointCloudParticleExample_t3855DEE2C4FAF81FA644A23E5145312CB571DC5B::get_offset_of_frameUpdated_8(),
PointCloudParticleExample_t3855DEE2C4FAF81FA644A23E5145312CB571DC5B::get_offset_of_currentPS_9(),
PointCloudParticleExample_t3855DEE2C4FAF81FA644A23E5145312CB571DC5B::get_offset_of_particles_10(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2670;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2670 = { sizeof (UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2670[13] =
{
UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51::get_offset_of_m_camera_4(),
UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51::get_offset_of_m_session_5(),
UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51::get_offset_of_savedClearMaterial_6(),
UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51::get_offset_of_startAlignment_7(),
UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51::get_offset_of_planeDetection_8(),
UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51::get_offset_of_getPointCloud_9(),
UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51::get_offset_of_enableLightEstimation_10(),
UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51::get_offset_of_enableAutoFocus_11(),
UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51::get_offset_of_environmentTexturing_12(),
UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51::get_offset_of_detectionImages_13(),
UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51::get_offset_of_maximumNumberOfTrackedImages_14(),
UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51::get_offset_of_detectionObjects_15(),
UnityARCameraManager_t96535CA92E04F266EF339990CAD77E0D6E93EC51::get_offset_of_sessionStarted_16(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2671;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2671 = { sizeof (UnityARCameraNearFar_t36A16944DBC0AEFD79F0238436594087B013A924), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2671[3] =
{
UnityARCameraNearFar_t36A16944DBC0AEFD79F0238436594087B013A924::get_offset_of_attachedCamera_4(),
UnityARCameraNearFar_t36A16944DBC0AEFD79F0238436594087B013A924::get_offset_of_currentNearZ_5(),
UnityARCameraNearFar_t36A16944DBC0AEFD79F0238436594087B013A924::get_offset_of_currentFarZ_6(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2672;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2672 = { sizeof (UnityARKitLightManager_t0BD96F94177CD7C880F29E532107434146A99452), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2672[2] =
{
UnityARKitLightManager_t0BD96F94177CD7C880F29E532107434146A99452::get_offset_of_lightsInScene_4(),
UnityARKitLightManager_t0BD96F94177CD7C880F29E532107434146A99452::get_offset_of_shl_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2673;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2673 = { sizeof (UnityPointCloudExample_t4930D5B5791439A468257532D992AAAAA9139FA3), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2673[4] =
{
UnityPointCloudExample_t4930D5B5791439A468257532D992AAAAA9139FA3::get_offset_of_numPointsToShow_4(),
UnityPointCloudExample_t4930D5B5791439A468257532D992AAAAA9139FA3::get_offset_of_PointCloudPrefab_5(),
UnityPointCloudExample_t4930D5B5791439A468257532D992AAAAA9139FA3::get_offset_of_pointCloudObjects_6(),
UnityPointCloudExample_t4930D5B5791439A468257532D992AAAAA9139FA3::get_offset_of_m_PointCloudData_7(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2674;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2674 = { sizeof (UnityARKitPluginSettings_t5D739DA8A1B9154D5B31405D268B68D2B27A243D), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2674[2] =
{
UnityARKitPluginSettings_t5D739DA8A1B9154D5B31405D268B68D2B27A243D::get_offset_of_m_ARKitUsesFacetracking_4(),
UnityARKitPluginSettings_t5D739DA8A1B9154D5B31405D268B68D2B27A243D::get_offset_of_AppRequiresARKit_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2675;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2675 = { 0, 0, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2675[2] =
{
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2676;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2676 = { 0, 0, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2676[2] =
{
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2677;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2677 = { sizeof (BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2677[11] =
{
BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A::get_offset_of_m_HandleRect_20(),
BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A::get_offset_of_m_MinValue_21(),
BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A::get_offset_of_m_MaxValue_22(),
BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A::get_offset_of_m_WholeNumbers_23(),
BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A::get_offset_of_m_Value_24(),
BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A::get_offset_of_m_ValueY_25(),
BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A::get_offset_of_m_OnValueChanged_26(),
BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A::get_offset_of_m_HandleTransform_27(),
BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A::get_offset_of_m_HandleContainerRect_28(),
BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A::get_offset_of_m_Offset_29(),
BoxSlider_tA8560E79728DA37948F4B2D37D7CC790511E407A::get_offset_of_m_Tracker_30(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2678;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2678 = { sizeof (Direction_t64CC02CD1E11206C3C6C3C0FEBA043EFA2C3D595)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2678[5] =
{
Direction_t64CC02CD1E11206C3C6C3C0FEBA043EFA2C3D595::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2679;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2679 = { sizeof (BoxSliderEvent_t2E59E1AD1FFFC4D521C2865063F16C634BF59706), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2680;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2680 = { sizeof (Axis_t067A18AAFF0A8B11D5C9EC525D621254E8C7F481)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2680[3] =
{
Axis_t067A18AAFF0A8B11D5C9EC525D621254E8C7F481::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2681;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2681 = { sizeof (CompressionHelper_t2EB33E7F1413E11C0E84A16F96850743F614D7E7), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2682;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2682 = { sizeof (ConnectionMessageIds_tB952AE377287A0C0EDD96831DADAF2F99223B5FC), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2683;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2683 = { sizeof (SubMessageIds_t45AEDFFAD0E571ADFE6E8F31B2F23EA204C86288), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2684;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2684 = { sizeof (ConnectToEditor_t8AF91172E7A2EF41FB9994B997C7ADA97C0FF5B3), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2684[4] =
{
ConnectToEditor_t8AF91172E7A2EF41FB9994B997C7ADA97C0FF5B3::get_offset_of_playerConnection_4(),
ConnectToEditor_t8AF91172E7A2EF41FB9994B997C7ADA97C0FF5B3::get_offset_of_m_session_5(),
ConnectToEditor_t8AF91172E7A2EF41FB9994B997C7ADA97C0FF5B3::get_offset_of_editorID_6(),
ConnectToEditor_t8AF91172E7A2EF41FB9994B997C7ADA97C0FF5B3::get_offset_of_frameBufferTex_7(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2685;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2685 = { sizeof (EditorHitTest_tD4965DAA6C96EC395614781A25515C37E7601EE7), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2685[3] =
{
EditorHitTest_tD4965DAA6C96EC395614781A25515C37E7601EE7::get_offset_of_m_HitTransform_4(),
EditorHitTest_tD4965DAA6C96EC395614781A25515C37E7601EE7::get_offset_of_maxRayDistance_5(),
EditorHitTest_tD4965DAA6C96EC395614781A25515C37E7601EE7::get_offset_of_collisionLayerMask_6(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2686;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2686 = { sizeof (UnityRemoteVideo_tE1B5CC24F1490A2E00A8213CF27EE54DD7488222), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2686[10] =
{
UnityRemoteVideo_tE1B5CC24F1490A2E00A8213CF27EE54DD7488222::get_offset_of_connectToEditor_4(),
UnityRemoteVideo_tE1B5CC24F1490A2E00A8213CF27EE54DD7488222::get_offset_of_m_Session_5(),
UnityRemoteVideo_tE1B5CC24F1490A2E00A8213CF27EE54DD7488222::get_offset_of_bTexturesInitialized_6(),
UnityRemoteVideo_tE1B5CC24F1490A2E00A8213CF27EE54DD7488222::get_offset_of_currentFrameIndex_7(),
UnityRemoteVideo_tE1B5CC24F1490A2E00A8213CF27EE54DD7488222::get_offset_of_m_textureYBytes_8(),
UnityRemoteVideo_tE1B5CC24F1490A2E00A8213CF27EE54DD7488222::get_offset_of_m_textureUVBytes_9(),
UnityRemoteVideo_tE1B5CC24F1490A2E00A8213CF27EE54DD7488222::get_offset_of_m_textureYBytes2_10(),
UnityRemoteVideo_tE1B5CC24F1490A2E00A8213CF27EE54DD7488222::get_offset_of_m_textureUVBytes2_11(),
UnityRemoteVideo_tE1B5CC24F1490A2E00A8213CF27EE54DD7488222::get_offset_of_m_pinnedYArray_12(),
UnityRemoteVideo_tE1B5CC24F1490A2E00A8213CF27EE54DD7488222::get_offset_of_m_pinnedUVArray_13(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2687;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2687 = { sizeof (PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2687[21] =
{
PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88::get_offset_of_m_Top_4(),
PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88::get_offset_of_m_Bottom_5(),
PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88::get_offset_of_m_Left_6(),
PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88::get_offset_of_m_Right_7(),
PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88::get_offset_of_m_Back_8(),
PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88::get_offset_of_m_Front_9(),
PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88::get_offset_of_m_UnselectedMaterial_10(),
PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88::get_offset_of_m_SelectedMaterial_11(),
PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88::get_offset_of_m_PhysicsHit_12(),
PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88::get_offset_of_m_ARHit_13(),
PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88::get_offset_of_m_BeganFacePosition_14(),
PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88::get_offset_of_m_LastHitType_15(),
PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88::get_offset_of_m_InitialPinchDistance_16(),
PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88::get_offset_of_m_InitialPinchBounds_17(),
0,
0,
0,
0,
PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88::get_offset_of_m_TurnAngleDelta_22(),
PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88::get_offset_of_m_PinchDistanceDelta_23(),
PickBoundingBox_tCBFAB400F166340E697AA9F355488ED08B18DE88::get_offset_of_m_PinchDistance_24(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2688;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2688 = { sizeof (HitType_t2FBB88E2877587CB4CB557811E924007CFCFCCEB)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2688[5] =
{
HitType_t2FBB88E2877587CB4CB557811E924007CFCFCCEB::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2689;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2689 = { sizeof (PrintBounds_tDB319B006CCF9F5B3E5B1B643619B511BA677339), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2689[2] =
{
PrintBounds_tDB319B006CCF9F5B3E5B1B643619B511BA677339::get_offset_of_m_Picker_4(),
PrintBounds_tDB319B006CCF9F5B3E5B1B643619B511BA677339::get_offset_of_m_BoundsText_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2690;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2690 = { sizeof (ARResourceGroupInfo_tEF9D20BC3A4092E969FE01D1A65E013F8CA00038), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2690[2] =
{
ARResourceGroupInfo_tEF9D20BC3A4092E969FE01D1A65E013F8CA00038::get_offset_of_version_0(),
ARResourceGroupInfo_tEF9D20BC3A4092E969FE01D1A65E013F8CA00038::get_offset_of_author_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2691;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2691 = { sizeof (ARResourceGroupResource_t09C96E9644EE5B85A92D15A6FA065211C957CD3E), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2691[1] =
{
ARResourceGroupResource_t09C96E9644EE5B85A92D15A6FA065211C957CD3E::get_offset_of_filename_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2692;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2692 = { sizeof (ARResourceGroupContents_t73146F8D0ED3370BD2423316DA11217FCC3F9F1B), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2692[2] =
{
ARResourceGroupContents_t73146F8D0ED3370BD2423316DA11217FCC3F9F1B::get_offset_of_info_0(),
ARResourceGroupContents_t73146F8D0ED3370BD2423316DA11217FCC3F9F1B::get_offset_of_resources_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2693;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2693 = { sizeof (ARResourceInfo_tCF902105706041249FF478B3AF159B23EA72549A), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2693[2] =
{
ARResourceInfo_tCF902105706041249FF478B3AF159B23EA72549A::get_offset_of_version_0(),
ARResourceInfo_tCF902105706041249FF478B3AF159B23EA72549A::get_offset_of_author_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2694;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2694 = { sizeof (ARResourceProperties_t34B02345591C52ECDF193727175869AC15000190), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2694[1] =
{
ARResourceProperties_t34B02345591C52ECDF193727175869AC15000190::get_offset_of_width_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2695;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2695 = { sizeof (ARResourceFilename_tC94043F3012ADB6F7EBC8C0C62322CCB628C3167), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2695[2] =
{
ARResourceFilename_tC94043F3012ADB6F7EBC8C0C62322CCB628C3167::get_offset_of_idiom_0(),
ARResourceFilename_tC94043F3012ADB6F7EBC8C0C62322CCB628C3167::get_offset_of_filename_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2696;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2696 = { sizeof (ARResourceContents_tFA9E34C3F7BEC8563EE6B2ED89472E81E4C11440), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2696[3] =
{
ARResourceContents_tFA9E34C3F7BEC8563EE6B2ED89472E81E4C11440::get_offset_of_images_0(),
ARResourceContents_tFA9E34C3F7BEC8563EE6B2ED89472E81E4C11440::get_offset_of_info_1(),
ARResourceContents_tFA9E34C3F7BEC8563EE6B2ED89472E81E4C11440::get_offset_of_properties_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2697;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2697 = { sizeof (ARReferenceObjectResourceContents_tCDCC2FCEAE90A42DFBFB0F1D46EB325E4662F9F8), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2697[3] =
{
ARReferenceObjectResourceContents_tCDCC2FCEAE90A42DFBFB0F1D46EB325E4662F9F8::get_offset_of_objects_0(),
ARReferenceObjectResourceContents_tCDCC2FCEAE90A42DFBFB0F1D46EB325E4662F9F8::get_offset_of_info_1(),
ARReferenceObjectResourceContents_tCDCC2FCEAE90A42DFBFB0F1D46EB325E4662F9F8::get_offset_of_referenceObjectName_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2698;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2698 = { sizeof (ARPlaneAnchorGameObject_tE860297A08C63D6BF75F3FB9ABA85475A01DEE91), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2698[2] =
{
ARPlaneAnchorGameObject_tE860297A08C63D6BF75F3FB9ABA85475A01DEE91::get_offset_of_gameObject_0(),
ARPlaneAnchorGameObject_tE860297A08C63D6BF75F3FB9ABA85475A01DEE91::get_offset_of_planeAnchor_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2699;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2699 = { sizeof (UnityARAmbient_t6F2A59B2D876AF26323445A2A980777C7E4A67FE), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2699[1] =
{
UnityARAmbient_t6F2A59B2D876AF26323445A2A980777C7E4A67FE::get_offset_of_l_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2700;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2700 = { sizeof (UnityARAnchorManager_tFB8F7E0CB2E8D2A3ED3958659A018DB531A21CD2), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2700[1] =
{
UnityARAnchorManager_tFB8F7E0CB2E8D2A3ED3958659A018DB531A21CD2::get_offset_of_planeAnchorMap_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2701;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2701 = { sizeof (UnityARGeneratePlane_tC95BF31D5A777A98B6C9D24443D46DB44A80140C), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2701[2] =
{
UnityARGeneratePlane_tC95BF31D5A777A98B6C9D24443D46DB44A80140C::get_offset_of_planePrefab_4(),
UnityARGeneratePlane_tC95BF31D5A777A98B6C9D24443D46DB44A80140C::get_offset_of_unityARAnchorManager_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2702;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2702 = { sizeof (UnityARHitTestExample_t34E807E80DD74701E66B4C0099CEC2EDEF01EAA2), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2702[3] =
{
UnityARHitTestExample_t34E807E80DD74701E66B4C0099CEC2EDEF01EAA2::get_offset_of_m_HitTransform_4(),
UnityARHitTestExample_t34E807E80DD74701E66B4C0099CEC2EDEF01EAA2::get_offset_of_maxRayDistance_5(),
UnityARHitTestExample_t34E807E80DD74701E66B4C0099CEC2EDEF01EAA2::get_offset_of_collisionLayer_6(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2703;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2703 = { sizeof (UnityARKitControl_tF68589BCAD67635FEC0383FB50E4F272EE5775FF), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2703[6] =
{
UnityARKitControl_tF68589BCAD67635FEC0383FB50E4F272EE5775FF::get_offset_of_runOptions_4(),
UnityARKitControl_tF68589BCAD67635FEC0383FB50E4F272EE5775FF::get_offset_of_alignmentOptions_5(),
UnityARKitControl_tF68589BCAD67635FEC0383FB50E4F272EE5775FF::get_offset_of_planeOptions_6(),
UnityARKitControl_tF68589BCAD67635FEC0383FB50E4F272EE5775FF::get_offset_of_currentOptionIndex_7(),
UnityARKitControl_tF68589BCAD67635FEC0383FB50E4F272EE5775FF::get_offset_of_currentAlignmentIndex_8(),
UnityARKitControl_tF68589BCAD67635FEC0383FB50E4F272EE5775FF::get_offset_of_currentPlaneIndex_9(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2704;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2704 = { sizeof (UnityARMatrixOps_t30833E5304F980F26311A1E5A31BC15B6F8D467E), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2705;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2705 = { sizeof (UnityARUserAnchorComponent_t6D613E3AEE03300CD9F06DF64E4AAA31CB80C42A), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2705[1] =
{
UnityARUserAnchorComponent_t6D613E3AEE03300CD9F06DF64E4AAA31CB80C42A::get_offset_of_m_AnchorId_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2706;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2706 = { sizeof (UnityARUtility_tC499C2F6B6E8087861555C0B78963033747408D1), -1, sizeof(UnityARUtility_tC499C2F6B6E8087861555C0B78963033747408D1_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2706[3] =
{
UnityARUtility_tC499C2F6B6E8087861555C0B78963033747408D1::get_offset_of_meshCollider_0(),
UnityARUtility_tC499C2F6B6E8087861555C0B78963033747408D1::get_offset_of_meshFilter_1(),
UnityARUtility_tC499C2F6B6E8087861555C0B78963033747408D1_StaticFields::get_offset_of_planePrefab_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2707;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2707 = { sizeof (UnityARVideo_t0D8EA0D1C2EC6A3A08F800187EA24F81B0587845), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2707[6] =
{
UnityARVideo_t0D8EA0D1C2EC6A3A08F800187EA24F81B0587845::get_offset_of_m_ClearMaterial_4(),
UnityARVideo_t0D8EA0D1C2EC6A3A08F800187EA24F81B0587845::get_offset_of_m_VideoCommandBuffer_5(),
UnityARVideo_t0D8EA0D1C2EC6A3A08F800187EA24F81B0587845::get_offset_of__videoTextureY_6(),
UnityARVideo_t0D8EA0D1C2EC6A3A08F800187EA24F81B0587845::get_offset_of__videoTextureCbCr_7(),
UnityARVideo_t0D8EA0D1C2EC6A3A08F800187EA24F81B0587845::get_offset_of__displayTransform_8(),
UnityARVideo_t0D8EA0D1C2EC6A3A08F800187EA24F81B0587845::get_offset_of_bCommandBufferInitialized_9(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2708;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2708 = { sizeof (ARAnchor_tB85958164FF99E5968B9E879D53746304F70CA79)+ sizeof (RuntimeObject), sizeof(ARAnchor_tB85958164FF99E5968B9E879D53746304F70CA79_marshaled_pinvoke), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2708[2] =
{
ARAnchor_tB85958164FF99E5968B9E879D53746304F70CA79::get_offset_of_identifier_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARAnchor_tB85958164FF99E5968B9E879D53746304F70CA79::get_offset_of_transform_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2709;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2709 = { sizeof (ARCamera_t1B74DF09B6BC55080382921442125103F2140D46)+ sizeof (RuntimeObject), sizeof(ARCamera_t1B74DF09B6BC55080382921442125103F2140D46 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2709[7] =
{
ARCamera_t1B74DF09B6BC55080382921442125103F2140D46::get_offset_of_worldTransform_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARCamera_t1B74DF09B6BC55080382921442125103F2140D46::get_offset_of_eulerAngles_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARCamera_t1B74DF09B6BC55080382921442125103F2140D46::get_offset_of_trackingQuality_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARCamera_t1B74DF09B6BC55080382921442125103F2140D46::get_offset_of_intrinsics_row1_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARCamera_t1B74DF09B6BC55080382921442125103F2140D46::get_offset_of_intrinsics_row2_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARCamera_t1B74DF09B6BC55080382921442125103F2140D46::get_offset_of_intrinsics_row3_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARCamera_t1B74DF09B6BC55080382921442125103F2140D46::get_offset_of_imageResolution_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2710;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2710 = { sizeof (UnityAREnvironmentTexturing_tBDFAE61111F5224E58F7445C52AA83ABD7AFFE38)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2710[4] =
{
UnityAREnvironmentTexturing_tBDFAE61111F5224E58F7445C52AA83ABD7AFFE38::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2711;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2711 = { sizeof (UnityAREnvironmentTextureFormat_t07FF6BFA0EC9E3AA27514C2BD1C6FE64DF8B13BA)+ sizeof (RuntimeObject), sizeof(int64_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2711[8] =
{
UnityAREnvironmentTextureFormat_t07FF6BFA0EC9E3AA27514C2BD1C6FE64DF8B13BA::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2712;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2712 = { sizeof (UnityAREnvironmentProbeCubemapData_tAAC438F3F93347041F96A3D34421514C235CA98D)+ sizeof (RuntimeObject), sizeof(UnityAREnvironmentProbeCubemapData_tAAC438F3F93347041F96A3D34421514C235CA98D ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2712[5] =
{
UnityAREnvironmentProbeCubemapData_tAAC438F3F93347041F96A3D34421514C235CA98D::get_offset_of_cubemapPtr_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityAREnvironmentProbeCubemapData_tAAC438F3F93347041F96A3D34421514C235CA98D::get_offset_of_textureFormat_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityAREnvironmentProbeCubemapData_tAAC438F3F93347041F96A3D34421514C235CA98D::get_offset_of_width_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityAREnvironmentProbeCubemapData_tAAC438F3F93347041F96A3D34421514C235CA98D::get_offset_of_height_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityAREnvironmentProbeCubemapData_tAAC438F3F93347041F96A3D34421514C235CA98D::get_offset_of_mipmapCount_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2713;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2713 = { sizeof (UnityAREnvironmentProbeAnchorData_t211BF2642A51D3E86257F22D2E305F2DBE8FA649)+ sizeof (RuntimeObject), sizeof(UnityAREnvironmentProbeAnchorData_t211BF2642A51D3E86257F22D2E305F2DBE8FA649 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2713[4] =
{
UnityAREnvironmentProbeAnchorData_t211BF2642A51D3E86257F22D2E305F2DBE8FA649::get_offset_of_ptrIdentifier_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityAREnvironmentProbeAnchorData_t211BF2642A51D3E86257F22D2E305F2DBE8FA649::get_offset_of_transform_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityAREnvironmentProbeAnchorData_t211BF2642A51D3E86257F22D2E305F2DBE8FA649::get_offset_of_cubemapData_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityAREnvironmentProbeAnchorData_t211BF2642A51D3E86257F22D2E305F2DBE8FA649::get_offset_of_probeExtent_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2714;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2714 = { sizeof (UnityAREnvironmentProbeCubemapDataMethods_tAE9F72B54B0A19E8D7D4CCFD4D3E6F0563DCE722), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2715;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2715 = { sizeof (AREnvironmentProbeAnchor_t068D62ED76D2BE71CA4F4806034043077EE33E69), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2715[1] =
{
AREnvironmentProbeAnchor_t068D62ED76D2BE71CA4F4806034043077EE33E69::get_offset_of_envProbeAnchorData_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2716;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2716 = { sizeof (UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760), -1, sizeof(UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2716[28] =
{
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_AREnvironmentProbeAnchorAddedEvent_0(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_AREnvironmentProbeAnchorUpdatedEvent_1(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_AREnvironmentProbeAnchorRemovedEvent_2(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_ARObjectAnchorAddedEvent_3(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_ARObjectAnchorUpdatedEvent_4(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_ARObjectAnchorRemovedEvent_5(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_ARFrameUpdatedEvent_6(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_ARAnchorAddedEvent_7(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_ARAnchorUpdatedEvent_8(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_ARAnchorRemovedEvent_9(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_ARUserAnchorAddedEvent_10(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_ARUserAnchorUpdatedEvent_11(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_ARUserAnchorRemovedEvent_12(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_ARFaceAnchorAddedEvent_13(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_ARFaceAnchorUpdatedEvent_14(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_ARFaceAnchorRemovedEvent_15(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_ARImageAnchorAddedEvent_16(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_ARImageAnchorUpdatedEvent_17(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_ARImageAnchorRemovedEvent_18(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_ARSessionFailedEvent_19(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_ARSessionInterruptedEvent_20(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_ARSessioninterruptionEndedEvent_21(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_ARSessionTrackingChangedEvent_22(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_U3CARSessionShouldAttemptRelocalizationU3Ek__BackingField_23(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_s_Camera_24(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760::get_offset_of_m_NativeARSession_25(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_s_UnityARSessionNativeInterface_26(),
UnityARSessionNativeInterface_t2B98848E3007C1EB61DE6B168237EA7D57880760_StaticFields::get_offset_of_arFaceAnchor_27(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2717;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2717 = { sizeof (AREnvironmentProbeAnchorAdded_t352A2C6AEBFEFAF9FFC8E717E49036E7A2DB4E00), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2718;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2718 = { sizeof (AREnvironmentProbeAnchorUpdated_t2649997F4BDBFDD212BD08787EA6B37DA6C4D9FE), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2719;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2719 = { sizeof (AREnvironmentProbeAnchorRemoved_t3B32E5CFAC64DF8A23DB054842E6A67B21CCEB4F), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2720;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2720 = { sizeof (internal_AREnvironmentProbeAnchorAdded_t2F1E9546957E37FA1E2E96C6913D6A30D891A99B), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2721;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2721 = { sizeof (internal_AREnvironmentProbeAnchorUpdated_t2A2DF32F4A41BB38306453DE0C07EA0B5AEF7E6B), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2722;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2722 = { sizeof (internal_AREnvironmentProbeAnchorRemoved_tF4ABE9DABC0E03D49F796903B992EE7D03174AC6), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2723;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2723 = { sizeof (ARObjectAnchorAdded_t44787F4D7B17D8D9D220C99ECB644F34E8DFF41C), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2724;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2724 = { sizeof (ARObjectAnchorUpdated_tECD9813AEC4C3F1B751595D3C48DA59F8105C88D), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2725;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2725 = { sizeof (ARObjectAnchorRemoved_t7365DB46860AE9393ABBD80691D81F38FA5A41B6), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2726;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2726 = { sizeof (internal_ARObjectAnchorAdded_t8278ED68EC72D7FEF7F105F7B88A1C09DAC51F6C), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2727;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2727 = { sizeof (internal_ARObjectAnchorUpdated_t78B539EDDDBD4893BA203BE94D614F5533C1AC2A), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2728;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2728 = { sizeof (internal_ARObjectAnchorRemoved_t4E91BA2E6F6BCC06200105C98976EF456A65C9E0), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2729;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2729 = { sizeof (ARFrameUpdate_t8A1092923CD7B733CB1B71B1EA5BC85B017E7A67), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2730;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2730 = { sizeof (ARAnchorAdded_t6277A20DBBA2E63B85B55B429C008406053F7523), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2731;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2731 = { sizeof (ARAnchorUpdated_tE476B1348DE6CE5FA8935A67EA790CC3BB99D151), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2732;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2732 = { sizeof (ARAnchorRemoved_t13C2AF3BC2C3615FCECA1B2705B7874CC4B0D584), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2733;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2733 = { sizeof (ARUserAnchorAdded_tCBF6BB842498500A7E02669D8A22995FCD3F58A8), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2734;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2734 = { sizeof (ARUserAnchorUpdated_tAB2AC251FF9E7CA5179BEF03D3E46C929A86DC1F), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2735;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2735 = { sizeof (ARUserAnchorRemoved_tD5C26EFD62DE28608B965D94537FD66C5D914411), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2736;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2736 = { sizeof (ARFaceAnchorAdded_t219D3D70464F8BB12D6A399E8064715E168A8EF8), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2737;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2737 = { sizeof (ARFaceAnchorUpdated_tDCA0EF503312CB7AE89357A3FD5529FF55CC6C35), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2738;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2738 = { sizeof (ARFaceAnchorRemoved_t0077E6ADE5395C6F773A98EB147FDD18B2D09E0C), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2739;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2739 = { sizeof (ARImageAnchorAdded_t71A8F5EF09FE7FFD5FFA8E35FE2409FE59893A44), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2740;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2740 = { sizeof (ARImageAnchorUpdated_t552C60653C0710AD7312589A16E6E8B4F00CE036), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2741;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2741 = { sizeof (ARImageAnchorRemoved_t55233D152AF70F8970D7F4598DADE918A99C82B2), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2742;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2742 = { sizeof (ARSessionFailed_tA00FB2F831AFF99EBDFAC43C61499421BDF9BE00), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2743;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2743 = { sizeof (ARSessionCallback_t309401D5599524DA96703ADFE0AC1702928C7151), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2744;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2744 = { sizeof (ARSessionLocalizeCallback_t639D87EE7A908EF8C7CF864CC81418DC25C1ADA1), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2745;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2745 = { sizeof (ARSessionTrackingChanged_t7D0F492F6B75A165F790A69F3F1ED307E00B1AB2), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2746;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2746 = { sizeof (internal_ARFrameUpdate_t2B76D688F1867F73D929D7E32287BA21150A8061), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2747;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2747 = { sizeof (internal_ARAnchorAdded_t1DC1BFE366457201FF10F3397AFF538774102CE2), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2748;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2748 = { sizeof (internal_ARAnchorUpdated_tFB1A275B5116DBED3E3D0B1D5BB61063F76B6A75), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2749;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2749 = { sizeof (internal_ARAnchorRemoved_t3B0017FC7404A4D953C19A81B92B674C88AC69B5), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2750;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2750 = { sizeof (internal_ARUserAnchorAdded_tA6FEAC716383C82FFBA1EE103C6D886F0FF36328), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2751;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2751 = { sizeof (internal_ARUserAnchorUpdated_t5879DD34C76E50F20701BECA2A05680D1CDE15E9), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2752;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2752 = { sizeof (internal_ARUserAnchorRemoved_t35E6F1259D940FFE1325AF4346824A5DCDA7F3F2), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2753;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2753 = { sizeof (internal_ARFaceAnchorAdded_t365B295C359AEBAC2AAD8013E00C02BC75F63807), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2754;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2754 = { sizeof (internal_ARFaceAnchorUpdated_tBE8086BE58C775CF9E9E47D822BCCCB18453737A), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2755;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2755 = { sizeof (internal_ARFaceAnchorRemoved_tAD4C751D5D11D8A4B5C0118226E5CD33F1835873), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2756;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2756 = { sizeof (internal_ARImageAnchorAdded_t7F4E10B8127B30BA2B4BBB2602385E8AE2288958), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2757;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2757 = { sizeof (internal_ARImageAnchorUpdated_t9BAA541A1BDBB1623354CB38D224A742FDC3CF32), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2758;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2758 = { sizeof (internal_ARImageAnchorRemoved_t022F3C662F10FCD6E655761503138602FD34A28C), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2759;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2759 = { sizeof (internal_ARSessionTrackingChanged_tB3DFD71470944D6370E634F337BBF39A5616DD89), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2760;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2760 = { sizeof (ARErrorCode_t6A36694C7D737FAF515B51C632CF7A94600050FB)+ sizeof (RuntimeObject), sizeof(int64_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2760[5] =
{
ARErrorCode_t6A36694C7D737FAF515B51C632CF7A94600050FB::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2761;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2761 = { sizeof (ARBlendShapeLocation_tFC9707588C9A2F1B32DB26D9975BC757B030CD1F), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2761[52] =
{
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2762;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2762 = { sizeof (UnityARFaceGeometry_t15F03281F3361400331718DF03DF7DA0DD5501E5)+ sizeof (RuntimeObject), sizeof(UnityARFaceGeometry_t15F03281F3361400331718DF03DF7DA0DD5501E5 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2762[6] =
{
UnityARFaceGeometry_t15F03281F3361400331718DF03DF7DA0DD5501E5::get_offset_of_vertexCount_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARFaceGeometry_t15F03281F3361400331718DF03DF7DA0DD5501E5::get_offset_of_vertices_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARFaceGeometry_t15F03281F3361400331718DF03DF7DA0DD5501E5::get_offset_of_textureCoordinateCount_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARFaceGeometry_t15F03281F3361400331718DF03DF7DA0DD5501E5::get_offset_of_textureCoordinates_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARFaceGeometry_t15F03281F3361400331718DF03DF7DA0DD5501E5::get_offset_of_triangleCount_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARFaceGeometry_t15F03281F3361400331718DF03DF7DA0DD5501E5::get_offset_of_triangleIndices_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2763;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2763 = { sizeof (UnityARFaceAnchorData_t3A457F763D64A6BE658018C01B8B4DACA73E87C1)+ sizeof (RuntimeObject), sizeof(UnityARFaceAnchorData_t3A457F763D64A6BE658018C01B8B4DACA73E87C1_marshaled_pinvoke), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2763[8] =
{
UnityARFaceAnchorData_t3A457F763D64A6BE658018C01B8B4DACA73E87C1::get_offset_of_ptrIdentifier_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARFaceAnchorData_t3A457F763D64A6BE658018C01B8B4DACA73E87C1::get_offset_of_transform_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARFaceAnchorData_t3A457F763D64A6BE658018C01B8B4DACA73E87C1::get_offset_of_faceGeometry_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARFaceAnchorData_t3A457F763D64A6BE658018C01B8B4DACA73E87C1::get_offset_of_blendShapes_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARFaceAnchorData_t3A457F763D64A6BE658018C01B8B4DACA73E87C1::get_offset_of_leftEyeTransform_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARFaceAnchorData_t3A457F763D64A6BE658018C01B8B4DACA73E87C1::get_offset_of_rightEyeTransform_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARFaceAnchorData_t3A457F763D64A6BE658018C01B8B4DACA73E87C1::get_offset_of_lookAtPoint_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARFaceAnchorData_t3A457F763D64A6BE658018C01B8B4DACA73E87C1::get_offset_of_isTracked_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2764;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2764 = { sizeof (ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2764[13] =
{
ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2::get_offset_of_U3CuFaceGeometryU3Ek__BackingField_0(),
ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2::get_offset_of_m_Vertices_1(),
ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2::get_offset_of_m_TextureCoordinates_2(),
ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2::get_offset_of_m_TriangleIndices_3(),
ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2::get_offset_of_m_WorkVertices_4(),
ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2::get_offset_of_m_WorkTextureCoordinates_5(),
ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2::get_offset_of_m_WorkIndices_6(),
ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2::get_offset_of_m_VertexCount_7(),
ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2::get_offset_of_m_TextureCoordinateCount_8(),
ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2::get_offset_of_m_TriangleCount_9(),
ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2::get_offset_of_m_IndexCount_10(),
ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2::get_offset_of_m_WorkVertexCount_11(),
ARFaceGeometry_tBCE2A1A16F8D61FBD6765DF68E14356F748B0AE2::get_offset_of_m_WorkTextureCoordinateCount_12(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2765;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2765 = { sizeof (ARFaceAnchor_tFD943197F892D93FB7E2C8F7B8BDAABE62714AC6), -1, sizeof(ARFaceAnchor_tFD943197F892D93FB7E2C8F7B8BDAABE62714AC6_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2765[3] =
{
ARFaceAnchor_tFD943197F892D93FB7E2C8F7B8BDAABE62714AC6::get_offset_of_faceAnchorData_0(),
ARFaceAnchor_tFD943197F892D93FB7E2C8F7B8BDAABE62714AC6_StaticFields::get_offset_of_blendshapesDictionary_1(),
ARFaceAnchor_tFD943197F892D93FB7E2C8F7B8BDAABE62714AC6::get_offset_of_m_FaceGeometry_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2766;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2766 = { sizeof (DictionaryVisitorHandler_tB4DF9F067684F7ED46A78673D50451E3AD07FB79), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2767;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2767 = { sizeof (ARFrame_t2A3F4327D4C5A7FD1301CFE42BA88D9DB95CD1B7)+ sizeof (RuntimeObject), sizeof(ARFrame_t2A3F4327D4C5A7FD1301CFE42BA88D9DB95CD1B7 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2767[4] =
{
ARFrame_t2A3F4327D4C5A7FD1301CFE42BA88D9DB95CD1B7::get_offset_of_timestamp_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARFrame_t2A3F4327D4C5A7FD1301CFE42BA88D9DB95CD1B7::get_offset_of_capturedImage_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARFrame_t2A3F4327D4C5A7FD1301CFE42BA88D9DB95CD1B7::get_offset_of_camera_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARFrame_t2A3F4327D4C5A7FD1301CFE42BA88D9DB95CD1B7::get_offset_of_lightEstimate_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2768;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2768 = { sizeof (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E)+ sizeof (RuntimeObject), sizeof(ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E_marshaled_pinvoke), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2768[6] =
{
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E::get_offset_of_type_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E::get_offset_of_distance_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E::get_offset_of_localTransform_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E::get_offset_of_worldTransform_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E::get_offset_of_anchorIdentifier_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E::get_offset_of_isValid_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2769;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2769 = { sizeof (ARHitTestResultType_t814937A1EF21002C977A5DD0BB084C31A591EDD2)+ sizeof (RuntimeObject), sizeof(int64_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2769[7] =
{
ARHitTestResultType_t814937A1EF21002C977A5DD0BB084C31A591EDD2::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2770;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2770 = { sizeof (UnityARImageAnchorData_t2EA02386DC32BBCA4A3EB205918BF28F7663B13E)+ sizeof (RuntimeObject), sizeof(UnityARImageAnchorData_t2EA02386DC32BBCA4A3EB205918BF28F7663B13E ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2770[5] =
{
UnityARImageAnchorData_t2EA02386DC32BBCA4A3EB205918BF28F7663B13E::get_offset_of_ptrIdentifier_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARImageAnchorData_t2EA02386DC32BBCA4A3EB205918BF28F7663B13E::get_offset_of_transform_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARImageAnchorData_t2EA02386DC32BBCA4A3EB205918BF28F7663B13E::get_offset_of_referenceImageNamePtr_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARImageAnchorData_t2EA02386DC32BBCA4A3EB205918BF28F7663B13E::get_offset_of_referenceImagePhysicalSize_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARImageAnchorData_t2EA02386DC32BBCA4A3EB205918BF28F7663B13E::get_offset_of_isTracked_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2771;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2771 = { sizeof (ARImageAnchor_tA5DACC4D1B31D4AD6E70B8BC112CBF98AFA68EF6), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2771[1] =
{
ARImageAnchor_tA5DACC4D1B31D4AD6E70B8BC112CBF98AFA68EF6::get_offset_of_imageAnchorData_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2772;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2772 = { sizeof (ARLightEstimate_t1D878D701972E94A36A287385FE1D8E932C05166)+ sizeof (RuntimeObject), sizeof(ARLightEstimate_t1D878D701972E94A36A287385FE1D8E932C05166 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2772[1] =
{
ARLightEstimate_t1D878D701972E94A36A287385FE1D8E932C05166::get_offset_of_ambientIntensity_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2773;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2773 = { sizeof (UnityARLightEstimate_tCC7C13BED276766FF1F846160D0E9A61746B5132)+ sizeof (RuntimeObject), sizeof(UnityARLightEstimate_tCC7C13BED276766FF1F846160D0E9A61746B5132 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2773[2] =
{
UnityARLightEstimate_tCC7C13BED276766FF1F846160D0E9A61746B5132::get_offset_of_ambientIntensity_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARLightEstimate_tCC7C13BED276766FF1F846160D0E9A61746B5132::get_offset_of_ambientColorTemperature_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2774;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2774 = { sizeof (MarshalDirectionalLightEstimate_t7BC98B612AADA17BDB3050D34DE74696570F5760)+ sizeof (RuntimeObject), sizeof(MarshalDirectionalLightEstimate_t7BC98B612AADA17BDB3050D34DE74696570F5760 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2774[2] =
{
MarshalDirectionalLightEstimate_t7BC98B612AADA17BDB3050D34DE74696570F5760::get_offset_of_primaryDirAndIntensity_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
MarshalDirectionalLightEstimate_t7BC98B612AADA17BDB3050D34DE74696570F5760::get_offset_of_sphericalHarmonicCoefficientsPtr_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2775;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2775 = { sizeof (UnityARDirectionalLightEstimate_tF5324C28AA41BAADD17EBBCF55EEC46DC8B43AB9), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2775[3] =
{
UnityARDirectionalLightEstimate_tF5324C28AA41BAADD17EBBCF55EEC46DC8B43AB9::get_offset_of_primaryLightDirection_0(),
UnityARDirectionalLightEstimate_tF5324C28AA41BAADD17EBBCF55EEC46DC8B43AB9::get_offset_of_primaryLightIntensity_1(),
UnityARDirectionalLightEstimate_tF5324C28AA41BAADD17EBBCF55EEC46DC8B43AB9::get_offset_of_sphericalHarmonicsCoefficients_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2776;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2776 = { sizeof (LightDataType_tA5D0C6CF82D21E2FC4D91A139ABEF4A2E4FB3553)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2776[3] =
{
LightDataType_tA5D0C6CF82D21E2FC4D91A139ABEF4A2E4FB3553::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2777;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2777 = { sizeof (UnityMarshalLightData_tF77EE50423BA991FDB1DECDD23E914C3D3928F9C)+ sizeof (RuntimeObject), sizeof(UnityMarshalLightData_tF77EE50423BA991FDB1DECDD23E914C3D3928F9C ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2777[3] =
{
UnityMarshalLightData_tF77EE50423BA991FDB1DECDD23E914C3D3928F9C::get_offset_of_arLightingType_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityMarshalLightData_tF77EE50423BA991FDB1DECDD23E914C3D3928F9C::get_offset_of_arLightEstimate_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityMarshalLightData_tF77EE50423BA991FDB1DECDD23E914C3D3928F9C::get_offset_of_arDirectonalLightEstimate_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2778;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2778 = { sizeof (UnityARLightData_t65CE5E12F3A5F26CF443B38F432BD4CD5CF7B39C)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2778[3] =
{
UnityARLightData_t65CE5E12F3A5F26CF443B38F432BD4CD5CF7B39C::get_offset_of_arLightingType_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARLightData_t65CE5E12F3A5F26CF443B38F432BD4CD5CF7B39C::get_offset_of_arLightEstimate_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARLightData_t65CE5E12F3A5F26CF443B38F432BD4CD5CF7B39C::get_offset_of_arDirectonalLightEstimate_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2779;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2779 = { sizeof (UnityARObjectAnchorData_t0FBFBB46ADB385CAD870834CAB7F892C8E2FEC57)+ sizeof (RuntimeObject), sizeof(UnityARObjectAnchorData_t0FBFBB46ADB385CAD870834CAB7F892C8E2FEC57 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2779[4] =
{
UnityARObjectAnchorData_t0FBFBB46ADB385CAD870834CAB7F892C8E2FEC57::get_offset_of_ptrIdentifier_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARObjectAnchorData_t0FBFBB46ADB385CAD870834CAB7F892C8E2FEC57::get_offset_of_transform_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARObjectAnchorData_t0FBFBB46ADB385CAD870834CAB7F892C8E2FEC57::get_offset_of_referenceObjectNamePtr_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARObjectAnchorData_t0FBFBB46ADB385CAD870834CAB7F892C8E2FEC57::get_offset_of_referenceObjectPtr_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2780;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2780 = { sizeof (ARObjectAnchor_tCA17987C77A04DACBE8323DE90B79D7B7668A8DF), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2780[1] =
{
ARObjectAnchor_tCA17987C77A04DACBE8323DE90B79D7B7668A8DF::get_offset_of_objectAnchorData_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2781;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2781 = { sizeof (UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026)+ sizeof (RuntimeObject), sizeof(UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2781[8] =
{
UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026::get_offset_of_vertexCount_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026::get_offset_of_vertices_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026::get_offset_of_textureCoordinateCount_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026::get_offset_of_textureCoordinates_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026::get_offset_of_triangleCount_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026::get_offset_of_triangleIndices_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026::get_offset_of_boundaryVertexCount_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARPlaneGeometry_t67C6D1B87DC3D305EC3239FF33E783B4FD7BC026::get_offset_of_boundaryVertices_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2782;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2782 = { sizeof (UnityARAnchorData_t1B8580CF3564F44D8BA78ACFCB3E75B897EECB13)+ sizeof (RuntimeObject), sizeof(UnityARAnchorData_t1B8580CF3564F44D8BA78ACFCB3E75B897EECB13 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2782[6] =
{
UnityARAnchorData_t1B8580CF3564F44D8BA78ACFCB3E75B897EECB13::get_offset_of_ptrIdentifier_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARAnchorData_t1B8580CF3564F44D8BA78ACFCB3E75B897EECB13::get_offset_of_transform_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARAnchorData_t1B8580CF3564F44D8BA78ACFCB3E75B897EECB13::get_offset_of_alignment_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARAnchorData_t1B8580CF3564F44D8BA78ACFCB3E75B897EECB13::get_offset_of_center_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARAnchorData_t1B8580CF3564F44D8BA78ACFCB3E75B897EECB13::get_offset_of_extent_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARAnchorData_t1B8580CF3564F44D8BA78ACFCB3E75B897EECB13::get_offset_of_planeGeometry_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2783;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2783 = { sizeof (ARPlaneGeometry_t31A4DDA70BF10DDBB063D2FD148CDCE517B8D75F), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2783[1] =
{
ARPlaneGeometry_t31A4DDA70BF10DDBB063D2FD148CDCE517B8D75F::get_offset_of_uPlaneGeometry_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2784;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2784 = { sizeof (ARPlaneAnchor_t0FFC0A1F23FF68703D127AFF1D9D11BB18EAC189), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2784[2] =
{
ARPlaneAnchor_t0FFC0A1F23FF68703D127AFF1D9D11BB18EAC189::get_offset_of_planeAnchorData_0(),
ARPlaneAnchor_t0FFC0A1F23FF68703D127AFF1D9D11BB18EAC189::get_offset_of_U3CidentifierStrU3Ek__BackingField_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2785;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2785 = { sizeof (ARPlaneAnchorAlignment_t89145CE9B639FC3F45383357FE7914660E1E0E36)+ sizeof (RuntimeObject), sizeof(int64_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2785[3] =
{
ARPlaneAnchorAlignment_t89145CE9B639FC3F45383357FE7914660E1E0E36::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2786;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2786 = { sizeof (ARPoint_t88E48F1C5C439AA12E4F178D93A44F5EA6EB21E2)+ sizeof (RuntimeObject), sizeof(ARPoint_t88E48F1C5C439AA12E4F178D93A44F5EA6EB21E2 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2786[2] =
{
ARPoint_t88E48F1C5C439AA12E4F178D93A44F5EA6EB21E2::get_offset_of_x_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARPoint_t88E48F1C5C439AA12E4F178D93A44F5EA6EB21E2::get_offset_of_y_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2787;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2787 = { sizeof (ARPointCloud_t57E36E6C732B90C48B77D64E9FAE17668784064C), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2787[3] =
{
ARPointCloud_t57E36E6C732B90C48B77D64E9FAE17668784064C::get_offset_of_m_Ptr_0(),
ARPointCloud_t57E36E6C732B90C48B77D64E9FAE17668784064C::get_offset_of_m_Positions_1(),
ARPointCloud_t57E36E6C732B90C48B77D64E9FAE17668784064C::get_offset_of_m_Identifiers_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2788;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2788 = { sizeof (ARRect_t38009530D6E8A8FF69FCC26396C1D8E07EFE15B6)+ sizeof (RuntimeObject), sizeof(ARRect_t38009530D6E8A8FF69FCC26396C1D8E07EFE15B6 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2788[2] =
{
ARRect_t38009530D6E8A8FF69FCC26396C1D8E07EFE15B6::get_offset_of_origin_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARRect_t38009530D6E8A8FF69FCC26396C1D8E07EFE15B6::get_offset_of_size_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2789;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2789 = { sizeof (ARReferenceObject_t24F4DEF53B51730CB8193C9DC6CB2F47E780C6F8), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2789[1] =
{
ARReferenceObject_t24F4DEF53B51730CB8193C9DC6CB2F47E780C6F8::get_offset_of_m_Ptr_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2790;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2790 = { sizeof (ARKitObjectScanningSessionConfiguration_t6779D204B92476DFD7C3A8A16FC50A1E10333D6E)+ sizeof (RuntimeObject), sizeof(ARKitObjectScanningSessionConfiguration_t6779D204B92476DFD7C3A8A16FC50A1E10333D6E_marshaled_pinvoke), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2790[5] =
{
ARKitObjectScanningSessionConfiguration_t6779D204B92476DFD7C3A8A16FC50A1E10333D6E::get_offset_of_alignment_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARKitObjectScanningSessionConfiguration_t6779D204B92476DFD7C3A8A16FC50A1E10333D6E::get_offset_of_planeDetection_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARKitObjectScanningSessionConfiguration_t6779D204B92476DFD7C3A8A16FC50A1E10333D6E::get_offset_of_getPointCloudData_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARKitObjectScanningSessionConfiguration_t6779D204B92476DFD7C3A8A16FC50A1E10333D6E::get_offset_of_enableLightEstimation_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARKitObjectScanningSessionConfiguration_t6779D204B92476DFD7C3A8A16FC50A1E10333D6E::get_offset_of_enableAutoFocus_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2791;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2791 = { sizeof (serializableARReferenceObject_tD817DDAC81CA76AB183C1DAD4FCDD6C45AF34832), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2791[1] =
{
serializableARReferenceObject_tD817DDAC81CA76AB183C1DAD4FCDD6C45AF34832::get_offset_of_arReferenceObjectData_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2792;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2792 = { sizeof (ARSize_t8C8DA70FE8A29C830639F66636C653E0CC5C7FCA)+ sizeof (RuntimeObject), sizeof(ARSize_t8C8DA70FE8A29C830639F66636C653E0CC5C7FCA ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2792[2] =
{
ARSize_t8C8DA70FE8A29C830639F66636C653E0CC5C7FCA::get_offset_of_width_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARSize_t8C8DA70FE8A29C830639F66636C653E0CC5C7FCA::get_offset_of_height_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2793;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2793 = { sizeof (ARTextureHandles_tA5C7ACCAA904CA4A95ED0F5856B44B41171DDBF2), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2793[1] =
{
ARTextureHandles_tA5C7ACCAA904CA4A95ED0F5856B44B41171DDBF2::get_offset_of_m_ARTextureHandlesStruct_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2794;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2794 = { sizeof (ARTextureHandlesStruct_tBAFCB6BA6923FAA96E028E73E87C9FEF1AC661F5)+ sizeof (RuntimeObject), sizeof(ARTextureHandlesStruct_tBAFCB6BA6923FAA96E028E73E87C9FEF1AC661F5 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2794[2] =
{
ARTextureHandlesStruct_tBAFCB6BA6923FAA96E028E73E87C9FEF1AC661F5::get_offset_of_textureY_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARTextureHandlesStruct_tBAFCB6BA6923FAA96E028E73E87C9FEF1AC661F5::get_offset_of_textureCbCr_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2795;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2795 = { sizeof (ARTrackingQuality_t67D2A34BAAB5C1EE061DEA291EC40CF030080E93)+ sizeof (RuntimeObject), sizeof(int64_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2795[5] =
{
ARTrackingQuality_t67D2A34BAAB5C1EE061DEA291EC40CF030080E93::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2796;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2796 = { sizeof (ARTrackingState_t904937D92845C4D5954E4E16182F7BC33F5F744B)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2796[4] =
{
ARTrackingState_t904937D92845C4D5954E4E16182F7BC33F5F744B::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2797;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2797 = { sizeof (ARTrackingStateReason_t4E957429E93991E43643D4C64AC81F488B71A17C)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2797[6] =
{
ARTrackingStateReason_t4E957429E93991E43643D4C64AC81F488B71A17C::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2798;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2798 = { sizeof (ARUserAnchor_tD992F8EA1A8A17856CE43420E6A9F07F3C55F452)+ sizeof (RuntimeObject), sizeof(ARUserAnchor_tD992F8EA1A8A17856CE43420E6A9F07F3C55F452_marshaled_pinvoke), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2798[2] =
{
ARUserAnchor_tD992F8EA1A8A17856CE43420E6A9F07F3C55F452::get_offset_of_identifier_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARUserAnchor_tD992F8EA1A8A17856CE43420E6A9F07F3C55F452::get_offset_of_transform_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2799;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2799 = { sizeof (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95)+ sizeof (RuntimeObject), sizeof(UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 ), sizeof(UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95_StaticFields), 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2799[5] =
{
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95::get_offset_of_videoFormatPtr_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95::get_offset_of_imageResolutionWidth_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95::get_offset_of_imageResolutionHeight_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95::get_offset_of_framesPerSecond_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95_StaticFields::get_offset_of_videoFormatsList_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2800;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2800 = { sizeof (VideoFormatEnumerator_tE8B6480DBDEBDC141AA932D8696673C644A2006D), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2801;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2801 = { sizeof (ARWorldMappingStatus_t1924A56B168ED7DDAA8FB935E53E56E56A893834)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2801[5] =
{
ARWorldMappingStatus_t1924A56B168ED7DDAA8FB935E53E56E56A893834::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2802;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2802 = { sizeof (ARWorldMap_tA5B42053DEC105A7BDEB0AB2E6DB3200BC2C397A), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2802[1] =
{
ARWorldMap_tA5B42053DEC105A7BDEB0AB2E6DB3200BC2C397A::get_offset_of_m_Ptr_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2803;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2803 = { sizeof (serializableARWorldMap_t7E10ABE00B8AE4798879ED785B257CF12FDFFFCE), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2803[1] =
{
serializableARWorldMap_t7E10ABE00B8AE4798879ED785B257CF12FDFFFCE::get_offset_of_arWorldMapData_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2804;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2804 = { sizeof (UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3)+ sizeof (RuntimeObject), sizeof(UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2804[4] =
{
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3::get_offset_of_column0_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3::get_offset_of_column1_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3::get_offset_of_column2_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARMatrix4x4_tCA18409E5A55B83BF0A0792631F365070E6018B3::get_offset_of_column3_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2805;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2805 = { sizeof (UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1)+ sizeof (RuntimeObject), sizeof(UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2805[5] =
{
UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1::get_offset_of_yWidth_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1::get_offset_of_yHeight_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1::get_offset_of_screenOrientation_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1::get_offset_of_texCoordScale_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityVideoParams_t04F1C5CAB973672CE34BD6A2D8BC0FD7DF4397A1::get_offset_of_cvPixelBufferPtr_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2806;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2806 = { sizeof (internal_UnityARCamera_t4AB8B121A980DA87721B883E394951D15D80D8E8)+ sizeof (RuntimeObject), sizeof(internal_UnityARCamera_t4AB8B121A980DA87721B883E394951D15D80D8E8 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2806[10] =
{
internal_UnityARCamera_t4AB8B121A980DA87721B883E394951D15D80D8E8::get_offset_of_worldTransform_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
internal_UnityARCamera_t4AB8B121A980DA87721B883E394951D15D80D8E8::get_offset_of_projectionMatrix_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
internal_UnityARCamera_t4AB8B121A980DA87721B883E394951D15D80D8E8::get_offset_of_trackingState_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
internal_UnityARCamera_t4AB8B121A980DA87721B883E394951D15D80D8E8::get_offset_of_trackingReason_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
internal_UnityARCamera_t4AB8B121A980DA87721B883E394951D15D80D8E8::get_offset_of_videoParams_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
internal_UnityARCamera_t4AB8B121A980DA87721B883E394951D15D80D8E8::get_offset_of_lightData_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
internal_UnityARCamera_t4AB8B121A980DA87721B883E394951D15D80D8E8::get_offset_of_displayTransform_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
internal_UnityARCamera_t4AB8B121A980DA87721B883E394951D15D80D8E8::get_offset_of_pointCloud_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
internal_UnityARCamera_t4AB8B121A980DA87721B883E394951D15D80D8E8::get_offset_of_getLightEstimation_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
internal_UnityARCamera_t4AB8B121A980DA87721B883E394951D15D80D8E8::get_offset_of_worldMappngStatus_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2807;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2807 = { sizeof (UnityARCamera_t4C2AF5738761FACBA2DCDE8B87228F38FE12EFE4)+ sizeof (RuntimeObject), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2807[9] =
{
UnityARCamera_t4C2AF5738761FACBA2DCDE8B87228F38FE12EFE4::get_offset_of_worldTransform_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARCamera_t4C2AF5738761FACBA2DCDE8B87228F38FE12EFE4::get_offset_of_projectionMatrix_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARCamera_t4C2AF5738761FACBA2DCDE8B87228F38FE12EFE4::get_offset_of_trackingState_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARCamera_t4C2AF5738761FACBA2DCDE8B87228F38FE12EFE4::get_offset_of_trackingReason_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARCamera_t4C2AF5738761FACBA2DCDE8B87228F38FE12EFE4::get_offset_of_videoParams_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARCamera_t4C2AF5738761FACBA2DCDE8B87228F38FE12EFE4::get_offset_of_lightData_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARCamera_t4C2AF5738761FACBA2DCDE8B87228F38FE12EFE4::get_offset_of_displayTransform_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARCamera_t4C2AF5738761FACBA2DCDE8B87228F38FE12EFE4::get_offset_of_pointCloud_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARCamera_t4C2AF5738761FACBA2DCDE8B87228F38FE12EFE4::get_offset_of_worldMappingStatus_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2808;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2808 = { sizeof (UnityARUserAnchorData_t9CDEC5EC99A64714ABCBF0BC573951ABFEC44671)+ sizeof (RuntimeObject), sizeof(UnityARUserAnchorData_t9CDEC5EC99A64714ABCBF0BC573951ABFEC44671 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2808[2] =
{
UnityARUserAnchorData_t9CDEC5EC99A64714ABCBF0BC573951ABFEC44671::get_offset_of_ptrIdentifier_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARUserAnchorData_t9CDEC5EC99A64714ABCBF0BC573951ABFEC44671::get_offset_of_transform_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2809;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2809 = { sizeof (UnityARHitTestResult_t50B762886ED73C02795E6BF5A74F9861F7707DD6)+ sizeof (RuntimeObject), sizeof(UnityARHitTestResult_t50B762886ED73C02795E6BF5A74F9861F7707DD6_marshaled_pinvoke), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2809[6] =
{
UnityARHitTestResult_t50B762886ED73C02795E6BF5A74F9861F7707DD6::get_offset_of_type_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARHitTestResult_t50B762886ED73C02795E6BF5A74F9861F7707DD6::get_offset_of_distance_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARHitTestResult_t50B762886ED73C02795E6BF5A74F9861F7707DD6::get_offset_of_localTransform_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARHitTestResult_t50B762886ED73C02795E6BF5A74F9861F7707DD6::get_offset_of_worldTransform_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARHitTestResult_t50B762886ED73C02795E6BF5A74F9861F7707DD6::get_offset_of_anchor_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
UnityARHitTestResult_t50B762886ED73C02795E6BF5A74F9861F7707DD6::get_offset_of_isValid_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2810;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2810 = { sizeof (UnityARAlignment_tBF31DEB8CE1A352963601C233FC63CBAA562054F)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2810[4] =
{
UnityARAlignment_tBF31DEB8CE1A352963601C233FC63CBAA562054F::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2811;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2811 = { sizeof (UnityARPlaneDetection_t2B0A97EC1392ACCE7B07E691202B9CD10C972A22)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2811[5] =
{
UnityARPlaneDetection_t2B0A97EC1392ACCE7B07E691202B9CD10C972A22::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2812;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2812 = { sizeof (ARKitSessionConfiguration_t31897B32F8D88E367E2736CBCF953A40624A5548)+ sizeof (RuntimeObject), sizeof(ARKitSessionConfiguration_t31897B32F8D88E367E2736CBCF953A40624A5548_marshaled_pinvoke), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2812[3] =
{
ARKitSessionConfiguration_t31897B32F8D88E367E2736CBCF953A40624A5548::get_offset_of_alignment_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARKitSessionConfiguration_t31897B32F8D88E367E2736CBCF953A40624A5548::get_offset_of_getPointCloudData_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARKitSessionConfiguration_t31897B32F8D88E367E2736CBCF953A40624A5548::get_offset_of_enableLightEstimation_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2813;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2813 = { sizeof (ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03)+ sizeof (RuntimeObject), sizeof(ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03_marshaled_pinvoke), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2813[12] =
{
ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03::get_offset_of_alignment_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03::get_offset_of_planeDetection_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03::get_offset_of_getPointCloudData_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03::get_offset_of_enableLightEstimation_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03::get_offset_of_enableAutoFocus_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03::get_offset_of_environmentTexturing_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03::get_offset_of_maximumNumberOfTrackedImages_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03::get_offset_of_videoFormat_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03::get_offset_of_referenceImagesGroupName_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03::get_offset_of_referenceObjectsGroupName_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03::get_offset_of_dynamicReferenceObjectsPtr_10() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARKitWorldTrackingSessionConfiguration_t0A35F68DD5CDD5DF1722D17A5FF9F1708489FD03::get_offset_of_m_worldMapPtr_11() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2814;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2814 = { sizeof (ARKitFaceTrackingConfiguration_t8035DE78DED2F8B4246159EE3E5882142A1D5603)+ sizeof (RuntimeObject), sizeof(ARKitFaceTrackingConfiguration_t8035DE78DED2F8B4246159EE3E5882142A1D5603_marshaled_pinvoke), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2814[3] =
{
ARKitFaceTrackingConfiguration_t8035DE78DED2F8B4246159EE3E5882142A1D5603::get_offset_of_alignment_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARKitFaceTrackingConfiguration_t8035DE78DED2F8B4246159EE3E5882142A1D5603::get_offset_of_enableLightEstimation_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
ARKitFaceTrackingConfiguration_t8035DE78DED2F8B4246159EE3E5882142A1D5603::get_offset_of_videoFormat_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2815;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2815 = { sizeof (UnityARSessionRunOption_t727FF292E082186FACC7FF0DB653ACCE553F3247)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2815[3] =
{
UnityARSessionRunOption_t727FF292E082186FACC7FF0DB653ACCE553F3247::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2816;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2816 = { sizeof (ObjectSerializationExtension_t45EADA2C583F4A30BF81B7071A5BB75359B44DCD), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2817;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2817 = { sizeof (SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2817[4] =
{
SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028::get_offset_of_x_0(),
SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028::get_offset_of_y_1(),
SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028::get_offset_of_z_2(),
SerializableVector4_tAFABF6000A7891F39F5BB3C32EE4D002F4B44028::get_offset_of_w_3(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2818;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2818 = { sizeof (serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2818[4] =
{
serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731::get_offset_of_column0_0(),
serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731::get_offset_of_column1_1(),
serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731::get_offset_of_column2_2(),
serializableUnityARMatrix4x4_t2D3F0DADA6346AFB8330B5CFEA26B4AA7604B731::get_offset_of_column3_3(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2819;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2819 = { sizeof (serializableSHC_t11D048FF521D91D82EA8E41C159D007BA006F651), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2819[1] =
{
serializableSHC_t11D048FF521D91D82EA8E41C159D007BA006F651::get_offset_of_shcData_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2820;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2820 = { sizeof (serializableUnityARLightData_tB60386E7B87FA53A01A502CBAA8E6ADC79F6D779), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2820[5] =
{
serializableUnityARLightData_tB60386E7B87FA53A01A502CBAA8E6ADC79F6D779::get_offset_of_whichLight_0(),
serializableUnityARLightData_tB60386E7B87FA53A01A502CBAA8E6ADC79F6D779::get_offset_of_lightSHC_1(),
serializableUnityARLightData_tB60386E7B87FA53A01A502CBAA8E6ADC79F6D779::get_offset_of_primaryLightDirAndIntensity_2(),
serializableUnityARLightData_tB60386E7B87FA53A01A502CBAA8E6ADC79F6D779::get_offset_of_ambientIntensity_3(),
serializableUnityARLightData_tB60386E7B87FA53A01A502CBAA8E6ADC79F6D779::get_offset_of_ambientColorTemperature_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2821;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2821 = { sizeof (serializableUnityARCamera_tE0928D3EF7C59B9698FF23F97AA0B7124916308F), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2821[9] =
{
serializableUnityARCamera_tE0928D3EF7C59B9698FF23F97AA0B7124916308F::get_offset_of_worldTransform_0(),
serializableUnityARCamera_tE0928D3EF7C59B9698FF23F97AA0B7124916308F::get_offset_of_projectionMatrix_1(),
serializableUnityARCamera_tE0928D3EF7C59B9698FF23F97AA0B7124916308F::get_offset_of_trackingState_2(),
serializableUnityARCamera_tE0928D3EF7C59B9698FF23F97AA0B7124916308F::get_offset_of_trackingReason_3(),
serializableUnityARCamera_tE0928D3EF7C59B9698FF23F97AA0B7124916308F::get_offset_of_videoParams_4(),
serializableUnityARCamera_tE0928D3EF7C59B9698FF23F97AA0B7124916308F::get_offset_of_lightData_5(),
serializableUnityARCamera_tE0928D3EF7C59B9698FF23F97AA0B7124916308F::get_offset_of_pointCloud_6(),
serializableUnityARCamera_tE0928D3EF7C59B9698FF23F97AA0B7124916308F::get_offset_of_displayTransform_7(),
serializableUnityARCamera_tE0928D3EF7C59B9698FF23F97AA0B7124916308F::get_offset_of_worldMappingStatus_8(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2822;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2822 = { sizeof (serializablePlaneGeometry_t32B3123C8DFA669D8FAE918A37B3B5D9FEBDB3D9), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2822[4] =
{
serializablePlaneGeometry_t32B3123C8DFA669D8FAE918A37B3B5D9FEBDB3D9::get_offset_of_vertices_0(),
serializablePlaneGeometry_t32B3123C8DFA669D8FAE918A37B3B5D9FEBDB3D9::get_offset_of_texCoords_1(),
serializablePlaneGeometry_t32B3123C8DFA669D8FAE918A37B3B5D9FEBDB3D9::get_offset_of_triIndices_2(),
serializablePlaneGeometry_t32B3123C8DFA669D8FAE918A37B3B5D9FEBDB3D9::get_offset_of_boundaryVertices_3(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2823;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2823 = { sizeof (serializableUnityARPlaneAnchor_tEC527188F73D5D313F88F1871C5CCA575F084AE2), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2823[6] =
{
serializableUnityARPlaneAnchor_tEC527188F73D5D313F88F1871C5CCA575F084AE2::get_offset_of_worldTransform_0(),
serializableUnityARPlaneAnchor_tEC527188F73D5D313F88F1871C5CCA575F084AE2::get_offset_of_center_1(),
serializableUnityARPlaneAnchor_tEC527188F73D5D313F88F1871C5CCA575F084AE2::get_offset_of_extent_2(),
serializableUnityARPlaneAnchor_tEC527188F73D5D313F88F1871C5CCA575F084AE2::get_offset_of_planeAlignment_3(),
serializableUnityARPlaneAnchor_tEC527188F73D5D313F88F1871C5CCA575F084AE2::get_offset_of_planeGeometry_4(),
serializableUnityARPlaneAnchor_tEC527188F73D5D313F88F1871C5CCA575F084AE2::get_offset_of_identifierStr_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2824;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2824 = { sizeof (serializableFaceGeometry_t3A98BFDA8DBFA940527E3F5D8578F4F0D7EDA7AE), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2824[3] =
{
serializableFaceGeometry_t3A98BFDA8DBFA940527E3F5D8578F4F0D7EDA7AE::get_offset_of_vertices_0(),
serializableFaceGeometry_t3A98BFDA8DBFA940527E3F5D8578F4F0D7EDA7AE::get_offset_of_texCoords_1(),
serializableFaceGeometry_t3A98BFDA8DBFA940527E3F5D8578F4F0D7EDA7AE::get_offset_of_triIndices_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2825;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2825 = { sizeof (serializableUnityARFaceAnchor_t722FE8FA6BC7C8DFE3D9041F8570FAA3DC2FFE0C), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2825[5] =
{
serializableUnityARFaceAnchor_t722FE8FA6BC7C8DFE3D9041F8570FAA3DC2FFE0C::get_offset_of_worldTransform_0(),
serializableUnityARFaceAnchor_t722FE8FA6BC7C8DFE3D9041F8570FAA3DC2FFE0C::get_offset_of_faceGeometry_1(),
serializableUnityARFaceAnchor_t722FE8FA6BC7C8DFE3D9041F8570FAA3DC2FFE0C::get_offset_of_arBlendShapes_2(),
serializableUnityARFaceAnchor_t722FE8FA6BC7C8DFE3D9041F8570FAA3DC2FFE0C::get_offset_of_identifierStr_3(),
serializableUnityARFaceAnchor_t722FE8FA6BC7C8DFE3D9041F8570FAA3DC2FFE0C::get_offset_of_isTracked_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2826;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2826 = { sizeof (serializablePointCloud_tA208EAB380DBE420C8976C2D6F40D2A7D8FA0568), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2826[2] =
{
serializablePointCloud_tA208EAB380DBE420C8976C2D6F40D2A7D8FA0568::get_offset_of_pointCloudData_0(),
serializablePointCloud_tA208EAB380DBE420C8976C2D6F40D2A7D8FA0568::get_offset_of_pointCloudIds_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2827;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2827 = { sizeof (serializableARSessionConfiguration_tE32FDE4517F57B2FE8BC9386F3429D927A698E25), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2827[5] =
{
serializableARSessionConfiguration_tE32FDE4517F57B2FE8BC9386F3429D927A698E25::get_offset_of_alignment_0(),
serializableARSessionConfiguration_tE32FDE4517F57B2FE8BC9386F3429D927A698E25::get_offset_of_planeDetection_1(),
serializableARSessionConfiguration_tE32FDE4517F57B2FE8BC9386F3429D927A698E25::get_offset_of_getPointCloudData_2(),
serializableARSessionConfiguration_tE32FDE4517F57B2FE8BC9386F3429D927A698E25::get_offset_of_enableLightEstimation_3(),
serializableARSessionConfiguration_tE32FDE4517F57B2FE8BC9386F3429D927A698E25::get_offset_of_enableAutoFocus_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2828;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2828 = { sizeof (serializableARKitInit_t226FD9E7021E39F06F9F5717116C1688C2D293BF), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2828[2] =
{
serializableARKitInit_t226FD9E7021E39F06F9F5717116C1688C2D293BF::get_offset_of_config_0(),
serializableARKitInit_t226FD9E7021E39F06F9F5717116C1688C2D293BF::get_offset_of_runOption_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2829;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2829 = { sizeof (serializableFromEditorMessage_tB18FB18AC5303D86A3F7EDDD174D5573C9DAC6B3), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2829[2] =
{
serializableFromEditorMessage_tB18FB18AC5303D86A3F7EDDD174D5573C9DAC6B3::get_offset_of_subMessageId_0(),
serializableFromEditorMessage_tB18FB18AC5303D86A3F7EDDD174D5573C9DAC6B3::get_offset_of_arkitConfigMsg_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2830;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2830 = { sizeof (RangeOfIntegers_t7BF24CBD78B99ECC713A5FAD8C4CF8345BD8C041)+ sizeof (RuntimeObject), sizeof(RangeOfIntegers_t7BF24CBD78B99ECC713A5FAD8C4CF8345BD8C041 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2830[2] =
{
RangeOfIntegers_t7BF24CBD78B99ECC713A5FAD8C4CF8345BD8C041::get_offset_of_Minimum_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
RangeOfIntegers_t7BF24CBD78B99ECC713A5FAD8C4CF8345BD8C041::get_offset_of_Maximum_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2831;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2831 = { sizeof (RangeOfFloats_t76ACB04A2C313C41EE04ED57A2F0E2A9F30EA4F9)+ sizeof (RuntimeObject), sizeof(RangeOfFloats_t76ACB04A2C313C41EE04ED57A2F0E2A9F30EA4F9 ), 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2831[2] =
{
RangeOfFloats_t76ACB04A2C313C41EE04ED57A2F0E2A9F30EA4F9::get_offset_of_Minimum_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
RangeOfFloats_t76ACB04A2C313C41EE04ED57A2F0E2A9F30EA4F9::get_offset_of_Maximum_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2832;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2832 = { sizeof (FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2832[16] =
{
FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E::get_offset_of_AudioSource_4(),
FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E::get_offset_of_StartTime_5(),
FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E::get_offset_of_StopTime_6(),
FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E::get_offset_of_Duration_7(),
FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E::get_offset_of_ForceAmount_8(),
FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E::get_offset_of_ForceRadius_9(),
FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E::get_offset_of_IsProjectile_10(),
FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E::get_offset_of_ManualParticleSystems_11(),
FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E::get_offset_of_startTimeMultiplier_12(),
FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E::get_offset_of_startTimeIncrement_13(),
FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E::get_offset_of_stopTimeMultiplier_14(),
FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E::get_offset_of_stopTimeIncrement_15(),
FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E::get_offset_of_U3CStartingU3Ek__BackingField_16(),
FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E::get_offset_of_U3CStartPercentU3Ek__BackingField_17(),
FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E::get_offset_of_U3CStoppingU3Ek__BackingField_18(),
FireBaseScript_t54E875A551DA8CC6911564EEFAB06605041A2A3E::get_offset_of_U3CStopPercentU3Ek__BackingField_19(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2833;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2833 = { sizeof (U3CCleanupEverythingCoRoutineU3Ed__12_tC21D1DA252136C26D324FC129205543FEE99F69C), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2833[3] =
{
U3CCleanupEverythingCoRoutineU3Ed__12_tC21D1DA252136C26D324FC129205543FEE99F69C::get_offset_of_U3CU3E1__state_0(),
U3CCleanupEverythingCoRoutineU3Ed__12_tC21D1DA252136C26D324FC129205543FEE99F69C::get_offset_of_U3CU3E2__current_1(),
U3CCleanupEverythingCoRoutineU3Ed__12_tC21D1DA252136C26D324FC129205543FEE99F69C::get_offset_of_U3CU3E4__this_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2834;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2834 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2835;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2835 = { sizeof (FireCollisionForwardScript_t5525551AAC4835F71A6E23CC24F43BC750C67C5D), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2835[1] =
{
FireCollisionForwardScript_t5525551AAC4835F71A6E23CC24F43BC750C67C5D::get_offset_of_CollisionHandler_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2836;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2836 = { sizeof (LoopingAudioSource_tAC4960456CBDF46A74E09DF5C9F530AFD28F4DF3), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2836[5] =
{
LoopingAudioSource_tAC4960456CBDF46A74E09DF5C9F530AFD28F4DF3::get_offset_of_U3CAudioSourceU3Ek__BackingField_0(),
LoopingAudioSource_tAC4960456CBDF46A74E09DF5C9F530AFD28F4DF3::get_offset_of_U3CTargetVolumeU3Ek__BackingField_1(),
LoopingAudioSource_tAC4960456CBDF46A74E09DF5C9F530AFD28F4DF3::get_offset_of_startMultiplier_2(),
LoopingAudioSource_tAC4960456CBDF46A74E09DF5C9F530AFD28F4DF3::get_offset_of_stopMultiplier_3(),
LoopingAudioSource_tAC4960456CBDF46A74E09DF5C9F530AFD28F4DF3::get_offset_of_currentMultiplier_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2837;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2837 = { sizeof (FireConstantBaseScript_t42265909E6D65DC66F148D7F2BDD8E840297ACC7), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2837[1] =
{
FireConstantBaseScript_t42265909E6D65DC66F148D7F2BDD8E840297ACC7::get_offset_of_LoopingAudioSource_20(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2838;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2838 = { sizeof (FireLightScript_t765D9CC8546C06A445E7FBA5A80C7E4F60BE33E6), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2838[8] =
{
FireLightScript_t765D9CC8546C06A445E7FBA5A80C7E4F60BE33E6::get_offset_of_Seed_4(),
FireLightScript_t765D9CC8546C06A445E7FBA5A80C7E4F60BE33E6::get_offset_of_IntensityModifier_5(),
FireLightScript_t765D9CC8546C06A445E7FBA5A80C7E4F60BE33E6::get_offset_of_IntensityMaxRange_6(),
FireLightScript_t765D9CC8546C06A445E7FBA5A80C7E4F60BE33E6::get_offset_of_firePointLight_7(),
FireLightScript_t765D9CC8546C06A445E7FBA5A80C7E4F60BE33E6::get_offset_of_lightIntensity_8(),
FireLightScript_t765D9CC8546C06A445E7FBA5A80C7E4F60BE33E6::get_offset_of_seed_9(),
FireLightScript_t765D9CC8546C06A445E7FBA5A80C7E4F60BE33E6::get_offset_of_fireBaseScript_10(),
FireLightScript_t765D9CC8546C06A445E7FBA5A80C7E4F60BE33E6::get_offset_of_baseY_11(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2839;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2839 = { sizeof (FireProjectileCollisionDelegate_t1E069C484F215AB28294487D1CC250DCADA87033), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2840;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2840 = { sizeof (FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2840[12] =
{
FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8::get_offset_of_ProjectileColliderObject_20(),
FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8::get_offset_of_ProjectileCollisionSound_21(),
FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8::get_offset_of_ProjectileExplosionParticleSystem_22(),
FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8::get_offset_of_ProjectileExplosionRadius_23(),
FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8::get_offset_of_ProjectileExplosionForce_24(),
FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8::get_offset_of_ProjectileColliderDelay_25(),
FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8::get_offset_of_ProjectileColliderSpeed_26(),
FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8::get_offset_of_ProjectileDirection_27(),
FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8::get_offset_of_ProjectileCollisionLayers_28(),
FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8::get_offset_of_ProjectileDestroyParticleSystemsOnCollision_29(),
FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8::get_offset_of_CollisionDelegate_30(),
FireProjectileScript_t17F772354177F4494620DFCFDF886543E930EEF8::get_offset_of_collided_31(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2841;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2841 = { sizeof (U3CSendCollisionAfterDelayU3Ed__12_tDD6D0AAD757159D12816227160F8D30BB4B22910), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2841[3] =
{
U3CSendCollisionAfterDelayU3Ed__12_tDD6D0AAD757159D12816227160F8D30BB4B22910::get_offset_of_U3CU3E1__state_0(),
U3CSendCollisionAfterDelayU3Ed__12_tDD6D0AAD757159D12816227160F8D30BB4B22910::get_offset_of_U3CU3E2__current_1(),
U3CSendCollisionAfterDelayU3Ed__12_tDD6D0AAD757159D12816227160F8D30BB4B22910::get_offset_of_U3CU3E4__this_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2842;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2842 = { sizeof (MeteorSwarmCollisionDelegate_tAE89940FA15088B9898C111F6B1BB08F95329AF3), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2843;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2843 = { sizeof (MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2843[16] =
{
MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1::get_offset_of_MeteorPrefab_20(),
MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1::get_offset_of_MeteorExplosionParticleSystem_21(),
MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1::get_offset_of_MeteorShrapnelParticleSystem_22(),
MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1::get_offset_of_MeteorMaterials_23(),
MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1::get_offset_of_MeteorMeshes_24(),
MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1::get_offset_of_DestinationRadius_25(),
MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1::get_offset_of_Source_26(),
MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1::get_offset_of_SourceRadius_27(),
MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1::get_offset_of_TimeToImpact_28(),
MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1::get_offset_of_MeteorsPerSecondRange_29(),
MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1::get_offset_of_ScaleRange_30(),
MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1::get_offset_of_MeteorLifeTimeRange_31(),
MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1::get_offset_of_EmissionSounds_32(),
MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1::get_offset_of_ExplosionSounds_33(),
MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1::get_offset_of_CollisionDelegate_34(),
MeteorSwarmScript_t036185C9BDE3BADEE40155181D8E9B570EEBAFE1::get_offset_of_elapsedSecond_35(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2844;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2844 = { sizeof (U3CSpawnMeteorU3Ed__18_t0FA58D3671A83A98AA374D5A5A2046D815265F4D), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2844[3] =
{
U3CSpawnMeteorU3Ed__18_t0FA58D3671A83A98AA374D5A5A2046D815265F4D::get_offset_of_U3CU3E1__state_0(),
U3CSpawnMeteorU3Ed__18_t0FA58D3671A83A98AA374D5A5A2046D815265F4D::get_offset_of_U3CU3E2__current_1(),
U3CSpawnMeteorU3Ed__18_t0FA58D3671A83A98AA374D5A5A2046D815265F4D::get_offset_of_U3CU3E4__this_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2845;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2845 = { sizeof (U3CCleanupMeteorU3Ed__22_tC9564F4BF0D84B86F6BE86176095DF348A7327C5), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2845[4] =
{
U3CCleanupMeteorU3Ed__22_tC9564F4BF0D84B86F6BE86176095DF348A7327C5::get_offset_of_U3CU3E1__state_0(),
U3CCleanupMeteorU3Ed__22_tC9564F4BF0D84B86F6BE86176095DF348A7327C5::get_offset_of_U3CU3E2__current_1(),
U3CCleanupMeteorU3Ed__22_tC9564F4BF0D84B86F6BE86176095DF348A7327C5::get_offset_of_delay_2(),
U3CCleanupMeteorU3Ed__22_tC9564F4BF0D84B86F6BE86176095DF348A7327C5::get_offset_of_obj_3(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize2846;
const Il2CppTypeDefinitionSizes g_typeDefinitionSize2846 = { sizeof (SingleLineAttribute_t16816012F01A253DAEC465A530101F986F263BB4), -1, 0, 0 };
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable2846[1] =
{
SingleLineAttribute_t16816012F01A253DAEC465A530101F986F263BB4::get_offset_of_U3CTooltipU3Ek__BackingField_0(),
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"tanitabassum299@gmail.com"
] | tanitabassum299@gmail.com |
dafe66dff08fd8e6802531752f58eb21eeeb8dad | 904441a3953ee970325bdb4ead916a01fcc2bacd | /src/apps/wiseml/sensors/wiseml_double_sensor.h | f505f7dc68c7a53b4f6c37bc4ee051552b761673 | [
"MIT"
] | permissive | itm/shawn | 5a75053bc490f338e35ea05310cdbde50401fb50 | 49cb715d0044a20a01a19bc4d7b62f9f209df83c | refs/heads/master | 2020-05-30T02:56:44.820211 | 2013-05-29T13:34:51 | 2013-05-29T13:34:51 | 5,994,638 | 16 | 4 | null | 2014-06-29T05:29:00 | 2012-09-28T08:33:42 | C++ | UTF-8 | C++ | false | false | 1,201 | h | /************************************************************************
** This file is part of the network simulator Shawn. **
** Copyright (C) 2004-2007 by the SwarmNet (www.swarmnet.de) project **
** Shawn is free software; you can redistribute it and/or modify it **
** under the terms of the BSD License. Refer to the shawn-licence.txt **
** file in the root of the Shawn source tree for further details. **
************************************************************************/
#ifndef __SHAWN_APPS_WISEML_SENSOR_DOUBLE_H
#define __SHAWN_APPS_WISEML_SENSOR_DOUBLE_H
#include "_apps_enable_cmake.h"
#ifdef ENABLE_READING
#ifdef ENABLE_WISEML
#include "sys/node.h"
#include "apps/reading/sensors/sensor.h"
#include "apps/wiseml/sensors/wiseml_sensor.h"
#include "apps/wiseml/sensors/wiseml_raw_sensor.h"
#include <stdlib.h>
using namespace shawn;
using namespace std;
namespace wiseml
{
/** \brief Double Sensor
* Reads out capabilities as double values.
*/
class WisemlDoubleSensor:
public WisemlSensor
{
public:
WisemlDoubleSensor(WisemlRawSensor* raw_sensor);
virtual double value() const;
};
}
#endif
#endif
#endif
| [
"github@farberg.de"
] | github@farberg.de |
8f9ad837dda7f2fe947e41d01bb3f07ab39deb6a | ca99dad905159ed6914ce09129b79f6cf3e0a66f | /src/Minimum_Window_Substring.cpp | 68c15ae95f7e52b5828d9d3d37e7cfd5188c2ca8 | [] | no_license | andyepeacebow/leetcode | 404a912e49d9406cc97d375ecf1bf1bc29980b04 | efdde7bd8cda2740d7cc155393e9c604a1bc9bde | refs/heads/master | 2020-12-24T17:35:19.805856 | 2016-03-08T12:30:04 | 2016-03-08T12:30:04 | 16,905,593 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 912 | cpp | class Solution {
public:
unordered_map<char, int> ch2cntT, ch2cntS;
int lens, lent;
string minWindow(string S, string T) {
for (int i = 0; i < T.length(); i ++) {
char ch = T[i];
ch2cntT[ch] ++;
}
lens = S.length();
lent = T.length();
int s = 0, t = -1;
bool found = false;
int res_s, res_len = lens + 1;
int cnt = 0, target = ch2cntT.size();
while (s < lens) {
while (t < lens && cnt < target) {
t ++;
if (t >= lens) break;
char ch = S[t];
ch2cntS[ch] ++;
if (ch2cntS[ch] == ch2cntT[ch]) {
cnt ++;
}
}
if (t < lens) {
found = true;
} else {
break;
}
int once = t - s + 1;
if (once < res_len) {
res_len = once;
res_s = s;
}
ch2cntS[ S[s] ] --;
if (ch2cntS[ S[s] ] == ch2cntT[ S[s] ] - 1) {
cnt --;
}
s ++;
}
string ans = found ? S.substr(res_s, res_len) : "";
return ans;
}
}; | [
"44148926@qq.com"
] | 44148926@qq.com |
0790c28bf1d9f76fdf1800cec77db815bb7d7f20 | d9a14292299d52b6667d49706a3b3589a234d54c | /src/Subtitles/subpicturexml.h | 519f6667c15fa58e388d979267b6d566dcb59cf9 | [
"Apache-2.0"
] | permissive | rakuennow/BDSup2SubPlusPlus | ee4b4697544b7740e3edeb49c32e2d69d6b324e7 | fdf0abeec1b055960fc222dd531516ee7d31b6dc | refs/heads/master | 2020-12-25T12:28:39.070490 | 2012-07-17T17:58:41 | 2012-07-17T17:58:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,521 | h | /*
* BDSup2Sub++ (C) 2012 Adam T.
* Based on code from BDSup2Sub by Copyright 2009 Volker Oth (0xdeadbeef)
* and Copyright 2012 Miklos Juhasz (mjuhasz)
*
*
* Licensed 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.
*/
#ifndef SUBPICTUREXML_H
#define SUBPICTUREXML_H
#include "subpicture.h"
#include <QString>
class SubPictureXML : public SubPicture
{
public:
SubPictureXML();
SubPictureXML(const SubPictureXML& other);
SubPictureXML(const SubPictureXML* other);
void setOriginal()
{
origX = getOfsX();
origY = getOfsY();
}
int originalX() { return origX; }
void setOriginalX(int originalX) { origX = originalX; }
int originalY() { return origY; }
void setOriginalY(int originalY) { origY = originalY; }
QString fileName() { return filename; }
void setFileName(QString fileName) { filename = fileName; }
private:
int origX;
int origY;
QString filename;
};
#endif // SUBPICTUREXML_H
| [
"amichaeltm@gmail.com"
] | amichaeltm@gmail.com |
0cfdfa29078249231b4efa6d56275f2cb5b856a0 | ed5daa67ed41dffdfe7b41917a6aa017af56500d | /Sources/Uis/Inputs/UiInputRadio.hpp | 4d9112438792f92b44f4d17688e8c7ff97ee54a3 | [
"MIT"
] | permissive | Surue/Acid | e886d195f5e2c7824938fefea5bd4ca62003a4ec | e91bf67b578436677ecdcb11be94805ce591a0ec | refs/heads/master | 2020-05-17T02:30:53.171770 | 2019-04-24T19:51:47 | 2019-04-24T19:51:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,296 | hpp | #pragma once
#include "Fonts/Text.hpp"
#include "Guis/Gui.hpp"
#include "Uis/UiObject.hpp"
namespace acid
{
class ACID_EXPORT UiInputRadio :
public UiObject
{
public:
enum class Type
{
Filled, X, Dot, Check
};
UiInputRadio(UiObject *parent, const std::string &string, const Type &type = Type::Filled, const bool &value = false,
const UiBound &rectangle = UiBound(Vector2f(0.0f, 0.0f), UiReference::Centre, UiAspect::Position | UiAspect::Size));
void UpdateObject() override;
const std::string &GetString() const { return m_text.GetString(); }
void SetString(const std::string &string) { m_text.SetString(string); }
const bool &GetValue() const { return m_value; }
void SetValue(const bool &value);
const Type &GetType() const { return m_type; }
void SetType(const Type &type);
/**
* Called when this value of the input changes.
* @return The delegate.
*/
Delegate<void(bool)> &OnValue() { return m_onValue; }
private:
void UpdateValue();
Gui m_background;
Gui m_fill;
Text m_text;
bool m_value;
Type m_type;
Delegate<void(bool)> m_onValue;
};
class ACID_EXPORT UiRadioManager :
public NonCopyable
{
public:
explicit UiRadioManager(const UiInputRadio::Type &type = UiInputRadio::Type::X, const bool &multiple = false, const std::vector<UiInputRadio *> &inputs = {}) :
m_type(type),
m_multiple(multiple),
m_inputs(inputs)
{
for (auto &input : inputs)
{
input->SetType(type);
input->OnValue() += [this, input](bool value)
{
if (!m_multiple)
{
for (auto &input2 : m_inputs)
{
if (input2 != input)
{
input2->SetValue(false);
}
}
}
};
}
}
const UiInputRadio::Type &GetMarkType() const { return m_type; }
void SetMarkType(const UiInputRadio::Type &type)
{
m_type = type;
for (auto &input : m_inputs)
{
input->SetType(m_type);
}
}
const std::vector<UiInputRadio *> &GetInputs() const { return m_inputs; }
void AddInput(UiInputRadio *input)
{
m_inputs.emplace_back(input);
}
void RemoveInput(UiInputRadio *input)
{
m_inputs.erase(std::remove(m_inputs.begin(), m_inputs.end(), input), m_inputs.end());
}
void ClearInputs() { m_inputs.clear(); }
private:
UiInputRadio::Type m_type;
bool m_multiple;
std::vector<UiInputRadio *> m_inputs;
};
}
| [
"mattparks5855@gmail.com"
] | mattparks5855@gmail.com |
939fe39915c8932ccd85c4252e8311740ea7162f | 9b402d093b852a574dccb869fbe4bada1ef069c6 | /code/foundation/terrain/terrainSystem.cpp | f5da460263045675ba9d52c9878d9ec182760a7d | [] | no_license | wangscript007/foundation-engine | adb24d4ccc932d7a8f8238170029de6d2db0cbfb | 2982b06d8f6b69c0654e0c90671aaef9cfc6cc40 | refs/heads/master | 2021-05-27T17:26:15.178095 | 2010-06-30T22:06:45 | 2010-06-30T22:06:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,759 | cpp | #include "terrainSystem.h"
using namespace Foundation;
using namespace Foundation::Terrain;
using namespace ET;
Terrain::TerrainManager& Terrain::TerrainManager::getSingleton()
{
static Terrain::TerrainManager m_Singleton;
return m_Singleton;
}
void Terrain::TerrainManager::create(Ogre::SceneManager *_pSceneMgr, Ogre::Camera *_pCamera)
{
m_pSceneMgr = _pSceneMgr;
// create terrain manager
mTerrainMgr = new ET::TerrainManager(_pSceneMgr);
mTerrainMgr->setLODErrorMargin(1, _pCamera->getViewport()->getActualHeight());
mTerrainMgr->setUseLODMorphing(true, 0.1, "morphFactor");
// create a fresh, mid-high terrain for editing
ET::TerrainInfo terrainInfo(129, 129, vector<float>(129*129, 0.5f));
// set position and size of the terrain
terrainInfo.setExtents(Ogre::AxisAlignedBox(-750, 0, -750, 750, 0, 750));
// now render it
mTerrainMgr->createTerrain(terrainInfo);
// create the splatting manager
mSplatMgr = new ET::SplattingManager("ETSplatting", "ET", 128, 128, 3);
// specify number of splatting textures we need to handle
mSplatMgr->setNumTextures(6);
// create a manual lightmap texture
Ogre::TexturePtr lightmapTex = Ogre::TextureManager::getSingleton().createManual(
"ETLightmap", "ET", Ogre::TEX_TYPE_2D, 128, 128, 1, Ogre::PF_BYTE_RGB);
Ogre::Image lightmap;
ET::createTerrainLightmap(terrainInfo, lightmap, 128, 128, Ogre::Vector3(1, -1, 1), Ogre::ColourValue::White,
Ogre::ColourValue(0.3, 0.3, 0.3));
lightmapTex->getBuffer(0, 0)->blitFromMemory(lightmap.getPixelBox(0, 0));
// load the terrain material and assign it
Ogre::MaterialPtr material (Ogre::MaterialManager::getSingleton().getByName("ETTerrainMaterial"));
mTerrainMgr->setMaterial(material);
}
gmtl::Vec3f Terrain::TerrainManager::getRayIntersection(const char *sSceneManagerName, const char *sCameraName, gmtl::Vec2f _nWorldPoint, gmtl::Vec2f _nScreenWidth)
{
Ogre::Camera* pCamera;
Ogre::Ray uRayIntersection;
Ogre::RaySceneQuery* uRaySceneQuery;
Ogre::RaySceneQueryResult uResult;
Ogre::RaySceneQueryResult::iterator itrResult;
float nX, nY;
if (!m_pSceneMgr->hasCamera(sCameraName)) {
f_printf("[TerrainManager] Error: Camera %s not found.\n", sCameraName);
return gmtl::Vec3f(0, 0, 0);
}
pCamera = m_pSceneMgr->getCamera(sCameraName);
f_printf("[TerrainManager] DEBUG: Getting Ray Intersection (Screen = %f, %f), (Point = %f, %f)\n", _nScreenWidth[0], _nScreenWidth[1], _nWorldPoint[0], _nWorldPoint[1]);
nX = _nWorldPoint[0] / _nScreenWidth[0];
nY = _nWorldPoint[1] / _nScreenWidth[1];
uRayIntersection = pCamera->getCameraToViewportRay(nX, nY);
uRaySceneQuery = m_pSceneMgr->createRayQuery(uRayIntersection);
uRaySceneQuery->setRay(uRayIntersection);
uRaySceneQuery->setSortByDistance(true);
uRaySceneQuery->setQueryMask(TERRAIN_MASK);
uRaySceneQuery->setQueryTypeMask(Ogre::SceneManager::WORLD_GEOMETRY_TYPE_MASK);
uResult = uRaySceneQuery->execute();
for (itrResult = uResult.begin(); itrResult != uResult.end(); itrResult++) {
Ogre::Vector3 nIntersectionPoint = uRayIntersection.getPoint(itrResult->distance);
return gmtl::Vec3f(nIntersectionPoint[0], nIntersectionPoint[1], nIntersectionPoint[2]);
}
f_printf("[TerrainSystem] Warning: Ray Intersection didn't hit terrain.\n");
return gmtl::Vec3f(0, 0, 0);
}
Terrain::TerrainManager::TerrainManager()
{
}
Terrain::TerrainManager::~TerrainManager()
{
}
| [
"drivehappy@a5d1a9aa-f497-11dd-9d1a-b59b2e1864b6"
] | drivehappy@a5d1a9aa-f497-11dd-9d1a-b59b2e1864b6 |
2d9b010f0df2a6d6e9820d81bb5d904a41f902fb | 8afb5afd38548c631f6f9536846039ef6cb297b9 | /_REPO/MICROSOFT/react-native-windows/vnext/Mso/object/queryCast.h | 9d6aa265a43070b03acbe8726f139e7ec65a476c | [
"MIT"
] | permissive | bgoonz/UsefulResourceRepo2.0 | d87588ffd668bb498f7787b896cc7b20d83ce0ad | 2cb4b45dd14a230aa0e800042e893f8dfb23beda | refs/heads/master | 2023-03-17T01:22:05.254751 | 2022-08-11T03:18:22 | 2022-08-11T03:18:22 | 382,628,698 | 10 | 12 | MIT | 2022-10-10T14:13:54 | 2021-07-03T13:58:52 | null | UTF-8 | C++ | false | false | 14,298 | h | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
#pragma once
#ifndef MSO_OBJECT_QUERYCAST_H
#define MSO_OBJECT_QUERYCAST_H
#include <unknwn.h>
#include <type_traits>
#include <utility>
#include "crash/verifyElseCrash.h"
#include "debugAssertApi/debugAssertApi.h"
#include "guid/msoGuid.h"
/**
To implement IUnknown::QueryInterface use the QueryCastTraits to implement sequence of probing for a requested
type by a GUID.
QueryCastTraits have two base cases:
Case #1: Type implements a QueryCast method.
Case #2: Type has an associated GUID. It is used when there is no QueryCast for a type.
If type does not have QueryCast or a GUID then it will be a compilation error to apply the QueryCastTraits to it.
This is intentional because we want developers to be explicit about their intents. Use the QueryCastHidden template
to avoid compilation errors in case if interface is not intended to be queried.
Here we provide a number of helper templates to implement QueryCast for a type:
- QueryCastChain - Query for a base interface by its GUID if class implements an interface derived from it.
- QueryCastDerived - Casting to a derived type by its GUID.
- QueryCastGuid - Query type by specified GUID.
- QueryCastHidden - Prevents querying for a type.
- QueryCastList - Calls QueryCastTraits for all provided types.
*/
#pragma warning(push)
// Disable warnings 4625 and 4626 because templates below may have or may not have default copy constructor and
// copy assignment operator depending on the template type parameter. We do not want just to delete them because
// they could be useful in some scenarios when generated.
#pragma warning(disable : 4625) // copy constructor could not be generated because a base class copy constructor is
// inaccessible or deleted
#pragma warning(disable : 4626) // assignment operator could not be generated because a base class assignment operator
// is inaccessible or deleted
namespace Mso {
/// A helper class for QueryCast to either use type's Guid or a QueryCast method.
/// Note that we do not call AddRef() here. It is a responsibility of a method that implements IUnknown::QueryInterface.
struct QueryCastHelper {
/// Implements QueryCast similar to the classic IUnknown::QueryInterface implementation.
template <typename T>
static void *QueryCast(_In_ void *obj, const GUID &riid) noexcept {
// It has lower priority than the next overload because we use void* instead of T* for the obj.
return (riid == __uuidof(T)) ? obj : nullptr;
}
/// Delegates the QueryCast implementation to the object if it has a QueryCast method.
/// If QueryCast fails then we check type's GUID if it is assigned by MSO_STRUCT_GUID or MSO_CLASS_GUID.
template <typename T>
static auto QueryCast(_In_ T *obj, const GUID &riid) noexcept -> decltype(obj->QueryCast(riid)) {
void *result = obj->QueryCast(riid);
return (result) ? result : GuidQueryCast<T>(obj, riid, static_cast<typename Mso::TypeHasGuid<T>::Type *>(nullptr));
}
/// Recursively calls itself while we have two or more base types.
template <typename TSource, typename TBase0, typename TBase1, typename... TBases>
static void *QueryCastList(TSource &obj, const GUID &riid) noexcept {
void *result = QueryCastList<TSource, TBase0>(obj, riid);
return (result) ? result : QueryCastList<TSource, TBase1, TBases...>(obj, riid);
}
/// An implementation for a type list with just one type.
template <typename TSource, typename TBase>
static void *QueryCastList(TSource &obj, const GUID &riid) noexcept {
return QueryCast<TBase>(static_cast<TBase *>(&obj), riid);
}
private:
template <typename T>
static void *GuidQueryCast(_In_ T * /*obj*/, const GUID & /*riid*/, Mso::Details::GuidUtils::FalseType *) noexcept {
// Type has no GUID: do nothing
return nullptr;
}
template <typename T>
static void *GuidQueryCast(_In_ T *obj, const GUID &riid, Mso::Details::GuidUtils::TrueType *) noexcept {
// Typecast to void* to force choosing QueryCast overload that checks type's GUID.
return QueryCast<T>(static_cast<void *>(obj), riid);
}
};
/// Helps to implement static cast for the cases when multiple base types implement the same interface.
/// E.g. we want to cast to IUnknown but there are multiple base interfaces inherited from it.
/// static_cast<IUnknown*> fails because it does not know which IUnknown to choose.
/// This implementation chooses the first one to resolve the conflict.
template <typename TTarget>
struct StaticCastHelper;
template <typename TTarget>
struct StaticCastHelper<TTarget *> {
/// Try to cast the first base type if it is inherited from TTarget.
template <typename TSource, typename TBase0, typename... TBases>
static TTarget *CastFirst(TSource *source) noexcept {
return CastIf<TSource, TBase0, TBases...>(typename std::is_base_of<TTarget, TBase0>::type(), source);
}
/// A case when no base types are inherited from TTarget.
template <typename TSource>
static TTarget *CastFirst(TSource * /*source*/) noexcept {
return nullptr;
}
private:
/// First base type is inherited from TTarget. Cast it to TTarget.
template <typename TSource, typename TBase0, typename... TBases>
static TTarget *CastIf(std::true_type /*isConvertible?*/, TSource *source) noexcept {
return Cast<TBase0>(/*tag:*/ 0, static_cast<TBase0 *>(source));
}
/// First base type is not inherited from TTarget. Recursively call CastFirst for the remaining base types.
template <typename TSource, typename TBase0, typename... TBases>
static TTarget *CastIf(std::false_type /*isConvertible?*/, TSource *source) noexcept {
return CastFirst<TSource, TBases...>(source);
}
/// To have a lower priority when matching an int tag parameter.
struct IntWrapper {
IntWrapper(int) noexcept {}
};
/// If TSource has a StaticCastElseNull method then call it to do the static cast.
template <typename TSource>
static auto Cast(int /*tag*/, TSource *source) noexcept
-> decltype(source->template StaticCastElseNull<TTarget *>()) {
return source->template StaticCastElseNull<TTarget *>();
}
/// Cast using static_cast. It has a lower priority than previous method because we use IntWrapper tag instead of int.
template <typename TSource>
static TTarget *Cast(IntWrapper /*tag*/, TSource *source) noexcept {
return static_cast<TTarget *>(source);
}
};
//
// Helper templates to implement QueryCast.
//
/// Implements QueryCast for the case when object implements an interface derived from a base interface, and we want to
/// to query the base interface by its GUID.
/// E.g. struct IDerived : IBase {}
/// class MyClass : Mso::QueryCastChain< IDerived, IBase >
template <typename T, typename... TBaseTypes>
class DECLSPEC_NOVTABLE QueryCastChain : public T {
public:
void *QueryCast(const GUID &riid) noexcept {
return InternalQueryCast<T, TBaseTypes...>(riid);
}
protected:
template <typename... TArgs>
QueryCastChain(TArgs &&... args) noexcept : T(std::forward<TArgs>(args)...) {}
private:
// Recursively calls itself while we have two or more base types.
template <typename TBaseType0, typename TBaseType1, typename... TOtherBaseTypes>
void *InternalQueryCast(const GUID &riid) noexcept {
void *result = InternalQueryCast<TBaseType0>(riid);
return (result) ? result : InternalQueryCast<TBaseType1, TOtherBaseTypes...>(riid);
}
template <typename TBaseType>
void *InternalQueryCast(const GUID &riid) noexcept {
static_assert(std::is_base_of<TBaseType, T>::value, "T must be inherited from TBaseType");
return QueryCastHelper::QueryCast<TBaseType>(static_cast<TBaseType *>(this), riid);
}
};
/// Implements the QueryCast that can return the derived type by its GUID.
/// It can be used to query for the most derived concrete type.
template <typename T>
class QueryCastDerived {
public:
void *QueryCast(const GUID &riid) noexcept {
if (riid == __uuidof(T)) {
return static_cast<T *>(this);
}
return nullptr;
}
};
/// Allows to associate a GUID for a type that works only in the scope of the QueryCast operation.
/// This method can be used if type has no associated GUID, but we still want to query for it.
template <typename T, const GUID *piid = static_cast<const GUID *>(nullptr)>
class DECLSPEC_NOVTABLE QueryCastGuid : public T {
public:
void *QueryCast(const GUID &riid) noexcept {
if (*Mso::ResolveGuidPtr<T, piid>::Guid == riid) {
return static_cast<T *>(this);
}
return nullptr;
}
protected:
template <typename... TArgs>
QueryCastGuid(TArgs &&... args) noexcept : T(std::forward<TArgs>(args)...) {}
};
/// Implements the QueryCast that does not do any query cast for a type.
/// It can be useful when we want to pass a base type as a part of base type list to the QueryCastList, but do
/// not want to query for this type.
template <typename T>
class DECLSPEC_NOVTABLE QueryCastHidden : public T {
public:
void *QueryCast(const GUID & /*riid*/) noexcept {
(void)(this); // To avoid OACR warning that method can be static
return nullptr;
}
protected:
template <typename... TArgs>
QueryCastHidden(TArgs &&... args) noexcept : T(std::forward<TArgs>(args)...) {}
};
/// Delegates the QueryCast implementation to the list of the base types.
/// If a constructor with a non-empty set of parameters then they are forwarded to the TBase0.
template <typename TBase0, typename... TBases>
class DECLSPEC_NOVTABLE QueryCastList : public TBase0, public TBases... {
using CastList = int; // TODO: This is a temporary variable. We will have to expand this concept to implement shallow
// inheritance tree for UnknownObject.
// The goal is to have "using CastList = CastList<TBase0, TBases...>" in UnknownObject.
using ThisType = QueryCastList;
protected:
template <typename... TArgs>
QueryCastList(TArgs &&... args) noexcept : TBase0(std::forward<TArgs>(args)...) {}
public:
void *QueryCast(const GUID &riid) noexcept {
return QueryCastHelper::QueryCastList<ThisType, TBase0, TBases...>(*this, riid);
}
template <typename TTarget>
TTarget StaticCastElseNull() noexcept {
return StaticCastHelper<TTarget>::template CastFirst<ThisType, TBase0, TBases...>(this);
}
#pragma warning(suppress : 4265) // class has virtual functions, but destructor is not virtual
};
/**
A helper class to call QueryCast method for an object.
There are two supported cases:
(1) type has a QueryCast instance method
(2) type is inherited from IUnknown and the implementation supports initialization of a QueryCastBridge instance
inside its IUnknown::QueryInterface() implementation.
The QueryCast typecasting does not call AddRef.
*/
MSO_STRUCT_GUID(QueryCastBridge, "A39D5FC8-0641-4EEE-8C97-DDEF114D487D")
struct QueryCastBridge {
// DECLARE_COPYCONSTR_AND_ASSIGNMENT(QueryCastBridge);
void *Object; // It must be a first field. In that case **ppvObject in QueryInterface will have the same semantic as
// with the normal QueryInterface calls.
const GUID &ObjectId;
};
namespace Details {
/// Helper class for query_cast function to allow specializations based on TTarget.
template <typename TTarget>
struct QueryCastConverter; // Default case is undefined.
// Specialization for reference conversion
template <typename TTarget>
struct QueryCastConverter<TTarget &> {
template <typename TSource>
static TTarget &QueryCast(const TSource &source) noexcept {
using SourceType = std::decay_t<TSource>;
using TargetType = std::decay_t<TTarget>;
static_assert(!std::is_pointer<SourceType>::value, "Cannot convert pointer to a reference.");
SourceType *nonConstSource = const_cast<SourceType *>(&source);
QueryCastBridge bridge = {nullptr, __uuidof(TargetType)};
VerifySucceededElseCrashTag(
nonConstSource->QueryInterface(__uuidof(QueryCastBridge), reinterpret_cast<void **>(&bridge)),
0x0100370d /* tag_bad2n */);
TargetType *target = static_cast<TargetType *>(bridge.Object);
VerifyElseCrashSzTag(target, "Query cast failed for a reference type.", 0x0100370e /* tag_bad2o */);
return static_cast<TTarget &>(*target);
}
};
// Specialization for pointer conversion
template <typename TTarget>
struct QueryCastConverter<TTarget *> {
template <typename TSource>
static TTarget *QueryCast(const TSource &source) noexcept {
using SourceType = std::remove_const_t<std::remove_pointer_t<std::decay_t<TSource>>>;
using TargetType = std::decay_t<TTarget>;
static_assert(std::is_pointer<TSource>::value, "Cannot convert non-pointer to a pointer.");
if (source != nullptr) {
SourceType *nonConstSource = const_cast<SourceType *>(source);
QueryCastBridge bridge = {nullptr, __uuidof(TargetType)};
if (nonConstSource->QueryInterface(__uuidof(QueryCastBridge), reinterpret_cast<void **>(&bridge)) == S_OK) {
TargetType *target = static_cast<TargetType *>(bridge.Object);
return static_cast<TTarget *>(target);
}
}
return nullptr;
}
};
} // namespace Details
} // namespace Mso
/**
query_cast does a dynamic cast based on a type GUID.
It does not call AddRef. Caller of this method is responsible for the object's lifetime management.
TTarget is required to be either a pointer or a reference (similar to dynamic_cast).
E.g. query_cast< IMyIntf* >( x ), or query_cast< IMyIntf& >( x ).
If query_cast fails to convert to a pointer type then it returns nullptr.
If query_cast fails to convert to a reference type then it crashes the app.
For this method to work, the TSource class must support initialization of QueryCastBridge struct
when queried for its GUID. UnknownObject in core\msoUnknownObject.h provides all necessary support.
query_cast can be used when we want to do a dynamic cast and do not need to call AddRef to control object lifetime.
*/
template <typename TTarget, typename TSource>
TTarget query_cast(TSource &&source) noexcept {
return Mso::Details::QueryCastConverter<TTarget>::QueryCast(std::forward<TSource>(source));
}
#pragma warning(pop)
#endif // MSO_OBJECT_QUERYCAST_H
| [
"bryan.guner@gmail.com"
] | bryan.guner@gmail.com |
01193546c3f256a26ff09ed4df20c5166b3a4f85 | 0d555035b1ccd7a23389fd64b59d396bd1ea8230 | /PalindromePairs/PalindromePairs/main.cpp | 34d26ec84be6214306de5d5b6aca9d8177e64b10 | [] | no_license | s510702/leetcode | 6f22d142003fa2b29eee0a3cf225ada2843a0aec | 47525b38c66ca949935f095e6a29fb117c361903 | refs/heads/master | 2020-07-16T07:17:08.664966 | 2016-11-16T23:47:55 | 2016-11-16T23:47:55 | 73,949,939 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 540 | cpp | //
// main.cpp
// PalindromePairs
//
// Created by Yang Zhao on 9/20/16.
// Copyright © 2016 Yang Zhao. All rights reserved.
//
#include <iostream>
#include <vector>
using namespace std;
class Solution {
class Word
{
map<char c, >
}
public:
vector<vector<int>> palindromePairs(vector<string>& words) {
vector<vector<int>> results;
return results;
}
};
int main(int argc, const char * argv[]) {
// insert code here...
std::cout << "Hello, World!\n";
return 0;
}
| [
"yangzhao@Yangs-MacBook-Pro.local"
] | yangzhao@Yangs-MacBook-Pro.local |
380e6c2fa96a0929936dbed740a6a8057ebf2a3b | ade4dc820bd67a989904c5b50319ea79bd77f6af | /src/FusionEKF.cpp | b1d344cd3687bd6e4cf5862c22ab5afbb36eefce | [] | no_license | istepanov/Udacity-CarND-Term2-Project1-Extended-Kalman-Filter | 6e7fd811b84979af361ed1674b7c2c8ebffddbfb | c3a2be699403a54c0ec4b98ffd17ee7e01e6ce48 | refs/heads/master | 2021-07-09T04:14:32.249485 | 2017-10-09T14:41:53 | 2017-10-09T14:41:53 | 105,500,579 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,393 | cpp | #include "FusionEKF.h"
#include "tools.h"
#include "Eigen/Dense"
#include <iostream>
using namespace std;
using Eigen::MatrixXd;
using Eigen::VectorXd;
using std::vector;
/*
* Constructor.
*/
FusionEKF::FusionEKF() {
is_initialized_ = false;
previous_timestamp_ = 0;
// initializing matrices
R_laser_ = MatrixXd(2, 2);
R_radar_ = MatrixXd(3, 3);
H_laser_ = MatrixXd(2, 4);
Hj_ = MatrixXd(3, 4);
//measurement covariance matrix - laser
R_laser_ << 0.0225, 0,
0, 0.0225;
//measurement covariance matrix - radar
R_radar_ << 0.09, 0, 0,
0, 0.0009, 0,
0, 0, 0.09;
/**
DONE:
* Finish initializing the FusionEKF.
* Set the process and measurement noises
*/
H_laser_ <<
1, 0, 0, 0,
0, 1, 0, 0;
Hj_ <<
1, 1, 0, 0,
1, 1, 0, 0,
1, 1, 1, 1;
ekf_.F_ = MatrixXd(4, 4);
ekf_.F_ <<
1, 0, 1, 0,
0, 1, 0, 1,
0, 0, 1, 0,
0, 0, 0, 1;
ekf_.P_ = MatrixXd(4, 4);
ekf_.P_ <<
1, 0, 0, 0,
0, 1, 0, 0,
0, 0, 1000, 0,
0, 0, 0, 1000;
// acceleration noise
noise_ax_ = 9;
noise_ay_ = 9;
}
/**
* Destructor.
*/
FusionEKF::~FusionEKF() {}
void FusionEKF::ProcessMeasurement(const MeasurementPackage &measurement_pack) {
/*****************************************************************************
* Initialization
****************************************************************************/
if (!is_initialized_) {
/**
DONE:
* Initialize the state ekf_.x_ with the first measurement.
* Create the covariance matrix.
* Remember: you'll need to convert radar from polar to cartesian coordinates.
*/
// first measurement
cout << "EKF: " << endl;
ekf_.x_ = VectorXd(4);
ekf_.x_ << 0, 0, 0, 0;
ekf_.Q_ = MatrixXd(4, 4);
if (measurement_pack.sensor_type_ == MeasurementPackage::RADAR) {
/**
Convert radar from polar to cartesian coordinates and initialize state.
*/
float rho = measurement_pack.raw_measurements_(0);
float phi = measurement_pack.raw_measurements_(1);
ekf_.x_ << rho * cos(phi), rho * sin(phi), 0, 0;
} else if (measurement_pack.sensor_type_ == MeasurementPackage::LASER) {
/**
Initialize state.
*/
ekf_.x_ << measurement_pack.raw_measurements_(0), measurement_pack.raw_measurements_(1), 0, 0;
}
previous_timestamp_ = measurement_pack.timestamp_;
// done initializing, no need to predict or update
is_initialized_ = true;
return;
}
/*****************************************************************************
* Prediction
****************************************************************************/
/**
DONE:
* Update the state transition matrix F according to the new elapsed time.
- Time is measured in seconds.
* Update the process noise covariance matrix.
* Use noise_ax = 9 and noise_ay = 9 for your Q matrix.
*/
float dt = (measurement_pack.timestamp_ - previous_timestamp_) / 1000000.0; // convert to seconds
previous_timestamp_ = measurement_pack.timestamp_;
float dt_2 = dt * dt;
float dt_3 = dt_2 * dt;
float dt_4 = dt_3 * dt;
// update F matrix
ekf_.F_(0, 2) = dt;
ekf_.F_(1, 3) = dt;
// Update the process covariance matrix Q
ekf_.Q_ <<
dt_4/4*noise_ax_, 0, dt_3/2*noise_ax_, 0,
0, dt_4/4*noise_ay_, 0, dt_3/2*noise_ay_,
dt_3/2*noise_ax_, 0, dt_2*noise_ax_, 0,
0, dt_3/2*noise_ay_, 0, dt_2*noise_ay_;
ekf_.Predict();
/*****************************************************************************
* Update
****************************************************************************/
/**
DONE:
* Use the sensor type to perform the update step.
* Update the state and covariance matrices.
*/
if (measurement_pack.sensor_type_ == MeasurementPackage::RADAR) {
Hj_ = tools.CalculateJacobian(ekf_.x_);
ekf_.H_ = Hj_;
ekf_.R_=R_radar_;
ekf_.UpdateEKF(measurement_pack.raw_measurements_);
} else if (measurement_pack.sensor_type_ == MeasurementPackage::LASER) {
ekf_.H_ = H_laser_;
ekf_.R_ = R_laser_;
ekf_.Update(measurement_pack.raw_measurements_);
}
// print the output
cout << "x_ = " << ekf_.x_ << endl;
cout << "P_ = " << ekf_.P_ << endl;
}
| [
"dev@ilyastepanov.com"
] | dev@ilyastepanov.com |
0079f755f91b2770ed9b613490abef416b9c9d51 | cfbe32d3c679487610e0a8e924c33ab6aa64f3d1 | /hackerrank/bead.cpp | c5659372c16329926ffd8ce6ef2693a15e0f64e5 | [] | no_license | hophacker/algorithm_coding | 6062fafd00e276baeb5ef92198c6c1dab66b6184 | bfc9a124ed21eabf241590b90105427f0a2b6573 | refs/heads/master | 2020-06-04T00:41:25.378594 | 2014-07-07T00:50:35 | 2014-07-07T00:50:35 | 18,478,412 | 5 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 744 | cpp | #include <iostream>
#include <algorithm>
using namespace std;
#define F(i,L,R) for (int i = L; i < R; i++)
#define FE(i,L,R) for (int i = L; i <= R; i++)
#define ll long long
#define M 1000000007
int main ( int argc, char *argv[] ) {
int T, n, b[10];
ll F[31], res;
FE(i,1,30){
F[i] = 1;
F(t,0,i-2) F[i] = F[i] * i % M;
}
cin >> T;
while(T--){
cin >> n;
int sum = 0;
F(i,0,n) {
cin >> b[i];
sum += b[i];
}
res = 1;
F(i,0,n) res = res * F[b[i]] % M;
if (n > 1){
F(i,0,n-2) res = res * sum % M;
F(i,0,n) res = res * b[i] % M;
}
cout << res << endl;
}
return EXIT_SUCCESS;
}
| [
"jokerfeng2010@gmail.com"
] | jokerfeng2010@gmail.com |
66eced16abc2558d01cf27fefa61f9eb0129020c | fe4bcdb62fd61a27e93324de636faf2f8a51bb0a | /examples/src/jsonpath_examples.cpp | 6f71c6ffb906e056a5b18f56477a79e62d52061d | [
"BSL-1.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | phillipf/jsoncons | 47926a20b7b160281ca58e30aa818aaeb7656349 | cae3c8bb6a5d2a09b067203ebf2ee025555031f4 | refs/heads/master | 2021-01-22T19:49:50.533289 | 2017-03-09T13:55:33 | 2017-03-09T13:55:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,432 | cpp | // Copyright 2013 Daniel Parker
// Distributed under Boost license
#include <string>
#include <fstream>
#include <jsoncons/json.hpp>
#include <jsoncons_ext/jsonpath/json_query.hpp>
using namespace jsoncons;
using namespace jsoncons::jsonpath;
void json_query_examples()
{
std::ifstream is("input/booklist.json");
json booklist;
is >> booklist;
// The authors of books that are cheaper than $10
json result1 = json_query(booklist, "$.store.book[?(@.price < 10)].author");
std::cout << "(1) " << result1 << std::endl;
// The number of books
json result2 = json_query(booklist, "$..book.length");
std::cout << "(2) " << result2 << std::endl;
// The third book
json result3 = json_query(booklist, "$..book[2]");
std::cout << "(3)\n" << pretty_print(result3) << std::endl;
// All books whose author's name starts with Evelyn
json result4 = json_query(booklist, "$.store.book[?(@.author =~ /Evelyn.*?/)]");
std::cout << "(4)\n" << pretty_print(result4) << std::endl;
// The titles of all books that have isbn number
json result5 = json_query(booklist, "$..book[?(@.isbn)].title");
std::cout << "(5) " << result5 << std::endl;
// All authors and titles of books
json result6 = json_query(booklist, "$['store']['book']..['author','title']");
std::cout << "(6)\n" << pretty_print(result6) << std::endl;
}
void json_replace_example1()
{
std::ifstream is("input/booklist.json");
json booklist;
is >> booklist;
json_replace(booklist,"$.store.book[?(@.isbn == '0-553-21311-3')].price",10.0);
std::cout << pretty_print(booklist) << std::endl;
}
void json_replace_example2()
{
json j;
try
{
j = json::parse(R"(
{"store":
{"book": [
{"category": "reference",
"author": "Margaret Weis",
"title": "Dragonlance Series",
"price": 31.96}, {"category": "reference",
"author": "Brent Weeks",
"title": "Night Angel Trilogy",
"price": 14.70
}]}}
)");
}
catch (const parse_exception& e)
{
std::cout << e.what() << std::endl;
}
std::cout << ("1\n") << pretty_print(j) << std::endl;
json_replace(j,"$..book[?(@.price==31.96)].price", 30.9);
std::cout << ("2\n") << pretty_print(j) << std::endl;
}
void jsonpath_examples()
{
std::cout << "\nJsonPath examples\n\n";
json_query_examples();
json_replace_example1();
json_replace_example2();
std::cout << std::endl;
}
| [
"danielaparker@yahoo.com"
] | danielaparker@yahoo.com |
fdd8de2d610fd83754dc930f89b11e8bcbf9f579 | 96847c9677e2fb10ddb3fe5d1bdc6b6f6723eb64 | /src/main.cpp | 24f5833cf5106e3700dc0a4ac28dc86c2a9beeeb | [] | no_license | Stepze/stephans_projekt | d920af43e86e41c64da9a439be529945d05aed26 | 9a0b964f93cf66f3e1be68d17e1c680df5e87b2a | refs/heads/master | 2021-01-12T03:30:31.492892 | 2017-01-06T17:46:42 | 2017-01-06T17:46:42 | 78,221,814 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 236 | cpp | #include <iostream>
#include <stack.hpp>
int main() {
stack s;
try {
auto i = s.pop();
i = i + 2;
} catch(const std::exception& e){
std::cout << "Dumm gelaufen" << std::endl;
}
return 0;
} | [
"markus@markus@markusklemm.net"
] | markus@markus@markusklemm.net |
18757cac8c498f708d9936b20d3e34a2ebe1ece5 | b1df6b7fd6ec08a011ffcd6d07a7d42915c61e15 | /project/source/core/FastFunc.h | 27d356672950e0cdc93b6a63d802e69b00b68d86 | [
"MIT"
] | permissive | Shdorsh/carpg | dbca0277d3182ce4852e21826e05f423a5d7dd6f | 376130a1ed410116fc8a607601b327eae7dca383 | refs/heads/devel | 2022-06-17T04:01:27.682849 | 2018-12-01T21:23:58 | 2018-12-01T21:23:58 | 159,889,860 | 0 | 0 | MIT | 2022-06-02T07:12:48 | 2018-11-30T23:32:57 | C++ | UTF-8 | C++ | false | false | 19,858 | h | // https://gist.github.com/jwakely/6465273
#ifndef SSVU_FASTFUNC
#define SSVU_FASTFUNC
#include <cstring>
#include <type_traits>
#include <cassert>
#include <cstddef>
#include <memory>
#include <new>
#include <utility>
#ifdef _MSC_VER
#define noexcept //_NOEXCEPT
namespace ssvu
{
namespace Internal
{
class __single_inheritance AnyClass;
class AnyClass {};
using AnyPtrThis = AnyClass*;
using AnyPtrFunc = void(AnyClass::*)();
template<typename TReturn = void, typename... TArgs> using AnyPtrFuncT = TReturn(AnyClass::*)(TArgs...);
template<typename TReturn = void, typename... TArgs> using AnyPtrStaticFuncT = TReturn(*)(TArgs...);
constexpr std::size_t SingleMemFuncPtrSize{ sizeof(void(AnyClass::*)()) };
template<class TOut, class TIn> union HorribleUnion { TOut out; TIn in; };
template<class TOut, class TIn> inline TOut horrible_cast(TIn mIn) noexcept { HorribleUnion<TOut, TIn> u; static_assert(sizeof(TIn) == sizeof(u) && sizeof(TIn) == sizeof(TOut), "Cannot use horrible_cast<>"); u.in = mIn; return u.out; }
template<class TOut, class TIn> inline TOut unsafe_horrible_cast(TIn mIn) noexcept { HorribleUnion<TOut, TIn> u; u.in = mIn; return u.out; }
template<std::size_t TN>
struct SimplifyMemFunc
{
static constexpr std::size_t invalid_size_value = TN;
template<class TThis, class TFunc>
inline static AnyPtrThis convert(const TThis*, TFunc, AnyPtrFunc&) noexcept
{
static_assert(false, "Unsupported member function pointer on this compiler");
return 0;
}
};
template<>
struct SimplifyMemFunc<SingleMemFuncPtrSize>
{
template<class TThis, class TFunc>
inline static AnyPtrThis convert(const TThis* mThis, TFunc mFunc, AnyPtrFunc& mFuncOut) noexcept
{
mFuncOut = reinterpret_cast<AnyPtrFunc>(mFunc);
return reinterpret_cast<AnyPtrThis>(const_cast<TThis*>(mThis));
}
};
/*
Besides the standard conforming version above, the VC++ compiler has variable function pointer size depending
on function type, which is is not standard conforming. The original FastDelegate handled this but the FastFunc
ignored VC++ compliance issue. The FastDelegate solution is ported forward into this version to make it work.
Note: using the /vmg flag could make things work but it also breaks delegate equality comparison for!
*/
template<>
struct SimplifyMemFunc<SingleMemFuncPtrSize + sizeof(int)>
{
template<class TThis, class TFunc>
inline static AnyPtrThis convert(TThis* mThis, TFunc mFunc, AnyPtrFunc& mFuncOut) noexcept
{
union {
TFunc func;
struct {
AnyPtrFunc funcaddress; // points to the actual member function
int delta; // #BYTES to be added to the 'this' pointer
}s;
} u;
// Check that the horrible_cast will work
static_assert(sizeof(mFunc) == sizeof(u.s), "Cannot use horrible_cast<>");
u.func = mFunc;
mFuncOut = u.s.funcaddress;
return reinterpret_cast<AnyClass *>(reinterpret_cast<char *>(mThis) + u.s.delta);
}
};
struct MicrosoftVirtualMFP {
void (AnyClass::*codeptr)(); // points to the actual member function
int delta; // #bytes to be added to the 'this' pointer
int vtable_index; // or 0 if no virtual inheritance
};
struct GenericVirtualClass : virtual public AnyClass
{
typedef GenericVirtualClass * (GenericVirtualClass::*ProbePtrType)();
GenericVirtualClass * GetThis() { return this; }
};
template<>
struct SimplifyMemFunc<SingleMemFuncPtrSize + 2 * sizeof(int)>
{
template<class TThis, class TFunc>
inline static AnyPtrThis convert(const TThis* mThis, TFunc mFunc, AnyPtrFunc& mFuncOut) noexcept
{
union {
TFunc func;
AnyClass* (TThis::*ProbeFunc)();
MicrosoftVirtualMFP s;
} u;
u.func = mFunc;
mFuncOut = reinterpret_cast<AnyPtrFunc>(u.s.codeptr);
union {
GenericVirtualClass::ProbePtrType virtfunc;
MicrosoftVirtualMFP s;
} u2;
// Check that the horrible_cast<>s will work
static_assert(sizeof(mFunc) == sizeof(u.s) && sizeof(mFunc) == sizeof(u.ProbeFunc) && sizeof(u2.virtfunc) == sizeof(u2.s), "Cannot use horrible_cast<>");
// Unfortunately, taking the address of a MF prevents it from being inlined, so
// this next line can't be completely optimised away by the compiler.
u2.virtfunc = &GenericVirtualClass::GetThis;
u.s.codeptr = u2.s.codeptr;
return (const_cast<TThis*>(mThis)->*u.ProbeFunc)();
}
};
template<>
struct SimplifyMemFunc<SingleMemFuncPtrSize + 3 * sizeof(int)>
{
template<class TThis, class TFunc>
inline static AnyPtrThis convert(const TThis* mThis, TFunc mFunc, AnyPtrFunc& mFuncOut) noexcept
{
// The member function pointer is 16 bytes long. We can't use a normal cast, but
// we can use a union to do the conversion.
union {
TFunc func;
// In VC++ and ICL, an unknown_inheritance member pointer
// is internally defined as:
struct {
AnyPtrFunc funcaddress; // points to the actual member function
int delta; // #bytes to be added to the 'this' pointer
int vtordisp; // #bytes to add to 'this' to find the vtable
int vtable_index; // or 0 if no virtual inheritance
} s;
} u;
// Check that the horrible_cast will work
static_assert(sizeof(TFunc) == sizeof(u.s), "Cannot use horrible_cast<>");
u.func = mFunc;
mFuncOut = u.s.funcaddress;
int virtual_delta = 0;
if(u.s.vtable_index) { // Virtual inheritance is used
// First, get to the vtable.
// It is 'vtordisp' bytes from the start of the class.
const int * vtable = *reinterpret_cast<const int *const*>(reinterpret_cast<const char *>(mThis) + u.s.vtordisp);
// 'vtable_index' tells us where in the table we should be looking.
virtual_delta = u.s.vtordisp + *reinterpret_cast<const int *>(reinterpret_cast<const char *>(vtable) + u.s.vtable_index);
}
// The int at 'virtual_delta' gives us the amount to add to 'this'.
// Finally we can add the three components together. Phew!
return reinterpret_cast<AnyClass *>(reinterpret_cast<char *>(const_cast<TThis*>(mThis)) + u.s.delta + virtual_delta);
}
};
template<typename TReturn, typename... TArgs>
struct Closure
{
private:
using PtrFuncT = AnyPtrFuncT<TReturn, TArgs...>;
using PtrStaticFuncT = AnyPtrStaticFuncT<TReturn, TArgs...>;
AnyPtrThis ptrThis{ nullptr };
AnyPtrFunc ptrFunction{ nullptr };
public:
template<class TThis, class TFunc> inline void bind(TThis* mThis, TFunc mFunc) noexcept { ptrThis = ssvu::Internal::SimplifyMemFunc<sizeof(mFunc)>::convert(mThis, mFunc, ptrFunction); }
template<class TThis, class TInvoker> inline void bind(TThis* mThis, TInvoker mInvoker, PtrStaticFuncT mFunc) noexcept
{
if(mFunc == nullptr) ptrFunction = nullptr; else bind(mThis, mInvoker);
ptrThis = horrible_cast<AnyPtrThis>(mFunc);
}
inline bool operator==(std::nullptr_t) const noexcept { return ptrThis == nullptr && ptrFunction == nullptr; }
inline bool operator==(const Closure& mRhs) const noexcept { return ptrThis == mRhs.ptrThis && ptrFunction == mRhs.ptrFunction; }
inline bool operator==(PtrStaticFuncT mPtr) const noexcept { return mPtr == nullptr ? *this == nullptr : mPtr == reinterpret_cast<PtrStaticFuncT>(getStaticFunc()); }
inline bool operator!=(std::nullptr_t) const noexcept { return !operator==(nullptr); }
inline bool operator!=(const Closure& mRhs) const noexcept { return !operator==(mRhs); }
inline bool operator!=(PtrStaticFuncT mPtr) const noexcept { return !operator==(mPtr); }
inline bool operator<(const Closure& mRhs) const { return ptrThis != mRhs.ptrThis ? ptrThis < mRhs.ptrThis : std::memcmp(&ptrFunction, &mRhs.ptrFunction, sizeof(ptrFunction)) < 0; }
inline bool operator>(const Closure& mRhs) const { return !operator<(mRhs); }
inline std::size_t getHash() const noexcept { return reinterpret_cast<std::size_t>(ptrThis) ^ Internal::unsafe_horrible_cast<std::size_t>(ptrFunction); }
inline AnyPtrThis getPtrThis() const noexcept { return ptrThis; }
inline PtrFuncT getPtrFunction() const noexcept { return reinterpret_cast<PtrFuncT>(ptrFunction); }
inline PtrStaticFuncT getStaticFunc() const noexcept { return horrible_cast<PtrStaticFuncT>(this); }
};
template<typename TReturn, typename... TArgs>
class FastFuncImpl
{
protected:
using PtrStaticFuncT = AnyPtrStaticFuncT<TReturn, TArgs...>;
private:
Closure<TReturn, TArgs...> closure;
inline TReturn invokeStaticFunc(TArgs... mArgs) const { return (*(closure.getStaticFunc()))(std::forward<TArgs>(mArgs)...); }
protected:
template<class TThis, class TFunc> inline void bind(TThis* mThis, TFunc mFunc) noexcept { closure.bind(mThis, mFunc); }
template<class TFunc> inline void bind(TFunc mFunc) noexcept { closure.bind(this, &FastFuncImpl::invokeStaticFunc, mFunc); }
public:
inline FastFuncImpl() noexcept = default;
inline FastFuncImpl(std::nullptr_t) noexcept { }
inline FastFuncImpl(PtrStaticFuncT mFunc) noexcept { bind(mFunc); }
template<typename X, typename Y> inline FastFuncImpl(X* mThis, Y mFunc) noexcept { bind(mThis, mFunc); }
inline FastFuncImpl& operator=(PtrStaticFuncT mFunc) noexcept { bind(mFunc); }
inline TReturn operator()(TArgs... mArgs) const { return (closure.getPtrThis()->*(closure.getPtrFunction()))(std::forward<TArgs>(mArgs)...); }
inline bool operator==(std::nullptr_t) const noexcept { return closure == nullptr; }
inline bool operator==(const FastFuncImpl& mImpl) const noexcept { return closure == mImpl.closure; }
inline bool operator==(PtrStaticFuncT mFuncPtr) const noexcept { return closure == mFuncPtr; }
inline bool operator!=(std::nullptr_t) const noexcept { return !operator==(nullptr); }
inline bool operator!=(const FastFuncImpl& mImpl) const noexcept { return !operator==(mImpl); }
inline bool operator!=(PtrStaticFuncT mFuncPtr) const noexcept { return !operator==(mFuncPtr); }
inline bool operator<(const FastFuncImpl& mImpl) const { return closure < mImpl.closure; }
inline bool operator>(const FastFuncImpl& mImpl) const { return !operator<(mImpl); }
inline operator bool() const { return closure != nullptr; }
};
}
template<typename T> struct MemFuncToFunc;
template<typename TReturn, typename TThis, typename... TArgs> struct MemFuncToFunc<TReturn(TThis::*)(TArgs...) const> { using Type = TReturn(*)(TArgs...); };
#define ENABLE_IF_CONV_TO_FUN_PTR(x) typename std::enable_if<std::is_constructible<typename MemFuncToFunc<decltype(&std::decay<x>::type::operator())>::Type, x>::value>::type* = nullptr
#define ENABLE_IF_NOT_CONV_TO_FUN_PTR(x) typename std::enable_if<!std::is_constructible<typename MemFuncToFunc<decltype(&std::decay<x>::type::operator())>::Type, x>::value>::type* = nullptr
#define ENABLE_IF_SAME_TYPE(x, y) typename = typename std::enable_if<!std::is_same<x, typename std::decay<y>::type>{}>::type
template<typename T> class FastFunc;
template<typename TReturn, typename... TArgs>
class FastFunc<TReturn(TArgs...)>
: public Internal::FastFuncImpl<TReturn, TArgs...>
{
private:
using BaseType = Internal::FastFuncImpl<TReturn, TArgs...>;
std::shared_ptr<void> storage;
template<typename T> inline static void funcDeleter(void* mPtr) { static_cast<T*>(mPtr)->~T(); operator delete(mPtr); }
public:
// using BaseType::BaseType;
inline FastFunc(std::nullptr_t) noexcept {}
inline FastFunc(PtrStaticFuncT mFunc) noexcept : BaseType(mFunc) {}
template<typename X, typename Y> inline FastFunc(X* mThis, Y mFunc) noexcept : BaseType(mThis, mFunc) {}
inline FastFunc() noexcept = default;
template<typename TFunc, ENABLE_IF_SAME_TYPE(FastFunc, TFunc)>
inline FastFunc(TFunc&& mFunc, ENABLE_IF_CONV_TO_FUN_PTR(TFunc))
{
using FuncType = typename std::decay<TFunc>::type;
this->bind(&mFunc, &FuncType::operator());
}
template<typename TFunc, ENABLE_IF_SAME_TYPE(FastFunc, TFunc)>
inline FastFunc(TFunc&& mFunc, ENABLE_IF_NOT_CONV_TO_FUN_PTR(TFunc))
: storage(operator new(sizeof(TFunc)), funcDeleter<typename std::decay<TFunc>::type>)
{
using FuncType = typename std::decay<TFunc>::type;
new (storage.get()) FuncType(std::forward<TFunc>(mFunc));
this->bind(storage.get(), &FuncType::operator());
}
};
#undef ENABLE_IF_CONV_TO_FUN_PTR
#undef ENABLE_IF_NOT_CONV_TO_FUN_PTR
#undef ENABLE_IF_SAME_TYPE
}
#else
namespace ssvu
{
namespace Internal
{
class AnyClass;
using AnyPtrThis = AnyClass*;
using AnyPtrFunc = void(AnyClass::*)();
template<typename TReturn = void, typename... TArgs> using AnyPtrFuncT = TReturn(AnyClass::*)(TArgs...);
template<typename TReturn = void, typename... TArgs> using AnyPtrStaticFuncT = TReturn(*)(TArgs...);
constexpr std::size_t SingleMemFuncPtrSize{ sizeof(void(AnyClass::*)()) };
template<class TOut, class TIn> union HorribleUnion { TOut out; TIn in; };
template<class TOut, class TIn> inline TOut horrible_cast(TIn mIn) noexcept { HorribleUnion<TOut, TIn> u; static_assert(sizeof(TIn) == sizeof(u) && sizeof(TIn) == sizeof(TOut), "Cannot use horrible_cast<>"); u.in = mIn; return u.out; }
template<class TOut, class TIn> inline TOut unsafe_horrible_cast(TIn mIn) noexcept { HorribleUnion<TOut, TIn> u; u.in = mIn; return u.out; }
template<std::size_t TN>
struct SimplifyMemFunc
{
template<class TThis, class TFunc>
inline static AnyPtrThis convert(const TThis*, TFunc, AnyPtrFunc&) noexcept
{
static_assert(TN - 100, "Unsupported member function pointer on this compiler");
return 0;
}
};
template<>
struct SimplifyMemFunc<SingleMemFuncPtrSize>
{
template<class TThis, class TFunc>
inline static AnyPtrThis convert(const TThis* mThis, TFunc mFunc, AnyPtrFunc& mFuncOut) noexcept
{
mFuncOut = reinterpret_cast<AnyPtrFunc>(mFunc);
return reinterpret_cast<AnyPtrThis>(const_cast<TThis*>(mThis));
}
};
template<typename TReturn, typename... TArgs>
struct Closure
{
private:
using PtrFuncT = AnyPtrFuncT<TReturn, TArgs...>;
using PtrStaticFuncT = AnyPtrStaticFuncT<TReturn, TArgs...>;
AnyPtrThis ptrThis{ nullptr };
AnyPtrFunc ptrFunction{ nullptr };
public:
template<class TThis, class TFunc> inline void bind(TThis* mThis, TFunc mFunc) noexcept { ptrThis = SimplifyMemFunc<sizeof(mFunc)>::convert(mThis, mFunc, ptrFunction); }
template<class TThis, class TInvoker> inline void bind(TThis* mThis, TInvoker mInvoker, PtrStaticFuncT mFunc) noexcept
{
if(mFunc == nullptr) ptrFunction = nullptr; else bind(mThis, mInvoker);
ptrThis = horrible_cast<AnyPtrThis>(mFunc);
}
inline bool operator==(std::nullptr_t) const noexcept { return ptrThis == nullptr && ptrFunction == nullptr; }
inline bool operator==(const Closure& mRhs) const noexcept { return ptrThis == mRhs.ptrThis && ptrFunction == mRhs.ptrFunction; }
inline bool operator==(PtrStaticFuncT mPtr) const noexcept { return mPtr == nullptr ? *this == nullptr : mPtr == reinterpret_cast<PtrStaticFuncT>(getStaticFunc()); }
inline bool operator!=(std::nullptr_t) const noexcept { return !operator==(nullptr); }
inline bool operator!=(const Closure& mRhs) const noexcept { return !operator==(mRhs); }
inline bool operator!=(PtrStaticFuncT mPtr) const noexcept { return !operator==(mPtr); }
inline bool operator<(const Closure& mRhs) const { return ptrThis != mRhs.ptrThis ? ptrThis < mRhs.ptrThis : std::memcmp(&ptrFunction, &mRhs.ptrFunction, sizeof(ptrFunction)) < 0; }
inline bool operator>(const Closure& mRhs) const { return !operator<(mRhs); }
inline std::size_t getHash() const noexcept { return reinterpret_cast<std::size_t>(ptrThis) ^ Internal::unsafe_horrible_cast<std::size_t>(ptrFunction); }
inline AnyPtrThis getPtrThis() const noexcept { return ptrThis; }
inline PtrFuncT getPtrFunction() const noexcept { return reinterpret_cast<PtrFuncT>(ptrFunction); }
inline PtrStaticFuncT getStaticFunc() const noexcept { return horrible_cast<PtrStaticFuncT>(this); }
};
template<typename TReturn, typename... TArgs>
class FastFuncImpl
{
private:
using PtrStaticFuncT = AnyPtrStaticFuncT<TReturn, TArgs...>;
Closure<TReturn, TArgs...> closure;
inline TReturn invokeStaticFunc(TArgs... mArgs) const { return (*(closure.getStaticFunc()))(std::forward<TArgs>(mArgs)...); }
protected:
template<class TThis, class TFunc> inline void bind(TThis* mThis, TFunc mFunc) noexcept { closure.bind(mThis, mFunc); }
template<class TFunc> inline void bind(TFunc mFunc) noexcept { closure.bind(this, &FastFuncImpl::invokeStaticFunc, mFunc); }
public:
inline FastFuncImpl() noexcept = default;
inline FastFuncImpl(std::nullptr_t) noexcept {}
inline FastFuncImpl(PtrStaticFuncT mFunc) noexcept { bind(mFunc); }
template<typename X, typename Y> inline FastFuncImpl(X* mThis, Y mFunc) noexcept { bind(mThis, mFunc); }
inline FastFuncImpl& operator=(PtrStaticFuncT mFunc) noexcept { bind(mFunc); }
inline TReturn operator()(TArgs... mArgs) const { return (closure.getPtrThis()->*(closure.getPtrFunction()))(std::forward<TArgs>(mArgs)...); }
inline bool operator==(std::nullptr_t) const noexcept { return closure == nullptr; }
inline bool operator==(const FastFuncImpl& mImpl) const noexcept { return closure == mImpl.closure; }
inline bool operator==(PtrStaticFuncT mFuncPtr) const noexcept { return closure == mFuncPtr; }
inline bool operator!=(std::nullptr_t) const noexcept { return !operator==(nullptr); }
inline bool operator!=(const FastFuncImpl& mImpl) const noexcept { return !operator==(mImpl); }
inline bool operator!=(PtrStaticFuncT mFuncPtr) const noexcept { return !operator==(mFuncPtr); }
inline bool operator<(const FastFuncImpl& mImpl) const { return closure < mImpl.closure; }
inline bool operator>(const FastFuncImpl& mImpl) const { return !operator<(mImpl); }
};
}
template<typename T> struct MemFuncToFunc;
template<typename TReturn, typename TThis, typename... TArgs> struct MemFuncToFunc<TReturn(TThis::*)(TArgs...) const> { using Type = TReturn(*)(TArgs...); };
#define ENABLE_IF_CONV_TO_FUN_PTR(x) typename std::enable_if<std::is_constructible<typename MemFuncToFunc<decltype(&std::decay<x>::type::operator())>::Type, x>::value>::type* = nullptr
#define ENABLE_IF_NOT_CONV_TO_FUN_PTR(x) typename std::enable_if<!std::is_constructible<typename MemFuncToFunc<decltype(&std::decay<x>::type::operator())>::Type, x>::value>::type* = nullptr
#define ENABLE_IF_SAME_TYPE(x, y) typename = typename std::enable_if<!std::is_same<x, typename std::decay<y>::type>{}>::type
template<typename T> class FastFunc;
template<typename TReturn, typename... TArgs>
class FastFunc<TReturn(TArgs...)>
: public Internal::FastFuncImpl<TReturn, TArgs...>
{
private:
using BaseType = Internal::FastFuncImpl<TReturn, TArgs...>;
std::shared_ptr<void> storage;
template<typename T> inline static void funcDeleter(void* mPtr) { static_cast<T*>(mPtr)->~T(); operator delete(mPtr); }
public:
using BaseType::BaseType;
inline FastFunc() noexcept = default;
template<typename TFunc, ENABLE_IF_SAME_TYPE(FastFunc, TFunc)>
inline FastFunc(TFunc&& mFunc, ENABLE_IF_CONV_TO_FUN_PTR(TFunc))
{
using FuncType = typename std::decay<TFunc>::type;
this->bind(&mFunc, &FuncType::operator());
}
template<typename TFunc, ENABLE_IF_SAME_TYPE(FastFunc, TFunc)>
inline FastFunc(TFunc&& mFunc, ENABLE_IF_NOT_CONV_TO_FUN_PTR(TFunc))
: storage(operator new(sizeof(TFunc)), funcDeleter<typename std::decay<TFunc>::type>)
{
using FuncType = typename std::decay<TFunc>::type;
new (storage.get()) FuncType(std::forward<TFunc>(mFunc));
this->bind(storage.get(), &FuncType::operator());
}
};
#undef ENABLE_IF_CONV_TO_FUN_PTR
#undef ENABLE_IF_NOT_CONV_TO_FUN_PTR
#undef ENABLE_IF_SAME_TYPE
}
#endif
#endif
| [
"tomash4my@gmail.com"
] | tomash4my@gmail.com |
6a5b5db5e034c27f8ded22c0b01a23f27d2b3cd5 | fce9a9f35736e81b91b4103dd3c6a937047e94e3 | /src/preprocessor.cpp | 562634f9b0f32ce2ea028879b7a800ffb76d203e | [] | no_license | sweetkristas/wte | 8eae160187a83775e67ec13cd285449e49f34088 | d4a13f679d057c62565fd8c306c8303dfea06b13 | refs/heads/master | 2020-05-17T00:36:51.529301 | 2012-07-10T08:52:35 | 2012-07-10T08:52:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,949 | cpp | /* $Id: formula.cpp 25895 2008-04-17 18:57:13Z mordante $ */
/*
Copyright (C) 2007 by David White <dave@whitevine.net>
Part of the Silver Tree Project
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2 or later.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY.
See the COPYING file for more details.
*/
#include <algorithm>
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <boost/algorithm/string.hpp>
#include "foreach.hpp"
#include "formula.hpp"
#include "preprocessor.hpp"
#include "filesystem.hpp"
#include "json_parser.hpp"
#include "module.hpp"
#include "variant_callable.hpp"
std::string preprocess(const std::string& input){
std::string output_string;
bool in_comment = false;
std::string::const_iterator i = input.begin();
while(i != input.end()){
if(*i == '#'){//enter a single-line comment
in_comment = true;}
if(*i == '\n' && in_comment){
in_comment = false;}
if(*i == '@' && !in_comment){
// process pre-processing directive here. See what comes after the '@' and do something appropriate
static const std::string IncludeString = "@include";
if(size_t(input.end() - i) > IncludeString.size() && std::equal(IncludeString.begin(), IncludeString.end(), i)) {
std::string filename_string;
i += IncludeString.size(); //skip past the directive - we've tested that it exists
//test for an argument to @include - e.g. "filename.cfg". First the open quote:
std::string::const_iterator quote = std::find(i, input.end(), '"');
if(quote == input.end()) {
std::cerr << "We didn't find a opening quote. Syntax error." << std::endl;
}
if(std::count_if(i, quote, isspace) != quote - i) {
// # of whitespaces != number of intervening chars => something else was present. Syntax Error.
std::cerr << "# of whitespaces != number of intervening chars." << std::endl;
}
i = quote + 1; //we've found a quote, advance past it
//now the closing quote, and use it to find what's inbetween:
std::string::const_iterator endQuote = std::find(i, input.end(), '"');
if(endQuote == input.end()) {
std::cerr << "We didn't find a closing quote. Syntax error." << std::endl;
}
filename_string = std::string(i, endQuote);
i = endQuote + 1;
output_string += preprocess(sys::read_file(module::map_file(filename_string)));
}
} else {
//nothing special to process, just copy the chars across
output_string.push_back(*i);
}
++i;
}
return output_string;
}
variant preprocess_string_value(const std::string& input, const game_logic::formula_callable* callable)
{
if(input.empty() || input[0] != '@') {
return variant(input);
}
if(input.size() > 1 && input[1] == '@') {
//two @ at start of input just means a literal '@'.
return variant(std::string(input.begin()+1, input.end()));
}
if(input == "@base" || input == "@derive" || input == "@call" || input == "@flatten") {
return variant(input);
}
std::string::const_iterator i = std::find(input.begin(), input.end(), ' ');
const std::string directive(input.begin(), i);
if(directive == "@include") {
while(i != input.end() && *i == ' ') {
++i;
}
const std::string fname(i, input.end());
//Search for a colon, which indicates an expression after the filename.
std::string::const_iterator colon = std::find(fname.begin(), fname.end(), ':');
if(colon != fname.end() && std::count(fname.begin(), colon, ' ') == 0) {
const std::string file(fname.begin(), colon);
variant doc = json::parse_from_file(module::map_file(file));
const std::string expr(colon+1, fname.end());
const variant expr_variant(expr);
const game_logic::formula f(expr_variant);
variant callable = variant_callable::create(&doc);
const game_logic::formula_callable* vars = callable.as_callable();
if(vars) {
return f.execute(*vars);
}
}
std::vector<std::string> includes;
boost::split(includes, fname, std::bind2nd(std::equal_to<char>(), ' '));
if(includes.size() == 1) {
return json::parse_from_file(module::map_file(fname));
} else {
//treatment of a list of @includes is to make non-list items
//into singleton lists, and then concatenate all lists together.
std::vector<variant> res;
foreach(const std::string& inc, includes) {
variant v = json::parse_from_file(module::map_file(inc));
if(v.is_list()) {
foreach(const variant& item, v.as_list()) {
res.push_back(item);
}
} else {
res.push_back(v);
}
}
return variant(&res);
}
} else if(directive == "@eval") {
game_logic::formula f(variant(std::string(i, input.end())));
if(callable) {
return f.execute(*callable);
} else {
return f.execute();
}
} else {
throw preprocessor_error();
}
}
| [
"sweet.kristas@gmail.com"
] | sweet.kristas@gmail.com |
85572a653bc075e5bb8972632265121981386613 | 2e4f485ec35f5c525f28eaee0a1005555cf61a21 | /messagecomposer/src/mdn/mdnwarningwidgetjob.cpp | e7351a9e5df71fa00d9c3e9ba38a7fb5448c1042 | [
"CC0-1.0",
"BSD-3-Clause"
] | permissive | KDE/messagelib | 8b0174c5e4c95344a828b8bf1c31ff52cc6663d7 | ab4f300a88bb9414734296d0031cbb905a53999c | refs/heads/master | 2023-08-30T23:50:09.096181 | 2023-08-28T02:16:39 | 2023-08-28T02:16:39 | 47,712,197 | 13 | 6 | null | null | null | null | UTF-8 | C++ | false | false | 3,034 | cpp | /*
SPDX-FileCopyrightText: 2022-2023 Laurent Montel <montel@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include "mdnwarningwidgetjob.h"
#include "messagecomposer_debug.h"
#include <MessageComposer/MDNAdviceHelper>
#include <MessageComposer/MessageFactoryNG>
#include <MessageComposer/Util>
#include <MessageViewer/MessageViewerSettings>
using namespace MessageComposer;
MDNWarningWidgetJob::MDNWarningWidgetJob(QObject *parent)
: QObject{parent}
{
}
MDNWarningWidgetJob::~MDNWarningWidgetJob() = default;
bool MDNWarningWidgetJob::canStart() const
{
return mItem.isValid();
}
bool MDNWarningWidgetJob::start()
{
QPair<QString, bool> mdnInfo;
KMime::MDN::SendingMode s = KMime::MDN::SentAutomatically; // set to manual if asked user
bool result = false;
if (canStart()) {
KMime::Message::Ptr msg = MessageComposer::Util::message(mItem);
int mode = MessageViewer::MessageViewerSettings::self()->defaultPolicy();
if (!mode || (mode < 0) || (mode > 3)) {
// Nothing
} else {
if (MessageComposer::MessageFactoryNG::MDNMDNUnknownOption(msg)) {
mdnInfo = MessageComposer::MDNAdviceHelper::instance()->mdnMessageText("mdnUnknownOption");
s = KMime::MDN::SentManually;
// TODO set type to Failed as well
// and clear modifiers
}
if (MessageComposer::MessageFactoryNG::MDNConfirmMultipleRecipients(msg)) {
mdnInfo = MessageComposer::MDNAdviceHelper::instance()->mdnMessageText("mdnMultipleAddressesInReceiptTo");
s = KMime::MDN::SentManually;
}
if (MessageComposer::MessageFactoryNG::MDNReturnPathEmpty(msg)) {
mdnInfo = MessageComposer::MDNAdviceHelper::instance()->mdnMessageText("mdnReturnPathEmpty");
s = KMime::MDN::SentManually;
}
if (MessageComposer::MessageFactoryNG::MDNReturnPathNotInRecieptTo(msg)) {
mdnInfo = MessageComposer::MDNAdviceHelper::instance()->mdnMessageText("mdnReturnPathNotInReceiptTo");
s = KMime::MDN::SentManually;
}
if (MessageComposer::MessageFactoryNG::MDNRequested(msg)) {
if (s != KMime::MDN::SentManually) {
// don't ask again if user has already been asked. use the users' decision
mdnInfo = MessageComposer::MDNAdviceHelper::instance()->mdnMessageText("mdnNormalAsk");
}
} else { // if message doesn't have a disposition header, never send anything.
mode = 0;
}
}
result = true;
} else {
qCWarning(MESSAGECOMPOSER_LOG) << "Impossible to start job";
}
Q_EMIT showMdnInfo(mdnInfo, s);
deleteLater();
return result;
}
const Akonadi::Item &MDNWarningWidgetJob::item() const
{
return mItem;
}
void MDNWarningWidgetJob::setItem(const Akonadi::Item &newItem)
{
mItem = newItem;
}
| [
"montel@kde.org"
] | montel@kde.org |
e06591bbbb2270d139775b727e50bc09662e8153 | f02b8065d500df4ca2bcd7869e34123ff2b8db4c | /P144PROD.cpp | 31a73d0474c3411aa080f9bc2ec502826b91acf0 | [] | no_license | hoaf13/SPOJ_PTIT_DSA | 5716cf1e8593e80b9c665826f4e8499ae6d392ab | ff145cbc105564e29d72210f6f58bd0ebb0a4550 | refs/heads/master | 2023-05-30T16:49:04.770510 | 2021-06-17T13:29:23 | 2021-06-17T13:29:23 | 290,277,648 | 12 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 1,157 | cpp | #include <iostream>
#include <string>
using namespace std;
int ssXau (string a, string b)
{
while (1)
{
if (a.length()==b.length()) break;
if (a.length()>b.length()) b='0'+b;
else a='0'+a;
}
for (int i=0; i<a.length(); i++)
{
int soA=a[i]-'0';
int soB=b[i]-'0';
if (soA>soB) return 1;
else if (soA<soB) return -1;
}
return 0;
}
string chXau (string a)
{
int vt=-1;
for (int i=0; i<a.length(); i++)
{
if (a[i]!='0')
{
vt=i;
break;
}
}
if (vt==-1) return "0";
else
{
string b="";
for (int i=vt; i<a.length(); i++)
{
b+=a[i];
}
return b;
}
} //chuan hoa xau
int main ()
{
int N;
int t=0;
while (1)
{
cin>>N;
if (N==0) break;
t++;
string Min="", Max="";
string a;
int kt=0;
for (int i=1; i<=N; i++)
{
cin>>a;
if (i==1)
{
Min=a;
Max=a;
}
else
{
if (ssXau (a, Max)==1)
{
Max=a;
kt=1;
}
if (ssXau (a, Min)==-1)
{
Min=a;
kt=1;
}
}
}
if (kt==1) cout<<"Case "<<t<<": "<<chXau (Min)<<" "<<chXau(Max)<<endl;
else cout<<"Case "<<t<<": "<<"There is a row of trees having equal height."<<endl;
}
return 0;
}
| [
"gam.nhosmiles2000@gmail.com"
] | gam.nhosmiles2000@gmail.com |
5fbf105b49cbd358aa32d26cf036638686e9f135 | 743c792da8702352c9132a05f106a0b8e3b0994a | /fastdedupe/src/FilesystemHelper.cpp | 3f01d09c2d0d3685dca9b1240baf8271d55bb49c | [] | no_license | adamoa/fastdedupe | baeb2738f0941d48e91acb092ac36e7c8a0932d5 | 2fcee99fa9b9e383cc47b87bc504a191050f2ff1 | refs/heads/master | 2022-09-15T17:57:53.842452 | 2020-05-31T12:15:04 | 2020-05-31T12:15:04 | 268,273,463 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,255 | cpp | /*
* Fiemap.cpp
*
* Created on: May 23, 2020
* Author: adam
*/
#include "FilesystemHelper.h"
#include <linux/fs.h>
#include <linux/fiemap.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <dirent.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
#include <limits.h>
#include <stdlib.h>
#include <list>
#include <set>
#include <stdexcept>
#include <vector>
using std::invalid_argument;
using std::list;
using std::logic_error;
using std::map;
using std::runtime_error;
using std::set;
using std::string;
using std::vector;
const size_t PAGE_SIZE = getpagesize();
const size_t FILESYSTEM_BUFFER_SIZE = PAGE_SIZE > PATH_MAX ?
PAGE_SIZE : PATH_MAX;
const size_t FIEMAP_MAX_EXTENTS = (FILESYSTEM_BUFFER_SIZE
-sizeof(struct fiemap))/sizeof(struct fiemap_extent);
const size_t DEDUPE_MAX_DSTS = (PAGE_SIZE -
sizeof(struct file_dedupe_range))
/ sizeof(file_dedupe_range_info);
const size_t DEDUPE_MAX_SIZE = 16*1024*1024;
const long int RECURSIVE_DEFAULT_MIN_SIZE = 128*1024;
FilesystemHelper FilesystemHelper::filesystemHelper(RECURSIVE_DEFAULT_MIN_SIZE);
FilesystemHelper::FilesystemHelper(long int minSize) :
buffer(new char [FILESYSTEM_BUFFER_SIZE]) {
if (buffer == NULL) {
throw runtime_error("Unable to allocate buffer");
}
this->minSize = minSize;
}
FilesystemHelper::~FilesystemHelper() {
delete [] buffer;
}
long int FilesystemHelper::getMinSize() {
return minSize;
}
void FilesystemHelper::setMinSize(long int minSize) {
this->minSize = minSize;
}
FilesystemHelper & FilesystemHelper::getFilesystemHelper() {
return filesystemHelper;
}
void FilesystemHelper::getStat(const string & filename, struct stat & statData) {
if ( lstat(filename.c_str(), &statData) != 0 ) {
throw errno;
}
}
struct fiemap * FilesystemHelper::getFiemap(int fd, size_t offset, size_t size) {
struct fiemap *fiemap_buffer = (struct fiemap *) buffer;
fiemap_buffer->fm_start=offset;
fiemap_buffer->fm_length=size;
fiemap_buffer->fm_flags=FIEMAP_FLAG_SYNC;
fiemap_buffer->fm_extent_count=FIEMAP_MAX_EXTENTS;
fiemap_buffer->fm_reserved=0;
if (ioctl(fd, FS_IOC_FIEMAP, fiemap_buffer) == -1) {
throw runtime_error(strerror(errno));
}
return fiemap_buffer;
}
vector<FiemapData> FilesystemHelper::getFiemapData(string const & filename, size_t size) {
int fd = open(filename.c_str(), O_RDONLY|O_NOATIME|O_NOFOLLOW);
if (fd == -1) {
if (errno == ENOENT)
throw invalid_argument(strerror(errno));
else
throw runtime_error(strerror(errno));
}
vector<FiemapData> extents;
struct fiemap * fiemap_data;
struct fiemap_extent * last;
size_t offset = 0;
size_t pending_size = size;
try {
do {
fiemap_data = getFiemap(fd, offset, pending_size);
for (size_t i=0;
i<fiemap_data->fm_mapped_extents; i++) {
struct fiemap_extent & extent =
fiemap_data->fm_extents[i];
if (! (extent.fe_flags
& FIEMAP_EXTENT_DATA_INLINE) ) {
extents.emplace_back(FiemapData{
extent.fe_logical, extent.fe_physical,
extent.fe_length});
last = &extent;
}
}
if (extents.size() == 0) {
if (offset==0)
throw invalid_argument("No mapped extents");
else
throw logic_error("Last extent flag not set");
}
offset = last->fe_logical + last->fe_length;
pending_size = size - offset;
} while (! (last->fe_flags & FIEMAP_EXTENT_LAST) );
} catch (...) {
close(fd);
throw;
}
close(fd);
return extents;
}
int FilesystemHelper::dedupe(int src_fd, size_t size,
const vector<string> &dsts_vector,
int error, map<string, string> &failures) {
struct file_dedupe_range * range =
(struct file_dedupe_range *) buffer;
struct file_dedupe_range_info * range_infos = range->info;
range->dest_count = dsts_vector.size();
do {
range->src_length = size > DEDUPE_MAX_SIZE ?
DEDUPE_MAX_SIZE : size;
if (ioctl(src_fd, FIDEDUPERANGE, range) == -1)
error = errno;
size -= range->src_length;
if (size > 0) {
range->src_offset += range->src_length;
for (size_t j = 0; j < range->dest_count; j++) {
int status = range_infos[j].status;
if (status == FILE_DEDUPE_RANGE_DIFFERS) {
failures.emplace(dsts_vector[j], "Files differ");
} else if (status != FILE_DEDUPE_RANGE_SAME) {
failures.emplace(dsts_vector[j], "Unknown error");
}
range_infos[j].dest_offset += range->src_length;
}
}
} while (size > 0);
return error;
}
void FilesystemHelper::dedupe(const string & src,
const set<string> & dests, size_t size,
map<string, string> & failures) {
struct file_dedupe_range * range =
(struct file_dedupe_range *) buffer;
struct file_dedupe_range_info * range_infos =
range->info;
int src_fd = open(src.c_str(), O_RDONLY|O_NOATIME|O_NOFOLLOW);
if (src_fd == -1) throw invalid_argument(strerror(errno));
int error = 0;
size_t i = 0;
range->src_offset = 0;
range->reserved1 = 0;
range->reserved2 = 0;
vector<string> dsts_vector;
dsts_vector.reserve(DEDUPE_MAX_DSTS);
for (auto & dest : dests) {
struct file_dedupe_range_info & range_info =
range_infos[i];
range_info.dest_fd = open(dest.c_str(),
O_RDONLY|O_NOATIME|O_NOFOLLOW);
if (range_info.dest_fd == -1) {
failures.emplace(dest, strerror(errno));
continue;
}
dsts_vector.push_back(dest);
range_info.dest_offset=0;
range_info.reserved=0;
i++;
if (i==DEDUPE_MAX_DSTS) {
error = dedupe(src_fd, size, dsts_vector, error,
failures);
for (size_t j = 0; j<i; j++)
close(range_infos[j].dest_fd);
i=0;
range->src_offset = 0;
range->reserved1 = 0;
range->reserved2 = 0;
dsts_vector.clear();
dsts_vector.reserve(DEDUPE_MAX_DSTS);
}
}
if (i>0) {
error = dedupe(src_fd, size, dsts_vector, error,
failures);
for (size_t j = 0; j<i; j++)
close(range_infos[j].dest_fd);
}
close(src_fd);
if (error)
throw runtime_error(strerror(errno));
}
string FilesystemHelper::getRealPath(const string & path) {
char * fullpath = realpath(path.c_str(), buffer);
if (fullpath == NULL) throw errno;
else return fullpath;
}
void FilesystemHelper::fetchInfos(const set<string> & filenames,
list <FileInfo> & files,
set<string> & patterns,
list<IgnoredFile> & ignored) {
for (auto & file : filenames) {
try {
struct stat statData;
getStat(file, statData);
string fullpath(getRealPath(file));
patterns.emplace(fullpath);
if (S_ISREG(statData.st_mode)) {
files.emplace_back(FileInfo{fullpath,
statData.st_size,
statData.st_mtim.tv_sec,
false, true});
} else if (S_ISDIR(statData.st_mode)) {
files.emplace_back(FileInfo{fullpath,
statData.st_size,
statData.st_mtim.tv_sec,
true, false});
}
} catch (int error) {
ignored.emplace_back(IgnoredFile{
file,
error,
strerror(error)
});
}
}
}
void FilesystemHelper::recursiveRead(const string & fullpath,
DIR * dirStream,
list<FileInfo> & files,
list<IgnoredFile> & ignored) {
errno = 0;
for ( struct dirent * entity = readdir(dirStream);
entity!=NULL;
errno = 0, entity = readdir(dirStream) ) {
if (!strcmp(entity->d_name, ".") ||
!strcmp(entity->d_name, "..")) {
errno = 0;
continue;
}
string entity_fullpath(fullpath+"/"+entity->d_name);
bool dir_type = false;
bool regular_type = false;
try {
struct stat statData;
switch (entity->d_type) {
case DT_UNKNOWN:
getStat(entity_fullpath, statData);
if (S_ISDIR(statData.st_mode)) {
dir_type = true;
} else if (S_ISREG(statData.st_mode)) {
regular_type = true;
}
break;
case DT_DIR:
dir_type = true;
break;
case DT_REG:
getStat(entity_fullpath, statData);
regular_type = true;
break;
}
if (dir_type) {
DIR * entityDirStream = opendir(
entity_fullpath.c_str());
if (entityDirStream == NULL)
ignored.emplace_back(
IgnoredFile{entity_fullpath,
errno,
strerror(errno)});
else {
recursiveRead(entity_fullpath,
entityDirStream,
files, ignored);
closedir(entityDirStream);
}
} else if (regular_type) {
if (statData.st_size > minSize)
files.emplace_back(FileInfo{entity_fullpath,
statData.st_size,
statData.st_mtim.tv_sec,
false, true});
}
} catch (int error) {
ignored.emplace_back(
IgnoredFile{
entity_fullpath,
error,
strerror(error)});
}
errno = 0;
}
if (errno) {
ignored.emplace_back(
IgnoredFile{
fullpath,
errno,
strerror(errno)});
}
}
void FilesystemHelper::recursiveRead(const set<string> & filenames,
list <FileInfo> & files,
set <string> & patterns,
list<IgnoredFile> & ignored) {
fetchInfos(filenames, files, patterns, ignored);
for (const auto & fileinfo : files) {
if (! fileinfo.dirType)
continue;
const string & dir = fileinfo.filename;
try {
DIR * dirStream = opendir(dir.c_str());
if (dirStream == NULL)
ignored.emplace_back(IgnoredFile{
dir,
errno,
strerror(errno)
});
else {
recursiveRead(dir,
dirStream,
files, ignored);
closedir(dirStream);
}
} catch (int error) {
ignored.emplace_back(IgnoredFile{
dir,
error,
strerror(error)
});
}
}
}
| [
"47828862+adamoa@users.noreply.github.com"
] | 47828862+adamoa@users.noreply.github.com |
a873cd0570ad65b12bc718ebacaccb6f36df871f | 22fc731a32de6d7594b178b0b6276d1ff3ac5f86 | /skia_old/bench/RepeatTileBench.cpp | 5235696abc28c28f87f795774b5597add9ccf54f | [
"BSD-3-Clause",
"SGI-B-2.0",
"Apache-2.0"
] | permissive | mogoweb/webkit_for_android5.1 | 626335a9c12fa00b8b05a164f55dcf775d432cf1 | 63728b4ae4c494011e8e43a466637c826f0f6b5f | refs/heads/master | 2021-01-19T20:12:04.921335 | 2018-01-12T07:08:37 | 2018-01-12T07:08:37 | 88,493,525 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 4,065 | cpp |
/*
* Copyright 2011 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "SkBenchmark.h"
#include "SkBitmap.h"
#include "SkCanvas.h"
#include "SkColorPriv.h"
#include "SkPaint.h"
#include "SkShader.h"
#include "SkString.h"
static const char* gConfigName[] = {
"ERROR", "a1", "a8", "index8", "565", "4444", "8888"
};
static void drawIntoBitmap(const SkBitmap& bm) {
const int w = bm.width();
const int h = bm.height();
SkCanvas canvas(bm);
SkPaint p;
p.setAntiAlias(true);
p.setColor(SK_ColorRED);
canvas.drawCircle(SkIntToScalar(w)/2, SkIntToScalar(h)/2,
SkIntToScalar(SkMin32(w, h))*3/8, p);
SkRect r;
r.set(0, 0, SkIntToScalar(w), SkIntToScalar(h));
p.setStyle(SkPaint::kStroke_Style);
p.setStrokeWidth(SkIntToScalar(4));
p.setColor(SK_ColorBLUE);
canvas.drawRect(r, p);
}
static int conv6ToByte(int x) {
return x * 0xFF / 5;
}
static int convByteTo6(int x) {
return x * 5 / 255;
}
static uint8_t compute666Index(SkPMColor c) {
int r = SkGetPackedR32(c);
int g = SkGetPackedG32(c);
int b = SkGetPackedB32(c);
return convByteTo6(r) * 36 + convByteTo6(g) * 6 + convByteTo6(b);
}
static void convertToIndex666(const SkBitmap& src, SkBitmap* dst) {
SkColorTable* ctable = new SkColorTable(216);
SkPMColor* colors = ctable->lockColors();
// rrr ggg bbb
for (int r = 0; r < 6; r++) {
int rr = conv6ToByte(r);
for (int g = 0; g < 6; g++) {
int gg = conv6ToByte(g);
for (int b = 0; b < 6; b++) {
int bb = conv6ToByte(b);
*colors++ = SkPreMultiplyARGB(0xFF, rr, gg, bb);
}
}
}
ctable->unlockColors(true);
dst->setConfig(SkBitmap::kIndex8_Config, src.width(), src.height());
dst->allocPixels(ctable);
ctable->unref();
SkAutoLockPixels alps(src);
SkAutoLockPixels alpd(*dst);
for (int y = 0; y < src.height(); y++) {
const SkPMColor* srcP = src.getAddr32(0, y);
uint8_t* dstP = dst->getAddr8(0, y);
for (int x = src.width() - 1; x >= 0; --x) {
*dstP++ = compute666Index(*srcP++);
}
}
}
class RepeatTileBench : public SkBenchmark {
SkPaint fPaint;
SkString fName;
enum { N = SkBENCHLOOP(20) };
public:
RepeatTileBench(void* param, SkBitmap::Config c, bool isOpaque = false) : INHERITED(param) {
const int w = 50;
const int h = 50;
SkBitmap bm;
if (SkBitmap::kIndex8_Config == c) {
bm.setConfig(SkBitmap::kARGB_8888_Config, w, h);
} else {
bm.setConfig(c, w, h);
}
bm.allocPixels();
bm.eraseColor(isOpaque ? SK_ColorWHITE : 0);
bm.setIsOpaque(isOpaque);
drawIntoBitmap(bm);
if (SkBitmap::kIndex8_Config == c) {
SkBitmap tmp;
convertToIndex666(bm, &tmp);
bm = tmp;
}
SkShader* s = SkShader::CreateBitmapShader(bm,
SkShader::kRepeat_TileMode,
SkShader::kRepeat_TileMode);
fPaint.setShader(s)->unref();
fName.printf("repeatTile_%s_%c", gConfigName[bm.config()], isOpaque ? 'X' : 'A');
}
protected:
virtual const char* onGetName() {
return fName.c_str();
}
virtual void onDraw(SkCanvas* canvas) {
SkPaint paint(fPaint);
this->setupPaint(&paint);
for (int i = 0; i < N; i++) {
canvas->drawPaint(paint);
}
}
private:
typedef SkBenchmark INHERITED;
};
DEF_BENCH(return new RepeatTileBench(p, SkBitmap::kARGB_8888_Config, true))
DEF_BENCH(return new RepeatTileBench(p, SkBitmap::kARGB_8888_Config, false))
DEF_BENCH(return new RepeatTileBench(p, SkBitmap::kRGB_565_Config))
DEF_BENCH(return new RepeatTileBench(p, SkBitmap::kARGB_4444_Config))
DEF_BENCH(return new RepeatTileBench(p, SkBitmap::kIndex8_Config))
| [
"mogoweb@gmail.com"
] | mogoweb@gmail.com |
5e27ca5d7fe46680867ed1f78941d5450f96365e | 87ac9f61c0c45bc16bea9b87f4c933ca0904cff8 | /LinkedList/LinkedList/main.cpp | 65c94d7b5c3daf4e7738a16eed8006d3a4b45446 | [] | no_license | arnabs542/ikk2 | e9b31c340f855240e0e876ddf9892d9fe057f2b2 | 70c8529cf0dd58b4891e87b872733ad620f6c537 | refs/heads/master | 2022-01-12T05:25:23.522839 | 2019-05-30T11:14:49 | 2019-05-30T11:14:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,489 | cpp | #include "LinkedList.h"
using namespace std;
int main()
{
int n;
LinkedList list;
while (true)
{
cout << endl;
cout << "============================LINKED LIST MENU=============================" << endl;
cout << "1: INSERT at Beginning" << endl;
cout << "2: INSERT at End" << endl;
cout << "3: INSERT at Position" << endl;
cout << "4: DELETE" << endl;
cout << "5: SEARCH" << endl;
cout << "6: UPDATE" << endl;
cout << "7: REVERSE" << endl;
cout << "8: REVERSE_STACK" << endl;
cout << "9: SORT" << endl;
cout << "10: LENGTH" << endl;
cout << "11: PRINT" << endl;
cout << "12: EXIT " << endl;
cout << "==================================================================" << endl;
cout << "Enter your choice : ";
cin >> n;
switch (n)
{
case LinkedList::INSERT_BEGIN:
{
cout << "How many nodes to create for a Linked List in beginning ?" << endl;
cin >> n;
for (int i = 0; i < n; i++)
{
int data;
cout << "Enter node data: ";
cin >> data;
list.InsertAtBeginning(data);
}
list.Print();
break;
}
case LinkedList::INSERT_END:
{
cout << "How many nodes to create for a Linked List at end ?" << endl;
cin >> n;
for (int i = 0; i < n; i++)
{
int data;
cout << "Enter node data: ";
cin >> data;
list.InsertAtEnd(data);
}
break;
}
case LinkedList::INSERT_POS:
{
int data, position = 0;
cout << "After which node do you want to insert a node : ";
cin >> position;
cout << "Enter node data: ";
cin >> data;
list.InsertAtPosition(data, position);
break;
}
case LinkedList::DELETE_POS:
{
int position = 0;;
cout << "Which node do you want to delete : ";
cin >> position;
list.Delete(position);
break;
}
case LinkedList::LENGTH:
{
cout << "Length of the linked list is : " << list.GetLength() << endl;
break;
}
case LinkedList::SEARCH:
{
int data = 0;
cout << "What data do you want to check in the linked list: ";
cin >> data;
if (list.Search(data))
cout << "Data " << data << " EXISTS in the linked list" << endl;
else
cout << "Data " << data << " DOES NOT EXIST in the linked list" << endl;
break;
}
case LinkedList::UPDATE:
{
int data, position = 0;
cout << "Which node do you want to update : ";
cin >> position;
if (position > list.GetLength())
{
cout << "Node to be updated : " << position << " cannot be greater than the linked list's length : " << list.GetLength() << endl;
break;
}
cout << "What data do you want to update it with: ";
cin >> data;
list.Update(position, data);
break;
}
case LinkedList::REVERSE:
{
cout << "Reversing the linked list......" << endl;
list.Reverse();
break;
}
case LinkedList::REVERSE_STACK:
{
cout << "Reversing the linked list using Stack data structure......" << endl;
list.ReverseUsingStack();
break;
}
case LinkedList::SORT:
{
cout << "Sorting the linked list......" << endl;
list.Sort();
break;
}
case LinkedList::PRINT:
{
cout << "Printing linked list..... " << endl;
list.Print();
cout << endl;
break;
}
case LinkedList::EXIT:
{
cout << "Exiting ... !!!!" << endl;
return 1;
}
default:
{
cout << "Invalid choice" << endl;
}
}
}
cout << endl;
system("pause");
return 1;
} | [
"44321209+abhijeetiam@users.noreply.github.com"
] | 44321209+abhijeetiam@users.noreply.github.com |
3ac8193965debd1d65fa8814b265d07411f0141d | 32ffd76b96ad656e2374bdf6c4a5f1e5dd81fbe7 | /university/Person.h | 78b2c24d75e045ad44a01dce86eef47bc27b78fe | [] | no_license | sjokkateer/PRC2 | ff3e88b6f8044312616304572abaf4401aa4a30d | 8907c6b9760ab866b3411ad2eb2012471077ebfb | refs/heads/master | 2022-11-13T12:03:40.265731 | 2020-05-17T21:21:41 | 2020-06-16T15:30:26 | 272,741,817 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 547 | h | #ifndef PERSON_H
#define PERSON_H
#include <iostream>
#include <fstream>
using namespace std;
class Person
{
private:
string name;
int age;
public:
Person();
Person(const Person &obj);
Person(string name, int age);
Person &operator=(const Person &person);
virtual string print() const;
virtual void store(ofstream &outFile);
virtual void load(ifstream &inFile);
friend ostream &operator<<(ostream &out, const Person &person)
{
out << person.print();
return out;
}
};
#endif
| [
"remy90@hotmail.com"
] | remy90@hotmail.com |
cf5eb84cbc570ee5660b3df75ac9947a21857728 | 5423df24db9b2ef2ef88a44430a4005ca1a28680 | /GameAladdin/GameObjects/Player/PlayerClimbAttackState.h | a71b1620fae5256ed8c02b8a724a2548474650b5 | [] | no_license | huynhminhtan/game-aladdin-genesis | 44a10cc87cbee175f82a3c7ce17be871baccaae5 | 3fd67ad1841af721d5849ef5c5c20ed538cbc475 | refs/heads/main | 2021-03-27T15:39:51.073537 | 2018-01-07T02:33:36 | 2018-01-07T02:33:36 | 103,738,577 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 407 | h | #pragma once
#include "PlayerState.h"
class PlayerClimbAttackState : public PlayerState
{
private:
PlayerState::StateName _fromState;
GameObject *_ropeOrHorizontalBar;
bool _checkPlussPosition;
public:
PlayerClimbAttackState();
PlayerClimbAttackState(Player* player, GameObject *ropeOrHorizontalBar, PlayerState::StateName fromState);
~PlayerClimbAttackState();
void Update(float deltaTime);
};
| [
"minhtan.itdev@gmail.com"
] | minhtan.itdev@gmail.com |
db6d038092235b5ea396ed63f6dc9b36ea193f90 | 5791b78c64fc4076330af128b950e5cc544e333b | /windows/pw6e.official/CPlusPlus/Chapter17/PrintableTomKitten/PrintableTomKitten/TomKitten54.xaml.h | 3b5bf13bf4c77c23aea0b93f5d2856026c035543 | [
"MIT"
] | permissive | nnaabbcc/exercise | 509e2c63389fec768ca07153844b71b864d63a20 | b7ebb55adf9a75ed223555128d77e0f2548450b5 | refs/heads/master | 2023-02-26T07:52:40.093958 | 2023-02-22T01:12:56 | 2023-02-22T01:12:56 | 55,337,514 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 249 | h | //
// TomKitten54.xaml.h
// Declaration of the TomKitten54 class
//
#pragma once
#include "TomKitten54.g.h"
namespace PrintableTomKitten
{
public ref class TomKitten54 sealed
{
public:
TomKitten54();
};
}
| [
"nnaabbcc.zhao@gmail.com"
] | nnaabbcc.zhao@gmail.com |
23c63f82b61257687d73e323cc3caaa0cfbc93dd | cf111b440f33ba9741ff45c60ac33dfade24e2ac | /Snippets/Qt/GridWidget 1/mainwindow.cc | cc4b8840feb3d505f3fbb39c0e119a568787bfe4 | [
"Unlicense"
] | permissive | fredmorcos/attic | cd08e951f56c3b256899ef5ca4ccd030d3185bc1 | 36d5891a959cfc83f9eeef003b4e0b574dd7d7e1 | refs/heads/master | 2023-07-05T10:03:58.115062 | 2023-06-21T22:55:38 | 2023-06-22T07:07:58 | 154,962,425 | 4 | 1 | Unlicense | 2023-06-22T07:08:00 | 2018-10-27T12:30:38 | JavaScript | UTF-8 | C++ | false | false | 1,925 | cc | /*
This file is part of florence.
florence 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 3 of the License, or
(at your option) any later version.
florence 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 florence. If not, see <http://www.gnu.org/licenses/>.
*/
#include "mainwindow.h"
#include "loadingwidget.h"
#include <QAction>
#include <QApplication>
MainWindow::MainWindow(QWidget *parent):
QMainWindow(parent),
m_manager(new Manager()),
m_scrollArea(new QScrollArea(this)),
m_grid(new GridWidget(this))
{
setWindowTitle("florence");
m_grid->hide();
m_scrollArea->setWidget(new LoadingWidget(this));
m_scrollArea->setWidgetResizable(true);
m_scrollArea->setAlignment(Qt::AlignCenter);
setCentralWidget(m_scrollArea);
QAction *quitAction = new QAction(this);
quitAction->setShortcut(QKeySequence::Quit);
addAction(quitAction);
connect(quitAction, SIGNAL(triggered()),
this, SLOT(quitActionTriggered()));
connect(this, SIGNAL(startLoadImages(QString)),
m_manager, SLOT(loadImagesFromPath(QString)));
connect(m_manager, SIGNAL(finishedLoading()),
this, SLOT(managerFinishedLoading()));
connect(m_manager, SIGNAL(imageReady(QString)),
m_grid, SLOT(addImage(QString)));
showMaximized();
}
void MainWindow::loadImages(QString imagesPath)
{
emit startLoadImages(imagesPath);
}
void MainWindow::quitActionTriggered()
{
close();
}
void MainWindow::managerFinishedLoading()
{
m_grid->setParent(m_scrollArea);
m_scrollArea->takeWidget()->deleteLater();
m_scrollArea->setWidget(m_grid);
m_grid->show();
}
| [
"fred.morcos@gmail.com"
] | fred.morcos@gmail.com |
238312a799ebc60dd1d68b02ebc8b7cca6945290 | 70c1057ac3d070f1f1bf1ae786ac0410aae3402d | /CodeSplit.cpp | 669aca3189fe32945e380d93e0c28f761cb199e4 | [] | no_license | VB6Hobbyst7/VBAcodeConverter | 11233793e704eda0b40bf5c2db1f3bbee0ce4dda | 0908550f2ee3b4309be8c62b807edd32e13a30b7 | refs/heads/master | 2023-04-05T11:59:56.557877 | 2021-04-18T22:43:27 | 2021-04-18T22:43:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 23 | cpp | #include "CodeSplit.h"
| [
"condensa1952@gmail.com"
] | condensa1952@gmail.com |
483bac819bdd5a4f12916b2f2ec710fffaeb17dc | d5d67dd5000a4c03c164cf27a68dc5d6ea47500e | /lab07/composite/Slide/CShape.h | 3414775c4d0090b55158353c0666fdd3e0891a1f | [] | no_license | ImbaCow/OOD | db127161159eab83f440b1e9de41a0e7ff373f57 | 725a37b383265b14fe349da2efdfd1e71f2675af | refs/heads/master | 2020-07-16T14:30:34.544134 | 2019-12-30T15:59:21 | 2019-12-30T15:59:21 | 205,805,646 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,016 | h | #pragma once
#include "CLineStyle.h"
#include "IShape.h"
class CShape : public IShape
{
public:
CShape(const Rect& rect, std::unique_ptr<IStyle> fillStyle, std::unique_ptr<ILineStyle> lineStyle);
~CShape() = default;
virtual std::optional<Rect> GetFrame() override;
virtual void SetFrame(const Rect& rect) override;
virtual const std::shared_ptr<ILineStyle> GetOutlineStyle() override;
virtual const std::shared_ptr<const ILineStyle> GetOutlineStyle() const override;
virtual const std::shared_ptr<IStyle> GetFillStyle() override;
virtual const std::shared_ptr<const IStyle> GetFillStyle() const override;
virtual void Draw(ICanvas& canvas) override;
virtual const std::shared_ptr<IShapeGroup> TryGetGroup() override;
protected:
virtual void ResizeShape(const Rect& newRect) = 0;
virtual void DrawColoredLine(ICanvas& canvas) = 0;
virtual void DrawColoredFill(ICanvas& canvas) = 0;
private:
Rect m_frame;
const std::shared_ptr<ILineStyle> m_lineStyle;
std::shared_ptr<IStyle> m_fillStyle;
};
| [
"e.iambakov@gmail.com"
] | e.iambakov@gmail.com |
9bd4fa383d6a27ef4f77102bdb646554616f6152 | cbf1069a489cd6b5c4ac61bcafb49e05eec98c99 | /Programowanie Obiektowe/Lesson_7/C07/01_ID03P04/C07_Proj_ID03P04_0001/Application.cpp | b7d2341228ca528a5b5762e8e82ba8aeed1e4273 | [] | no_license | RuslanLytvynov/University_WIT | 35eb3a0622d76907fead57e63e625edfa6ac1b33 | b75ee4bc0e16ccaa9abf8b50075ff64ea6e87a52 | refs/heads/master | 2021-03-12T10:56:17.579139 | 2020-12-06T11:49:18 | 2020-12-06T11:49:18 | 246,613,927 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,415 | cpp | void Application::Run(){
Main07();
}
///****************************************
void Application::Main01(){
cout<<"\n\n\t\tTest Main01\n\n";
}
///****************************************
void Application::Main02(){
MyClass01 myClass01;
myClass01.Ini(1,2,3);
myClass01.Print("\n");
}
///****************************************
void Application::Main03(){
MyClass01 myClass01, m02, m03, m04;
MyClass01 KonstantynopolitanczykowineczkunieczkazKrakowaiokolic;
}
///****************************************
void Application::Main04(){
MyClass01 myClass01, m02, m03, m04;
MyClass01 KonstantynopolitanczykowineczkunieczkazKrakowaiokolic;
myClass01.Print("\n");
m02.Print("\n");
m03.Print("\n");
m04.Print("\n");
KonstantynopolitanczykowineczkunieczkazKrakowaiokolic.Print("\n");
}
///****************************************
void Application::Main05(){
MyClass01 myClass01, m02(11,12,13);
myClass01.Print("\n");
m02.Print("\n");
}
///****************************************
void Application::Main06(){
MyClass01 myClass01, m02(11,12,13);
myClass01.Print();
m02.Print("\n");
}
///****************************************
void Application::Main07(){
MyClass01 myClass01(11,12,13);
myClass01.Print("\n");
// myClass01.x2 =123;
myClass01.Print("\n");
}
///****************************************
| [
"lytvynovrus@gmail.com"
] | lytvynovrus@gmail.com |
3c5627fd32ad4c1e46524ac67fbb864cf265aefd | 6aeccfb60568a360d2d143e0271f0def40747d73 | /sandbox/SOC/2006/concurrency/tags/postfinal_untested/boost/act/type_traits/are_extended_algo_params.hpp | fe0baa9e9719696c8cf4fb6290ca8b2d41c10a9a | [] | no_license | ttyang/sandbox | 1066b324a13813cb1113beca75cdaf518e952276 | e1d6fde18ced644bb63e231829b2fe0664e51fac | refs/heads/trunk | 2021-01-19T17:17:47.452557 | 2013-06-07T14:19:55 | 2013-06-07T14:19:55 | 13,488,698 | 1 | 3 | null | 2023-03-20T11:52:19 | 2013-10-11T03:08:51 | C++ | UTF-8 | C++ | false | false | 1,726 | hpp | // Copyright (c) 2006, Matthew Calabrese
//
// This code may be used under either of the following two licences:
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
// files (the "Software"), to deal in the Software without
// restriction, including without limitation the rights to use,
// copy, modify, merge, publish, distribute, sublicense, and/or
// sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following
// conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
// OTHER DEALINGS IN THE SOFTWARE. OF SUCH DAMAGE.
//
// Or:
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#ifndef BOOST_ACT_TYPE_TRAITS_ARE_EXTENDED_ALGO_PARAMS_HPP
#define BOOST_ACT_TYPE_TRAITS_ARE_EXTENDED_ALGO_PARAMS_HPP
#include <boost/mpl/bool.hpp>
namespace boost
{
namespace act
{
template< typename Type >
struct are_extended_algo_params
: mpl::false_
{
};
}
}
#endif
| [
"doug.gregor@gmail.com"
] | doug.gregor@gmail.com |
3c47dd2e6f9afb677ffc74366a49ad26d85f390c | 8c5045a8aeefc002b29c020577f0ebfe30d931ae | /src/near_PD.cpp | 2c8e4abcadb2dd3347956607a98483740e788e2a | [] | no_license | pqiao29/copSTM | b84517df2777a7a6242962abf410e4cab0c7a868 | aff64c301822e15a4f9974c717fa03b74a43ef96 | refs/heads/master | 2020-05-07T22:47:27.593984 | 2019-09-27T06:51:29 | 2019-09-27T06:51:29 | 180,959,849 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,935 | cpp | #include <RcppArmadillo.h>
// [[Rcpp::depends(RcppArmadillo)]]
using namespace arma;
using namespace Rcpp;
vec rep_each(const vec& x, const int each) {
std::size_t n = x.n_elem;
std::size_t n_out = n*each;
vec res(n_out);
auto begin = res.begin();
for (std::size_t i = 0, ind = 0; i < n; ind += each, ++i) {
auto start = begin + ind;
auto end = start + each;
std::fill(start, end, x[i]);
}
return res;
}
mat mat_vec_same_len(mat mt1, vec v1){
int t = 0;
for(int i = 0; i != mt1.n_cols; ++i){
for(int j = 0; j != mt1.n_rows; ++j){
mt1(j,i) = mt1(j,i) * v1(t);
++t;
}
}
return(mt1);
}
vec pmax_c(double a, vec b){
vec c(b.n_elem);
for(int i = 0; i != b.n_elem; ++i){
c(i) = std::max(a, b(i));
}
return c;
}
// [[Rcpp::plugins(cpp11)]]
void nearPD_cpp(arma::mat& X // require X: square && symmetry
, bool corr = false
, double eig_tol = 1e-6 // defines relative positiveness of eigenvalues compared to largest
, double conv_tol = 1e-7 // convergence tolerance for algorithm
, double posd_tol = 1e-8 // tolerance for enforcing positive definiteness
, int maxit = 200 // maximum number of iterations allowed
){
int n = X.n_cols;
vec diagX0 = X.diag();
mat D_S; D_S.zeros(n, n);
int iter = 0 ;
bool converged = false;
double conv = R_PosInf;
mat Y, R, Q;
vec d;
while (iter < maxit && !converged) {
Y = X;
R = Y - D_S;
eig_sym(d, Q, R);
uvec p = (d > eig_tol * d(n - 1));
if(sum(p)==0){
Rcout << "Matrix seems negative semi-definite" << std::endl;
return;
}
uvec p_indexes(sum(p));
int p_i_i = 0;
for(int i = 0;i != p.n_elem; ++i){
if(p(i)){
p_indexes(p_i_i)=i;
++p_i_i;
}
}
Q = Q.cols(p_indexes);
X = mat_vec_same_len(Q,rep_each(d.elem(p_indexes),Q.n_rows))*Q.t();
D_S = X - R;
if(corr){
X.diag().ones(); //set diagnols as ones
}
else {
X.diag() = diagX0;
}
conv = norm(Y-X,"inf")/norm(Y,"inf");
++iter;
converged = (conv <= conv_tol);
}
if(!converged){
Rcpp::Rcout << "did not converge! " <<std::endl;
}
eig_sym(d, Q, X);
double Eps = posd_tol * std::abs(d(n - 1));
if (d(0) < Eps){
for(int i = 0; i != n; ++i){
if(d(i) < Eps){
d(i) = Eps;
}
}
vec o_diag = X.diag();
mat Q_t = Q.t();
for(int i = 0; i != Q_t.n_cols; ++i){
Q_t.col(i) = Q_t.col(i) % d;
}
X = Q * Q_t;
vec D = sqrt(pmax_c(Eps, o_diag)/X.diag());
for(int j = 0; j != X.n_cols; ++j){
X.col(j) = X.col(j) % D;
}
for(int i = 0; i != X.n_rows; ++i){
X.row(i) = X.row(i) % conv_to<rowvec>::from(D);
}
}
if(corr) {
X.diag().ones(); //set diag as ones
}
else {
X.diag() = diagX0;
}
} | [
"pqiao@student.unimelb.edu.au"
] | pqiao@student.unimelb.edu.au |
5f61bd8ab6ae7250b805d85bb94372fb6e8267d0 | 8f128acb30f9060318065c89b70d4ccb2df13b98 | /cpp/primer/chap14/strvec/main.cc | de08e75ef0278f41280bd945f600d7c959e818d6 | [] | no_license | JamieMaple/LearningNotes | 57214850bf7f956df3d28a52aa48b314c9cca9bc | 920b4a0d9828348228e1c2b9d8837447d4b5d86c | refs/heads/master | 2023-01-10T11:31:10.404001 | 2019-08-05T15:05:59 | 2019-08-05T15:05:59 | 101,359,544 | 0 | 0 | null | 2022-12-29T15:59:22 | 2017-08-25T02:55:31 | C++ | UTF-8 | C++ | false | false | 293 | cc | #include <iostream>
#include <string>
#include "strvec.h"
using std::string;
int main() {
StrVec v1, v2, v3 = { "Hello", "World" };
v1 = { "world" };
std::cout << v1.size() << std::endl;
v1 = { "world", "Helow" };
std::cout << v1.size() << std::endl;
return 0;
}
| [
"jamiemaple007@gmail.com"
] | jamiemaple007@gmail.com |
04176d56574899c63adb859fb26034172b78d751 | 71ba298b529a5fbc4924cca1e22b517ac391a012 | /DTLib/MatrixGraph.h | 6b993cc56dcb2e0186eea9c59e4ff4e863ecee12 | [] | no_license | yangtrybest/data | 11e8c08d1a8fb142d66a27d4c1db381cb8b256bc | a3c3e2c06a8f6271d06607583dc7546705d18ef3 | refs/heads/master | 2020-04-05T21:51:38.827549 | 2018-11-13T01:57:11 | 2018-11-13T01:57:11 | 157,231,464 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 6,508 | h | #ifndef MATRIXGRAPH_H
#define MATRIXGRAPH_H
#include "Graph.h"
#include "Exception.h"
#include "DynamicArray.h"
namespace DTLib
{
template <int N, typename V, typename E>
class MatrixGraph : public Graph<V, E>
{
protected:
V* m_vertexes[N];
E* m_edges[N][N];
int m_ecount;
public:
MatrixGraph()
{
for(int i=0; i<vCount(); i++)
{
m_vertexes[i] = NULL;
for(int j=0; j<vCount(); j++)
{
m_edges[i][j] = NULL;
}
}
m_ecount = 0;
}
V getVertex(int i) // O(1)
{
V ret;
if(!getVertex(i, ret))
{
THROW_EXCEPTION(InvalidParameterException, "Index i is invalid ...");
}
return ret;
}
bool getVertex(int i, V& value) // O(1)
{
bool ret = ((0 <= i) && (i < vCount()));
if( ret )
{
if( m_vertexes[i] != NULL )
{
value = *(m_vertexes[i]);
}
else
{
THROW_EXCEPTION(InvalidOperationException, "No value assigned to this vertex ...");
}
}
return ret;
}
bool setVertex(int i, const V& value) // O(1)
{
bool ret = ((0 <= i) && (i < vCount()));
if( ret )
{
V* data = m_vertexes[i];
if( data == NULL )
{
data = new V();
}
if( data != NULL )
{
*data = value;
// 当赋值出现异常的时候,图对象的状态就不合法了,因此通过临时变量
// data在不发生异常的时候向下执行:(为了异常安全)
m_vertexes[i] = data;
}
else
{
THROW_EXCEPTION(NoEnoughMemoryException, "No memory to store new vertex value ...");
}
}
return ret;
}
SharedPointer<Array<int>> getAdjacent(int i) // O(n)
{
DynamicArray<int>* ret = NULL;
if((0 <= i) && (i < vCount()))
{
int n = 0;
for(int j=0; j<vCount(); j++)
{
if( m_edges[i][j] != NULL )
{
n++;
}
}
ret = new DynamicArray<int>(n);
if( ret != NULL )
{
for( int j=0, k=0; j<vCount(); j++)
{
if( m_edges[i][j] != NULL )
{
ret->set(k++, j);
}
}
}
else
{
THROW_EXCEPTION(NoEnoughMemoryException, "No memory to create ret object ...");
}
}
else
{
THROW_EXCEPTION(InvalidParameterException, "Index i is invalid ...");
}
return ret;
}
E getEdge(int i, int j) // O(1)
{
E ret;
if( !getEdge(i, j, ret) )
{
THROW_EXCEPTION(InvalidParameterException, "Index <i, j> is invalid ...");
}
return ret;
}
bool getEdge(int i, int j, E& value) // O(1)
{
bool ret = ((0 <= i) && (i < vCount()) &&
(0 <= j) && (j < vCount()) );
if( ret )
{
if( m_edges[i][j] != NULL )
{
value = *(m_edges[i][j]);
}
else
{
THROW_EXCEPTION(InvalidOperationException, "No value assigned to this edge ...");
}
}
return ret;
}
bool setEdge(int i, int j, const E& value) // O(1)
{
bool ret = ((0 <= i) && (i < vCount()) &&
(0 <= j) && (j < vCount()) );
if( ret )
{
E* ne = m_edges[i][j];
if( ne == NULL )
{
ne = new E();
if(ne != NULL)
{
*ne = value;
m_edges[i][j] = ne;
m_ecount++;
}
else
{
THROW_EXCEPTION(NoEnoughMemoryException, "No memory to store new vertex value ...");
}
}
else
{
*ne = value;
}
}
return ret;
}
bool removeEdge(int i, int j) // O(1)
{
bool ret = ((0 <= i) && (i < vCount()) &&
(0 <= j) && (j < vCount()) );
if( ret )
{
// 为了异常安全,设置临时变量替代
E* toDel = m_edges[i][j];
m_edges[i][j] = NULL;
if( toDel != NULL )
{
m_ecount--;
delete toDel;
}
}
return ret;
}
int vCount() // O(1)
{
return N;
}
int eCount() // O(1)
{
return m_ecount;
}
int OD(int i) // O(n)
{
int ret = 0;
if((0 <= i) && (i < vCount()))
{
for(int j=0; j<vCount(); j++)
{
if( m_edges[i][j] != NULL )
{
ret++;
}
}
}
else
{
THROW_EXCEPTION(InvalidParameterException, "Index i is invalid ...");
}
return ret;
}
int ID(int i) // O(n)
{
int ret = 0;
if((0 <= i) && (i < vCount()))
{
for(int j=0; j<vCount(); j++)
{
if( m_edges[j][i] != NULL )
{
ret++;
}
}
}
else
{
THROW_EXCEPTION(InvalidParameterException, "Index i is invalid ...");
}
return ret;
}
bool isAdjacent(int i, int j)
{
return (0 <= i) && (i < vCount()) && (0 <= j) && (j < vCount()) && (m_edges[i][j] != NULL);
}
~MatrixGraph() // O(n)
{
for(int i=0; i<vCount(); i++)
{
for(int j=0; j<vCount(); j++)
{
delete m_edges[i][j];
}
delete m_vertexes[i];
}
}
};
}
#endif // MATRIXGRAPH_H
| [
"516849910@qq.com"
] | 516849910@qq.com |
6394604bb9660c974372b00ed206525b6cc8b24f | 0bad04b2f3f023d19de6324985fa94ba8ad9da1e | /prep/heap.cpp | 413848a94e9aa9dc95705a9285f5d76cfcf29f94 | [] | no_license | NamanJain8/CompetitiveCodes | 663d36bf500f0252dbca161eb5aa0d833eba07c5 | 6d42175a74eadb2a9a3e7729268e2648dad7ae5f | refs/heads/master | 2021-04-12T03:43:35.241811 | 2018-09-02T00:24:23 | 2018-09-02T00:24:23 | 125,883,994 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,135 | cpp | #include <bits/stdc++.h>
using namespace std;
#define ll long long int
#define ull unsigned long long int
#define uint unsigned int
#define read(n) scanf("%d",&n)
#define readll(n) scanf("%lld",&n)
#define read2(n,m) scanf("%d%d",&n,&m)
#define read3(n,m,l) scanf("%d%d%d",&n,&m,&l)
#define fr(i,n) for(int i=0;i<n;i++)
#define frr(i,a,b) for(int i=a;i<b;i++)
#define rf(i,n) for(int i=n-1;i>=0;i--)
#define init(mem,v) memset(mem,v,sizeof(mem))
#define vc(r) vector< r >
#define mk(a,b) make_pair(a,b)
#define pb push_back
#define all(v) (v).begin(),(v).end()
#define tr(v,it) for(typeof((v).begin()) it = (v).begin(); it != (v).end() ; it++)
#define vpresent(v,x) ((v).find(x) != (v).end())
#define present(v,x) (find(all(v),x) != (v).end())
typedef pair<int,int> pii;
typedef pair<pii,pii> ppi;
#define INF 2000000000
void heapify(int arr[],int idx,int n){
if(idx>=n) return;
int l=2*idx; int r = 2*idx+1;
if()
}
void heapsort(int arr[],int n){
for(int i=n-1;i>=0;i--){
heapify(arr,i,n);
}
fr(i,n) cout<<arr[i]<<" ";
cout<<endl;
}
int main(){
int n; cin>>n;
int a[n];
fr(i,n) cin>>a[i];
heapsort(a,n);
} | [
"jnaman806@gmail.com"
] | jnaman806@gmail.com |
9edbea39a4c210dd44e2b2b0843551aef8d05704 | 71c1e58b327e22fc38d391db93371cc91a32ca40 | /CSC8503_2019_Download1/CSC8503 2019 Download(1)/CSC8503/CSC8503Common/NavigationGrid.cpp | 1422e0567dd0abdaf35d3d60ff6c8a2519e0fc81 | [] | no_license | zqsgdnq/Goose | 3d7b71f760c66f971c451d3b3c9cd227dd16ded2 | 9485cfc9061e49c05e65f562205ba8fc15f670e5 | refs/heads/master | 2022-04-16T11:56:23.227092 | 2020-04-08T12:22:27 | 2020-04-08T12:22:27 | 254,051,878 | 0 | 0 | null | null | null | null | MacCentralEurope | C++ | false | false | 4,819 | cpp | #include "NavigationGrid.h"
#include "../../Common/Assets.h"
#include <fstream>
using namespace NCL;
using namespace CSC8503;
const int LEFT_NODE = 0;
const int RIGHT_NODE = 1;
const int TOP_NODE = 2;
const int BOTTOM_NODE = 3;
const char WALL_NODE = 'x';
const char FLOOR_NODE = '.';
NavigationGrid::NavigationGrid() {
nodeSize = 0;
gridWidth = 0;
gridHeight = 0;
allNodes = nullptr;
}
NavigationGrid::NavigationGrid(const std::string&filename) : NavigationGrid() {
std::ifstream infile(Assets::DATADIR + filename);
infile >> nodeSize;
infile >> gridWidth;
infile >> gridHeight;
allNodes = new GridNode[gridWidth * gridHeight];
for (int y = 0; y < gridHeight; ++y) {
for (int x = 0; x < gridWidth; ++x) {
GridNode&n = allNodes[(gridWidth * y) + x];
char type = 0;
infile >> type;
n.type = type;
n.position = Vector3((float)(x * nodeSize), 0, (float)(y * nodeSize));
}
}
//now to build the connectivity between the nodes
for (int y = 0; y < gridHeight; ++y) {
for (int x = 0; x < gridWidth; ++x) {
GridNode&n = allNodes[(gridWidth * y) + x];
if (y > 0) { //get the above node
n.connected[0] = &allNodes[(gridWidth * (y - 1)) + x];
}
if (y < gridHeight - 1) { //get the below node
n.connected[1] = &allNodes[(gridWidth * (y + 1)) + x];
}
if (x > 0) { //get left node
n.connected[2] = &allNodes[(gridWidth * (y)) + (x - 1)];
}
if (x < gridWidth - 1) { //get right node
n.connected[3] = &allNodes[(gridWidth * (y)) + (x + 1)];
}
for (int i = 0; i < 4; ++i) {
if (n.connected[i]) {
if (n.connected[i]->type == '.') {
n.costs[i] = 1;
}
if (n.connected[i]->type == 'x') {
n.connected[i] = nullptr; //actually a wall, disconnect!
}
}
}
}
}
}
NavigationGrid::~NavigationGrid() {
delete[] allNodes;
}
bool NavigationGrid::FindPath(const Vector3& from, const Vector3& to, NavigationPath& outPath,bool upint) {
int fromX;
int fromZ;
if(upint==false){
fromX = (from.x / nodeSize);
fromZ = (from.z / nodeSize);
}
else {
fromX= ceil(from.x / nodeSize);
fromZ = ceil(from.z / nodeSize);
}
int toX = (to.x / nodeSize);
int toZ = (to.z / nodeSize);
if (fromX < 0 || fromX > gridWidth - 1 ||
fromZ < 0 || fromZ > gridHeight - 1) {
return false; // outside of map region !
}
if (toX < 0 || toX > gridWidth - 1 ||
toZ < 0 || toZ > gridHeight - 1) {
return false; // outside of map region !
}
GridNode* startNode = &allNodes[(fromZ * gridWidth) + fromX];
GridNode* endNode = &allNodes[(toZ * gridWidth) + toX];
std::vector <GridNode*> openList;
std::vector <GridNode*> closedList;
openList.emplace_back(startNode);
startNode -> f = 0;
startNode -> g = 0;
startNode -> parent = nullptr;
GridNode* currentBestNode = nullptr;
while (!openList.empty()) {
currentBestNode = RemoveBestNode(openList);
if (currentBestNode == endNode) {// we íve found the path !
GridNode* node = endNode;
while (node != nullptr) {
outPath.PushWaypoint(node -> position);
node = node -> parent; // Build up the waypoints
}
return true;
}
else {
for (int i = 0; i < 4; ++i) {
GridNode* neighbour = currentBestNode -> connected[i];
if (!neighbour) { // might not be connected ...
continue;
}
bool inClosed = NodeInList(neighbour, closedList);
if (inClosed) {
continue; // already discarded this neighbour ...
}
float h = Heuristic(neighbour, endNode);
float g = currentBestNode -> g + currentBestNode -> costs[i];
float f = h + g;
bool inOpen = NodeInList(neighbour, openList);
if (!inOpen) { // first time we íve seen this neighbour
openList.emplace_back(neighbour);
}
// might be a better route to this node !
if (!inOpen || f < neighbour -> f) {
neighbour -> parent = currentBestNode;
neighbour -> f = f;
neighbour -> g = g;
}
}
closedList.emplace_back(currentBestNode);
}
}
return false; // open list emptied out with no path !
}
bool NavigationGrid::NodeInList(GridNode* n, std::vector<GridNode*>& list) const {
std::vector < GridNode* >::iterator i =
std::find(list.begin(), list.end(), n);
return i == list.end() ? false : true;
}
GridNode* NavigationGrid::RemoveBestNode(std::vector<GridNode*>& list) const {
std::vector < GridNode* >::iterator bestI = list.begin();
GridNode * bestNode = *list.begin();
for (auto i = list.begin(); i != list.end(); ++i) {
if ((*i) -> f < bestNode -> f) {
bestNode = (*i);
bestI = i;
}
}
list.erase(bestI);
return bestNode;
}
/*float NavigationGrid::Heuristic(GridNode* hNode, GridNode* endNode) const {
return 0.0f;
}*/
float NavigationGrid::Heuristic(GridNode* n1, GridNode* n2) const {
return (n1 -> position - n2 -> position).Length();
}
| [
"b9011685@newcastle.ac.uk"
] | b9011685@newcastle.ac.uk |
f0d17d90e22e6ef9cb60d1fdce1a5f20e3f478a2 | 412bf1c63d44a73b7881f1e4e9c2c3dab41dc673 | /src/qt/optionsmodel.cpp | 8082e500d5119e8b8ffb6e7b55c18d6886b7a5b0 | [
"MIT"
] | permissive | NasdaCash/NSDC | 72ecdd22492d4f75a6b8a80a2ff8e2d2632600d7 | 2fcbb7075b5c4e6eaaf9419cdaa0cdbf75915e23 | refs/heads/master | 2022-12-15T21:53:37.247070 | 2020-09-18T02:59:52 | 2020-09-18T02:59:52 | 295,922,583 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,062 | cpp | // Copyright (c) 2011-2014 The Bitcoin developers
// Copyright (c) 2014-2015 The Dash developers
// Copyright (c) 2015-2020 The PIVX developers
// Copyright (c) 2020 The Nasda Cash developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#if defined(HAVE_CONFIG_H)
#include "config/nasdacash-config.h"
#endif
#include "optionsmodel.h"
#include "bitcoinunits.h"
#include "guiutil.h"
#include "amount.h"
#include "init.h"
#include "main.h"
#include "net.h"
#include "netbase.h"
#include "txdb.h" // for -dbcache defaults
#include "util.h"
#ifdef ENABLE_WALLET
#include "masternodeconfig.h"
#include "wallet/wallet.h"
#include "wallet/walletdb.h"
#endif
#include <QNetworkProxy>
#include <QStringList>
OptionsModel::OptionsModel(QObject* parent) : QAbstractListModel(parent)
{
Init();
}
void OptionsModel::addOverriddenOption(const std::string& option)
{
strOverriddenByCommandLine += QString::fromStdString(option) + "=" + QString::fromStdString(mapArgs[option]) + " ";
}
// Writes all missing QSettings with their default values
void OptionsModel::Init()
{
resetSettings = false;
QSettings settings;
// Ensure restart flag is unset on client startup
setRestartRequired(false);
setSSTChanged(false);
// These are Qt-only settings:
// Window
setWindowDefaultOptions(settings);
// Display
if (!settings.contains("fHideZeroBalances"))
settings.setValue("fHideZeroBalances", true);
fHideZeroBalances = settings.value("fHideZeroBalances").toBool();
if (!settings.contains("fHideOrphans"))
settings.setValue("fHideOrphans", true);
fHideOrphans = settings.value("fHideOrphans").toBool();
if (!settings.contains("fCoinControlFeatures"))
settings.setValue("fCoinControlFeatures", false);
fCoinControlFeatures = settings.value("fCoinControlFeatures", false).toBool();
if (!settings.contains("fShowColdStakingScreen"))
settings.setValue("fShowColdStakingScreen", false);
showColdStakingScreen = settings.value("fShowColdStakingScreen", false).toBool();
if (!settings.contains("fShowMasternodesTab"))
settings.setValue("fShowMasternodesTab", masternodeConfig.getCount());
// Main
setMainDefaultOptions(settings);
// Wallet
#ifdef ENABLE_WALLET
setWalletDefaultOptions(settings);
#endif
// Network
setNetworkDefaultOptions(settings);
// Display
setDisplayDefaultOptions(settings);
language = settings.value("language").toString();
}
void OptionsModel::refreshDataView()
{
Q_EMIT dataChanged(index(0), index(rowCount(QModelIndex()) - 1));
}
void OptionsModel::setMainDefaultOptions(QSettings& settings, bool reset)
{
// These are shared with the core or have a command-line parameter
// and we want command-line parameters to overwrite the GUI settings.
//
// If setting doesn't exist create it with defaults.
//
// If SoftSetArg() or SoftSetBoolArg() return false we were overridden
// by command-line and show this in the UI.
// Main
if (!settings.contains("nDatabaseCache") || reset)
settings.setValue("nDatabaseCache", (qint64)nDefaultDbCache);
if (!SoftSetArg("-dbcache", settings.value("nDatabaseCache").toString().toStdString()))
addOverriddenOption("-dbcache");
if (!settings.contains("nThreadsScriptVerif") || reset)
settings.setValue("nThreadsScriptVerif", DEFAULT_SCRIPTCHECK_THREADS);
if (!SoftSetArg("-par", settings.value("nThreadsScriptVerif").toString().toStdString()))
addOverriddenOption("-par");
if (reset) {
refreshDataView();
}
}
void OptionsModel::setWalletDefaultOptions(QSettings& settings, bool reset)
{
if (!settings.contains("bSpendZeroConfChange") || reset)
settings.setValue("bSpendZeroConfChange", false);
if (!SoftSetBoolArg("-spendzeroconfchange", settings.value("bSpendZeroConfChange").toBool()))
addOverriddenOption("-spendzeroconfchange");
if (reset) {
setStakeSplitThreshold(CWallet::DEFAULT_STAKE_SPLIT_THRESHOLD);
setUseCustomFee(false);
refreshDataView();
}
}
void OptionsModel::setNetworkDefaultOptions(QSettings& settings, bool reset)
{
if (!settings.contains("fUseUPnP") || reset)
settings.setValue("fUseUPnP", DEFAULT_UPNP);
if (!SoftSetBoolArg("-upnp", settings.value("fUseUPnP").toBool()))
addOverriddenOption("-upnp");
if (!settings.contains("fListen") || reset)
settings.setValue("fListen", DEFAULT_LISTEN);
if (!SoftSetBoolArg("-listen", settings.value("fListen").toBool()))
addOverriddenOption("-listen");
if (!settings.contains("fUseProxy") || reset)
settings.setValue("fUseProxy", false);
if (!settings.contains("addrProxy") || reset)
settings.setValue("addrProxy", "127.0.0.1:9050");
// Only try to set -proxy, if user has enabled fUseProxy
if (settings.value("fUseProxy").toBool() && !SoftSetArg("-proxy", settings.value("addrProxy").toString().toStdString()))
addOverriddenOption("-proxy");
else if (!settings.value("fUseProxy").toBool() && !GetArg("-proxy", "").empty())
addOverriddenOption("-proxy");
if (reset) {
refreshDataView();
}
}
void OptionsModel::setWindowDefaultOptions(QSettings& settings, bool reset)
{
if (!settings.contains("fMinimizeToTray") || reset)
settings.setValue("fMinimizeToTray", false);
fMinimizeToTray = settings.value("fMinimizeToTray").toBool();
if (!settings.contains("fMinimizeOnClose") || reset)
settings.setValue("fMinimizeOnClose", false);
fMinimizeOnClose = settings.value("fMinimizeOnClose").toBool();
if (reset) {
refreshDataView();
}
}
void OptionsModel::setDisplayDefaultOptions(QSettings& settings, bool reset)
{
if (!settings.contains("nDisplayUnit") || reset)
settings.setValue("nDisplayUnit", BitcoinUnits::NSDC);
nDisplayUnit = settings.value("nDisplayUnit").toInt();
if (!settings.contains("digits") || reset)
settings.setValue("digits", "2");
if (!settings.contains("theme") || reset)
settings.setValue("theme", "");
if (!settings.contains("fCSSexternal") || reset)
settings.setValue("fCSSexternal", false);
if (!settings.contains("language") || reset)
settings.setValue("language", "");
if (!SoftSetArg("-lang", settings.value("language").toString().toStdString()))
addOverriddenOption("-lang");
if (settings.contains("nAnonymizeNasdaCashAmount") || reset)
SoftSetArg("-anonymizenasdacashamount", settings.value("nAnonymizeNasdaCashAmount").toString().toStdString());
if (!settings.contains("strThirdPartyTxUrls") || reset)
settings.setValue("strThirdPartyTxUrls", "");
strThirdPartyTxUrls = settings.value("strThirdPartyTxUrls", "").toString();
fHideCharts = GetBoolArg("-hidecharts", false);
if (reset) {
refreshDataView();
}
}
void OptionsModel::Reset()
{
QSettings settings;
// Remove all entries from our QSettings object
settings.clear();
resetSettings = true; // Needed in nasdacash.cpp during shotdown to also remove the window positions
// default setting for OptionsModel::StartAtStartup - disabled
if (GUIUtil::GetStartOnSystemStartup())
GUIUtil::SetStartOnSystemStartup(false);
}
int OptionsModel::rowCount(const QModelIndex& parent) const
{
return OptionIDRowCount;
}
// read QSettings values and return them
QVariant OptionsModel::data(const QModelIndex& index, int role) const
{
if (role == Qt::EditRole) {
QSettings settings;
switch (index.row()) {
case StartAtStartup:
return GUIUtil::GetStartOnSystemStartup();
case MinimizeToTray:
return fMinimizeToTray;
case MapPortUPnP:
#ifdef USE_UPNP
return settings.value("fUseUPnP");
#else
return false;
#endif
case MinimizeOnClose:
return fMinimizeOnClose;
// default proxy
case ProxyUse:
return settings.value("fUseProxy", false);
case ProxyIP: {
// contains IP at index 0 and port at index 1
QStringList strlIpPort = settings.value("addrProxy").toString().split(":", QString::SkipEmptyParts);
return strlIpPort.at(0);
}
case ProxyPort: {
// contains IP at index 0 and port at index 1
QStringList strlIpPort = settings.value("addrProxy").toString().split(":", QString::SkipEmptyParts);
return strlIpPort.at(1);
}
#ifdef ENABLE_WALLET
case SpendZeroConfChange:
return settings.value("bSpendZeroConfChange");
case ShowMasternodesTab:
return settings.value("fShowMasternodesTab");
case StakeSplitThreshold:
{
// Return CAmount/qlonglong as double
const CAmount nStakeSplitThreshold = (pwalletMain) ? pwalletMain->nStakeSplitThreshold : CWallet::DEFAULT_STAKE_SPLIT_THRESHOLD;
return QVariant(static_cast<double>(nStakeSplitThreshold / static_cast<double>(COIN)));
}
case fUseCustomFee:
return QVariant((pwalletMain) ? pwalletMain->fUseCustomFee : false);
case nCustomFee:
return QVariant(static_cast<qlonglong>((pwalletMain) ? pwalletMain->nCustomFee : CWallet::GetRequiredFee(1000)));
#endif
case DisplayUnit:
return nDisplayUnit;
case ThirdPartyTxUrls:
return strThirdPartyTxUrls;
case Digits:
return settings.value("digits");
case Theme:
return settings.value("theme");
case Language:
return settings.value("language");
case CoinControlFeatures:
return fCoinControlFeatures;
case ShowColdStakingScreen:
return showColdStakingScreen;
case DatabaseCache:
return settings.value("nDatabaseCache");
case ThreadsScriptVerif:
return settings.value("nThreadsScriptVerif");
case HideCharts:
return fHideCharts;
case HideZeroBalances:
return settings.value("fHideZeroBalances");
case HideOrphans:
return settings.value("fHideOrphans");
case Listen:
return settings.value("fListen");
default:
return QVariant();
}
}
return QVariant();
}
// write QSettings values
bool OptionsModel::setData(const QModelIndex& index, const QVariant& value, int role)
{
bool successful = true; /* set to false on parse error */
if (role == Qt::EditRole) {
QSettings settings;
switch (index.row()) {
case StartAtStartup:
successful = GUIUtil::SetStartOnSystemStartup(value.toBool());
break;
case MinimizeToTray:
fMinimizeToTray = value.toBool();
settings.setValue("fMinimizeToTray", fMinimizeToTray);
break;
case MapPortUPnP: // core option - can be changed on-the-fly
settings.setValue("fUseUPnP", value.toBool());
MapPort(value.toBool());
break;
case MinimizeOnClose:
fMinimizeOnClose = value.toBool();
settings.setValue("fMinimizeOnClose", fMinimizeOnClose);
break;
// default proxy
case ProxyUse:
if (settings.value("fUseProxy") != value) {
settings.setValue("fUseProxy", value.toBool());
setRestartRequired(true);
}
break;
case ProxyIP: {
// contains current IP at index 0 and current port at index 1
QStringList strlIpPort = settings.value("addrProxy").toString().split(":", QString::SkipEmptyParts);
// if that key doesn't exist or has a changed IP
if (!settings.contains("addrProxy") || strlIpPort.at(0) != value.toString()) {
// construct new value from new IP and current port
QString strNewValue = value.toString() + ":" + strlIpPort.at(1);
settings.setValue("addrProxy", strNewValue);
setRestartRequired(true);
}
} break;
case ProxyPort: {
// contains current IP at index 0 and current port at index 1
QStringList strlIpPort = settings.value("addrProxy").toString().split(":", QString::SkipEmptyParts);
// if that key doesn't exist or has a changed port
if (!settings.contains("addrProxy") || strlIpPort.at(1) != value.toString()) {
// construct new value from current IP and new port
QString strNewValue = strlIpPort.at(0) + ":" + value.toString();
settings.setValue("addrProxy", strNewValue);
setRestartRequired(true);
}
} break;
#ifdef ENABLE_WALLET
case SpendZeroConfChange:
if (settings.value("bSpendZeroConfChange") != value) {
settings.setValue("bSpendZeroConfChange", value);
setRestartRequired(true);
}
break;
case ShowMasternodesTab:
if (settings.value("fShowMasternodesTab") != value) {
settings.setValue("fShowMasternodesTab", value);
setRestartRequired(true);
}
break;
case fUseCustomFee:
setUseCustomFee(value.toBool());
break;
case nCustomFee:
setCustomFeeValue(value.toLongLong());
break;
#endif
case StakeSplitThreshold:
// Write double as qlonglong/CAmount
setStakeSplitThreshold(static_cast<CAmount>(value.toDouble() * COIN));
setSSTChanged(true);
break;
case DisplayUnit:
setDisplayUnit(value);
break;
case ThirdPartyTxUrls:
if (strThirdPartyTxUrls != value.toString()) {
strThirdPartyTxUrls = value.toString();
settings.setValue("strThirdPartyTxUrls", strThirdPartyTxUrls);
setRestartRequired(true);
}
break;
case Digits:
if (settings.value("digits") != value) {
settings.setValue("digits", value);
setRestartRequired(true);
}
break;
case Theme:
if (settings.value("theme") != value) {
settings.setValue("theme", value);
setRestartRequired(true);
}
break;
case Language:
if (settings.value("language") != value) {
settings.setValue("language", value);
setRestartRequired(true);
}
break;
case HideCharts:
fHideCharts = value.toBool(); // memory only
Q_EMIT hideChartsChanged(fHideCharts);
break;
case HideZeroBalances:
fHideZeroBalances = value.toBool();
settings.setValue("fHideZeroBalances", fHideZeroBalances);
Q_EMIT hideZeroBalancesChanged(fHideZeroBalances);
break;
case HideOrphans:
fHideOrphans = value.toBool();
settings.setValue("fHideOrphans", fHideOrphans);
Q_EMIT hideOrphansChanged(fHideOrphans);
break;
case CoinControlFeatures:
fCoinControlFeatures = value.toBool();
settings.setValue("fCoinControlFeatures", fCoinControlFeatures);
Q_EMIT coinControlFeaturesChanged(fCoinControlFeatures);
break;
case ShowColdStakingScreen:
this->showColdStakingScreen = value.toBool();
settings.setValue("fShowColdStakingScreen", this->showColdStakingScreen);
Q_EMIT showHideColdStakingScreen(this->showColdStakingScreen);
break;
case DatabaseCache:
if (settings.value("nDatabaseCache") != value) {
settings.setValue("nDatabaseCache", value);
setRestartRequired(true);
}
break;
case ThreadsScriptVerif:
if (settings.value("nThreadsScriptVerif") != value) {
settings.setValue("nThreadsScriptVerif", value);
setRestartRequired(true);
}
break;
case Listen:
if (settings.value("fListen") != value) {
settings.setValue("fListen", value);
setRestartRequired(true);
}
break;
default:
break;
}
}
Q_EMIT dataChanged(index, index);
return successful;
}
/** Updates current unit in memory, settings and emits displayUnitChanged(newUnit) signal */
void OptionsModel::setDisplayUnit(const QVariant& value)
{
if (!value.isNull()) {
QSettings settings;
nDisplayUnit = value.toInt();
settings.setValue("nDisplayUnit", nDisplayUnit);
Q_EMIT displayUnitChanged(nDisplayUnit);
}
}
/* Update StakeSplitThreshold's value in wallet */
void OptionsModel::setStakeSplitThreshold(const CAmount nStakeSplitThreshold)
{
if (pwalletMain && pwalletMain->nStakeSplitThreshold != nStakeSplitThreshold) {
CWalletDB walletdb(pwalletMain->strWalletFile);
LOCK(pwalletMain->cs_wallet);
{
pwalletMain->nStakeSplitThreshold = nStakeSplitThreshold;
if (pwalletMain->fFileBacked)
walletdb.WriteStakeSplitThreshold(nStakeSplitThreshold);
}
}
}
/* returns default minimum value for stake split threshold as doulbe */
double OptionsModel::getSSTMinimum() const
{
return static_cast<double>(CWallet::minStakeSplitThreshold / COIN);
}
/* Verify that StakeSplitThreshold's value is either 0 or above the min. Else reset */
bool OptionsModel::isSSTValid()
{
if (pwalletMain && pwalletMain->nStakeSplitThreshold &&
pwalletMain->nStakeSplitThreshold < CWallet::minStakeSplitThreshold) {
setStakeSplitThreshold(CWallet::minStakeSplitThreshold);
return false;
}
return true;
}
/* Update Custom Fee value in wallet */
void OptionsModel::setUseCustomFee(bool fUse)
{
if (pwalletMain && pwalletMain->fUseCustomFee != fUse) {
CWalletDB walletdb(pwalletMain->strWalletFile);
{
LOCK(pwalletMain->cs_wallet);
pwalletMain->fUseCustomFee = fUse;
if (pwalletMain->fFileBacked)
walletdb.WriteUseCustomFee(fUse);
}
}
}
void OptionsModel::setCustomFeeValue(const CAmount& value)
{
if (pwalletMain && pwalletMain->nCustomFee != value) {
CWalletDB walletdb(pwalletMain->strWalletFile);
{
LOCK(pwalletMain->cs_wallet);
pwalletMain->nCustomFee = value;
if (pwalletMain->fFileBacked)
walletdb.WriteCustomFeeValue(value);
}
}
}
bool OptionsModel::getProxySettings(QNetworkProxy& proxy) const
{
// Directly query current base proxy, because
// GUI settings can be overridden with -proxy.
proxyType curProxy;
if (GetProxy(NET_IPV4, curProxy)) {
proxy.setType(QNetworkProxy::Socks5Proxy);
proxy.setHostName(QString::fromStdString(curProxy.proxy.ToStringIP()));
proxy.setPort(curProxy.proxy.GetPort());
return true;
} else
proxy.setType(QNetworkProxy::NoProxy);
return false;
}
void OptionsModel::setRestartRequired(bool fRequired)
{
QSettings settings;
return settings.setValue("fRestartRequired", fRequired);
}
bool OptionsModel::isRestartRequired()
{
QSettings settings;
return settings.value("fRestartRequired", false).toBool();
}
void OptionsModel::setSSTChanged(bool fChanged)
{
QSettings settings;
return settings.setValue("fSSTChanged", fChanged);
}
bool OptionsModel::isSSTChanged()
{
QSettings settings;
return settings.value("fSSTChanged", false).toBool();
}
| [
"71147574+NasdaCash@users.noreply.github.com"
] | 71147574+NasdaCash@users.noreply.github.com |
098bff0507abd957f5ab82955a7d61a3b5f1a980 | bb7874f3251cdf25d911995edffff832ae888130 | /Labs assignments/Lab5-6/Coat.h | 115706c1d516d5794b856743451d0667c7732f6d | [] | no_license | teodoraalexandra/Object-Oriented-Programming | 35b11ba915c88c513ce85ba1d498892444b90a56 | fcb4e93bd0eed7751fcbc23773c5ce38995367c0 | refs/heads/master | 2021-05-20T20:43:28.320959 | 2020-04-02T10:05:48 | 2020-04-02T10:05:48 | 252,410,240 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 609 | h | //
// Created by Teodora Dan on 2019-03-25.
//
#ifndef LAB5_COAT_H
#define LAB5_COAT_H
#endif //LAB5_COAT_H
#include <string>
#include <iostream>
#pragma once
class Coat
{
private:
std::string name;
std::string size;
int price;
std::string photo;
public:
Coat(const std::string& coat_name, const std::string& coat_size, int coat_price, const std::string& coat_photo);
Coat();
~Coat();
std::string getName() {return this->name;};
std::string getSize() {return this->size;};
int getPrice() {return this->price;};
std::string getPhoto() {return this->photo;};
};
| [
"33027937+teodoraalexanra@users.noreply.github.com"
] | 33027937+teodoraalexanra@users.noreply.github.com |
7c914f3e62bf7d3f00d1d5ede0801688e9a3cb59 | c790b40b2a4c845a1cc5aa6e7e29c3713dc09944 | /Landscape/opgl_land/math3d.cpp | afdea77400ae97e393ad4c52d5e29f4f02b5b4b6 | [] | no_license | ST4NSB/opengl-models | 4dce5726958349ff613c3031d2eb773a52ee057e | 3784c02730f98f183442b0154718c7b97980bbe8 | refs/heads/master | 2021-06-23T10:25:49.140036 | 2021-06-11T18:39:23 | 2021-06-11T18:39:23 | 134,914,914 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 32,271 | cpp |
// These are pretty portable
#include <math.h>
#include "math3d.h"
////////////////////////////////////////////////////////////
// LoadIdentity
// For 3x3 and 4x4 float and double matricies.
// 3x3 float
void m3dLoadIdentity33(M3DMatrix33f m)
{
// Don't be fooled, this is still column major
static M3DMatrix33f identity = { 1.0f, 0.0f, 0.0f ,
0.0f, 1.0f, 0.0f,
0.0f, 0.0f, 1.0f };
memcpy(m, identity, sizeof(M3DMatrix33f));
}
// 3x3 double
void m3dLoadIdentity33(M3DMatrix33d m)
{
// Don't be fooled, this is still column major
static M3DMatrix33d identity = { 1.0, 0.0, 0.0 ,
0.0, 1.0, 0.0,
0.0, 0.0, 1.0 };
memcpy(m, identity, sizeof(M3DMatrix33d));
}
// 4x4 float
void m3dLoadIdentity44(M3DMatrix44f m)
{
// Don't be fooled, this is still column major
static M3DMatrix44f identity = { 1.0f, 0.0f, 0.0f, 0.0f,
0.0f, 1.0f, 0.0f, 0.0f,
0.0f, 0.0f, 1.0f, 0.0f,
0.0f, 0.0f, 0.0f, 1.0f };
memcpy(m, identity, sizeof(M3DMatrix44f));
}
// 4x4 double
void m3dLoadIdentity44(M3DMatrix44d m)
{
static M3DMatrix44d identity = { 1.0, 0.0, 0.0, 0.0,
0.0, 1.0, 0.0, 0.0,
0.0, 0.0, 1.0, 0.0,
0.0, 0.0, 0.0, 1.0 };
memcpy(m, identity, sizeof(M3DMatrix44d));
}
////////////////////////////////////////////////////////////////////////
// Return the square of the distance between two points
// Should these be inlined...?
float m3dGetDistanceSquared(const M3DVector3f u, const M3DVector3f v)
{
float x = u[0] - v[0];
x = x*x;
float y = u[1] - v[1];
y = y*y;
float z = u[2] - v[2];
z = z*z;
return (x + y + z);
}
// Ditto above, but for doubles
double m3dGetDistanceSquared(const M3DVector3d u, const M3DVector3d v)
{
double x = u[0] - v[0];
x = x*x;
double y = u[1] - v[1];
y = y*y;
double z = u[2] - v[2];
z = z*z;
return (x + y + z);
}
#define A(row,col) a[(col<<2)+row]
#define B(row,col) b[(col<<2)+row]
#define P(row,col) product[(col<<2)+row]
///////////////////////////////////////////////////////////////////////////////
// Multiply two 4x4 matricies
void m3dMatrixMultiply44(M3DMatrix44f product, const M3DMatrix44f a, const M3DMatrix44f b )
{
for (int i = 0; i < 4; i++) {
float ai0=A(i,0), ai1=A(i,1), ai2=A(i,2), ai3=A(i,3);
P(i,0) = ai0 * B(0,0) + ai1 * B(1,0) + ai2 * B(2,0) + ai3 * B(3,0);
P(i,1) = ai0 * B(0,1) + ai1 * B(1,1) + ai2 * B(2,1) + ai3 * B(3,1);
P(i,2) = ai0 * B(0,2) + ai1 * B(1,2) + ai2 * B(2,2) + ai3 * B(3,2);
P(i,3) = ai0 * B(0,3) + ai1 * B(1,3) + ai2 * B(2,3) + ai3 * B(3,3);
}
}
// Ditto above, but for doubles
void m3dMatrixMultiply(M3DMatrix44d product, const M3DMatrix44d a, const M3DMatrix44d b )
{
for (int i = 0; i < 4; i++) {
double ai0=A(i,0), ai1=A(i,1), ai2=A(i,2), ai3=A(i,3);
P(i,0) = ai0 * B(0,0) + ai1 * B(1,0) + ai2 * B(2,0) + ai3 * B(3,0);
P(i,1) = ai0 * B(0,1) + ai1 * B(1,1) + ai2 * B(2,1) + ai3 * B(3,1);
P(i,2) = ai0 * B(0,2) + ai1 * B(1,2) + ai2 * B(2,2) + ai3 * B(3,2);
P(i,3) = ai0 * B(0,3) + ai1 * B(1,3) + ai2 * B(2,3) + ai3 * B(3,3);
}
}
#undef A
#undef B
#undef P
#define A33(row,col) a[(col*3)+row]
#define B33(row,col) b[(col*3)+row]
#define P33(row,col) product[(col*3)+row]
///////////////////////////////////////////////////////////////////////////////
// Multiply two 3x3 matricies
void m3dMatrixMultiply33(M3DMatrix33f product, const M3DMatrix33f a, const M3DMatrix33f b )
{
for (int i = 0; i < 3; i++) {
float ai0=A33(i,0), ai1=A33(i,1), ai2=A33(i,2);
P33(i,0) = ai0 * B33(0,0) + ai1 * B33(1,0) + ai2 * B33(2,0);
P33(i,1) = ai0 * B33(0,1) + ai1 * B33(1,1) + ai2 * B33(2,1);
P33(i,2) = ai0 * B33(0,2) + ai1 * B33(1,2) + ai2 * B33(2,2);
}
}
// Ditto above, but for doubles
void m3dMatrixMultiply44(M3DMatrix33d product, const M3DMatrix33d a, const M3DMatrix33d b )
{
for (int i = 0; i < 3; i++) {
double ai0=A33(i,0), ai1=A33(i,1), ai2=A33(i,2);
P33(i,0) = ai0 * B33(0,0) + ai1 * B33(1,0) + ai2 * B33(2,0);
P33(i,1) = ai0 * B33(0,1) + ai1 * B33(1,1) + ai2 * B33(2,1);
P33(i,2) = ai0 * B33(0,2) + ai1 * B33(1,2) + ai2 * B33(2,2);
}
}
#undef A33
#undef B33
#undef P33
#define M33(row,col) m[col*3+row]
///////////////////////////////////////////////////////////////////////////////
// Creates a 3x3 rotation matrix, takes radians NOT degrees
void m3dRotationMatrix33(M3DMatrix33f m, float angle, float x, float y, float z)
{
float mag, s, c;
float xx, yy, zz, xy, yz, zx, xs, ys, zs, one_c;
s = float(sin(angle));
c = float(cos(angle));
mag = float(sqrt( x*x + y*y + z*z ));
// Identity matrix
if (mag == 0.0f) {
m3dLoadIdentity33(m);
return;
}
// Rotation matrix is normalized
x /= mag;
y /= mag;
z /= mag;
xx = x * x;
yy = y * y;
zz = z * z;
xy = x * y;
yz = y * z;
zx = z * x;
xs = x * s;
ys = y * s;
zs = z * s;
one_c = 1.0f - c;
M33(0,0) = (one_c * xx) + c;
M33(0,1) = (one_c * xy) - zs;
M33(0,2) = (one_c * zx) + ys;
M33(1,0) = (one_c * xy) + zs;
M33(1,1) = (one_c * yy) + c;
M33(1,2) = (one_c * yz) - xs;
M33(2,0) = (one_c * zx) - ys;
M33(2,1) = (one_c * yz) + xs;
M33(2,2) = (one_c * zz) + c;
}
#undef M33
///////////////////////////////////////////////////////////////////////////////
// Creates a 4x4 rotation matrix, takes radians NOT degrees
void m3dRotationMatrix44(M3DMatrix44f m, float angle, float x, float y, float z)
{
float mag, s, c;
float xx, yy, zz, xy, yz, zx, xs, ys, zs, one_c;
s = float(sin(angle));
c = float(cos(angle));
mag = float(sqrt( x*x + y*y + z*z ));
// Identity matrix
if (mag == 0.0f) {
m3dLoadIdentity44(m);
return;
}
// Rotation matrix is normalized
x /= mag;
y /= mag;
z /= mag;
#define M(row,col) m[col*4+row]
xx = x * x;
yy = y * y;
zz = z * z;
xy = x * y;
yz = y * z;
zx = z * x;
xs = x * s;
ys = y * s;
zs = z * s;
one_c = 1.0f - c;
M(0,0) = (one_c * xx) + c;
M(0,1) = (one_c * xy) - zs;
M(0,2) = (one_c * zx) + ys;
M(0,3) = 0.0f;
M(1,0) = (one_c * xy) + zs;
M(1,1) = (one_c * yy) + c;
M(1,2) = (one_c * yz) - xs;
M(1,3) = 0.0f;
M(2,0) = (one_c * zx) - ys;
M(2,1) = (one_c * yz) + xs;
M(2,2) = (one_c * zz) + c;
M(2,3) = 0.0f;
M(3,0) = 0.0f;
M(3,1) = 0.0f;
M(3,2) = 0.0f;
M(3,3) = 1.0f;
#undef M
}
///////////////////////////////////////////////////////////////////////////////
// Ditto above, but for doubles
void m3dRotationMatrix33(M3DMatrix33d m, double angle, double x, double y, double z)
{
double mag, s, c;
double xx, yy, zz, xy, yz, zx, xs, ys, zs, one_c;
s = sin(angle);
c = cos(angle);
mag = sqrt( x*x + y*y + z*z );
// Identity matrix
if (mag == 0.0) {
m3dLoadIdentity33(m);
return;
}
// Rotation matrix is normalized
x /= mag;
y /= mag;
z /= mag;
#define M(row,col) m[col*3+row]
xx = x * x;
yy = y * y;
zz = z * z;
xy = x * y;
yz = y * z;
zx = z * x;
xs = x * s;
ys = y * s;
zs = z * s;
one_c = 1.0 - c;
M(0,0) = (one_c * xx) + c;
M(0,1) = (one_c * xy) - zs;
M(0,2) = (one_c * zx) + ys;
M(1,0) = (one_c * xy) + zs;
M(1,1) = (one_c * yy) + c;
M(1,2) = (one_c * yz) - xs;
M(2,0) = (one_c * zx) - ys;
M(2,1) = (one_c * yz) + xs;
M(2,2) = (one_c * zz) + c;
#undef M
}
///////////////////////////////////////////////////////////////////////////////
// Creates a 4x4 rotation matrix, takes radians NOT degrees
void m3dRotationMatrix44(M3DMatrix44d m, double angle, double x, double y, double z)
{
double mag, s, c;
double xx, yy, zz, xy, yz, zx, xs, ys, zs, one_c;
s = sin(angle);
c = cos(angle);
mag = sqrt( x*x + y*y + z*z );
// Identity matrix
if (mag == 0.0) {
m3dLoadIdentity44(m);
return;
}
// Rotation matrix is normalized
x /= mag;
y /= mag;
z /= mag;
#define M(row,col) m[col*4+row]
xx = x * x;
yy = y * y;
zz = z * z;
xy = x * y;
yz = y * z;
zx = z * x;
xs = x * s;
ys = y * s;
zs = z * s;
one_c = 1.0f - c;
M(0,0) = (one_c * xx) + c;
M(0,1) = (one_c * xy) - zs;
M(0,2) = (one_c * zx) + ys;
M(0,3) = 0.0;
M(1,0) = (one_c * xy) + zs;
M(1,1) = (one_c * yy) + c;
M(1,2) = (one_c * yz) - xs;
M(1,3) = 0.0;
M(2,0) = (one_c * zx) - ys;
M(2,1) = (one_c * yz) + xs;
M(2,2) = (one_c * zz) + c;
M(2,3) = 0.0;
M(3,0) = 0.0;
M(3,1) = 0.0;
M(3,2) = 0.0;
M(3,3) = 1.0;
#undef M
}
// Lifted from Mesa
/*
* Compute inverse of 4x4 transformation matrix.
* Code contributed by Jacques Leroy jle@star.be
* Return GL_TRUE for success, GL_FALSE for failure (singular matrix)
*/
bool m3dInvertMatrix44(M3DMatrix44f dst, const M3DMatrix44f src )
{
#define SWAP_ROWS(a, b) { float *_tmp = a; (a)=(b); (b)=_tmp; }
#define MAT(m,r,c) (m)[(c)*4+(r)]
float wtmp[4][8];
float m0, m1, m2, m3, s;
float *r0, *r1, *r2, *r3;
r0 = wtmp[0], r1 = wtmp[1], r2 = wtmp[2], r3 = wtmp[3];
r0[0] = MAT(src,0,0), r0[1] = MAT(src,0,1),
r0[2] = MAT(src,0,2), r0[3] = MAT(src,0,3),
r0[4] = 1.0, r0[5] = r0[6] = r0[7] = 0.0,
r1[0] = MAT(src,1,0), r1[1] = MAT(src,1,1),
r1[2] = MAT(src,1,2), r1[3] = MAT(src,1,3),
r1[5] = 1.0, r1[4] = r1[6] = r1[7] = 0.0,
r2[0] = MAT(src,2,0), r2[1] = MAT(src,2,1),
r2[2] = MAT(src,2,2), r2[3] = MAT(src,2,3),
r2[6] = 1.0, r2[4] = r2[5] = r2[7] = 0.0,
r3[0] = MAT(src,3,0), r3[1] = MAT(src,3,1),
r3[2] = MAT(src,3,2), r3[3] = MAT(src,3,3),
r3[7] = 1.0, r3[4] = r3[5] = r3[6] = 0.0;
/* choose pivot - or die */
if (fabs(r3[0])>fabs(r2[0])) SWAP_ROWS(r3, r2);
if (fabs(r2[0])>fabs(r1[0])) SWAP_ROWS(r2, r1);
if (fabs(r1[0])>fabs(r0[0])) SWAP_ROWS(r1, r0);
if (0.0 == r0[0]) return false;
/* eliminate first variable */
m1 = r1[0]/r0[0]; m2 = r2[0]/r0[0]; m3 = r3[0]/r0[0];
s = r0[1]; r1[1] -= m1 * s; r2[1] -= m2 * s; r3[1] -= m3 * s;
s = r0[2]; r1[2] -= m1 * s; r2[2] -= m2 * s; r3[2] -= m3 * s;
s = r0[3]; r1[3] -= m1 * s; r2[3] -= m2 * s; r3[3] -= m3 * s;
s = r0[4];
if (s != 0.0) { r1[4] -= m1 * s; r2[4] -= m2 * s; r3[4] -= m3 * s; }
s = r0[5];
if (s != 0.0) { r1[5] -= m1 * s; r2[5] -= m2 * s; r3[5] -= m3 * s; }
s = r0[6];
if (s != 0.0) { r1[6] -= m1 * s; r2[6] -= m2 * s; r3[6] -= m3 * s; }
s = r0[7];
if (s != 0.0) { r1[7] -= m1 * s; r2[7] -= m2 * s; r3[7] -= m3 * s; }
/* choose pivot - or die */
if (fabs(r3[1])>fabs(r2[1])) SWAP_ROWS(r3, r2);
if (fabs(r2[1])>fabs(r1[1])) SWAP_ROWS(r2, r1);
if (0.0 == r1[1]) return false;
/* eliminate second variable */
m2 = r2[1]/r1[1]; m3 = r3[1]/r1[1];
r2[2] -= m2 * r1[2]; r3[2] -= m3 * r1[2];
r2[3] -= m2 * r1[3]; r3[3] -= m3 * r1[3];
s = r1[4]; if (0.0 != s) { r2[4] -= m2 * s; r3[4] -= m3 * s; }
s = r1[5]; if (0.0 != s) { r2[5] -= m2 * s; r3[5] -= m3 * s; }
s = r1[6]; if (0.0 != s) { r2[6] -= m2 * s; r3[6] -= m3 * s; }
s = r1[7]; if (0.0 != s) { r2[7] -= m2 * s; r3[7] -= m3 * s; }
/* choose pivot - or die */
if (fabs(r3[2])>fabs(r2[2])) SWAP_ROWS(r3, r2);
if (0.0 == r2[2]) return false;
/* eliminate third variable */
m3 = r3[2]/r2[2];
r3[3] -= m3 * r2[3], r3[4] -= m3 * r2[4],
r3[5] -= m3 * r2[5], r3[6] -= m3 * r2[6],
r3[7] -= m3 * r2[7];
/* last check */
if (0.0 == r3[3]) return false;
s = 1.0f/r3[3]; /* now back substitute row 3 */
r3[4] *= s; r3[5] *= s; r3[6] *= s; r3[7] *= s;
m2 = r2[3]; /* now back substitute row 2 */
s = 1.0f/r2[2];
r2[4] = s * (r2[4] - r3[4] * m2), r2[5] = s * (r2[5] - r3[5] * m2),
r2[6] = s * (r2[6] - r3[6] * m2), r2[7] = s * (r2[7] - r3[7] * m2);
m1 = r1[3];
r1[4] -= r3[4] * m1, r1[5] -= r3[5] * m1,
r1[6] -= r3[6] * m1, r1[7] -= r3[7] * m1;
m0 = r0[3];
r0[4] -= r3[4] * m0, r0[5] -= r3[5] * m0,
r0[6] -= r3[6] * m0, r0[7] -= r3[7] * m0;
m1 = r1[2]; /* now back substitute row 1 */
s = 1.0f/r1[1];
r1[4] = s * (r1[4] - r2[4] * m1), r1[5] = s * (r1[5] - r2[5] * m1),
r1[6] = s * (r1[6] - r2[6] * m1), r1[7] = s * (r1[7] - r2[7] * m1);
m0 = r0[2];
r0[4] -= r2[4] * m0, r0[5] -= r2[5] * m0,
r0[6] -= r2[6] * m0, r0[7] -= r2[7] * m0;
m0 = r0[1]; /* now back substitute row 0 */
s = 1.0f/r0[0];
r0[4] = s * (r0[4] - r1[4] * m0), r0[5] = s * (r0[5] - r1[5] * m0),
r0[6] = s * (r0[6] - r1[6] * m0), r0[7] = s * (r0[7] - r1[7] * m0);
MAT(dst,0,0) = r0[4]; MAT(dst,0,1) = r0[5],
MAT(dst,0,2) = r0[6]; MAT(dst,0,3) = r0[7],
MAT(dst,1,0) = r1[4]; MAT(dst,1,1) = r1[5],
MAT(dst,1,2) = r1[6]; MAT(dst,1,3) = r1[7],
MAT(dst,2,0) = r2[4]; MAT(dst,2,1) = r2[5],
MAT(dst,2,2) = r2[6]; MAT(dst,2,3) = r2[7],
MAT(dst,3,0) = r3[4]; MAT(dst,3,1) = r3[5],
MAT(dst,3,2) = r3[6]; MAT(dst,3,3) = r3[7];
return true;
#undef MAT
#undef SWAP_ROWS
}
// Ditto above, but for doubles
bool m3dInvertMatrix44(M3DMatrix44d dst, const M3DMatrix44d src)
{
#define SWAP_ROWS(a, b) { double *_tmp = a; (a)=(b); (b)=_tmp; }
#define MAT(m,r,c) (m)[(c)*4+(r)]
double wtmp[4][8];
double m0, m1, m2, m3, s;
double *r0, *r1, *r2, *r3;
r0 = wtmp[0], r1 = wtmp[1], r2 = wtmp[2], r3 = wtmp[3];
r0[0] = MAT(src,0,0), r0[1] = MAT(src,0,1),
r0[2] = MAT(src,0,2), r0[3] = MAT(src,0,3),
r0[4] = 1.0, r0[5] = r0[6] = r0[7] = 0.0,
r1[0] = MAT(src,1,0), r1[1] = MAT(src,1,1),
r1[2] = MAT(src,1,2), r1[3] = MAT(src,1,3),
r1[5] = 1.0, r1[4] = r1[6] = r1[7] = 0.0,
r2[0] = MAT(src,2,0), r2[1] = MAT(src,2,1),
r2[2] = MAT(src,2,2), r2[3] = MAT(src,2,3),
r2[6] = 1.0, r2[4] = r2[5] = r2[7] = 0.0,
r3[0] = MAT(src,3,0), r3[1] = MAT(src,3,1),
r3[2] = MAT(src,3,2), r3[3] = MAT(src,3,3),
r3[7] = 1.0, r3[4] = r3[5] = r3[6] = 0.0;
// choose pivot - or die
if (fabs(r3[0])>fabs(r2[0])) SWAP_ROWS(r3, r2);
if (fabs(r2[0])>fabs(r1[0])) SWAP_ROWS(r2, r1);
if (fabs(r1[0])>fabs(r0[0])) SWAP_ROWS(r1, r0);
if (0.0 == r0[0]) return false;
// eliminate first variable
m1 = r1[0]/r0[0]; m2 = r2[0]/r0[0]; m3 = r3[0]/r0[0];
s = r0[1]; r1[1] -= m1 * s; r2[1] -= m2 * s; r3[1] -= m3 * s;
s = r0[2]; r1[2] -= m1 * s; r2[2] -= m2 * s; r3[2] -= m3 * s;
s = r0[3]; r1[3] -= m1 * s; r2[3] -= m2 * s; r3[3] -= m3 * s;
s = r0[4];
if (s != 0.0) { r1[4] -= m1 * s; r2[4] -= m2 * s; r3[4] -= m3 * s; }
s = r0[5];
if (s != 0.0) { r1[5] -= m1 * s; r2[5] -= m2 * s; r3[5] -= m3 * s; }
s = r0[6];
if (s != 0.0) { r1[6] -= m1 * s; r2[6] -= m2 * s; r3[6] -= m3 * s; }
s = r0[7];
if (s != 0.0) { r1[7] -= m1 * s; r2[7] -= m2 * s; r3[7] -= m3 * s; }
// choose pivot - or die
if (fabs(r3[1])>fabs(r2[1])) SWAP_ROWS(r3, r2);
if (fabs(r2[1])>fabs(r1[1])) SWAP_ROWS(r2, r1);
if (0.0 == r1[1]) return false;
// eliminate second variable
m2 = r2[1]/r1[1]; m3 = r3[1]/r1[1];
r2[2] -= m2 * r1[2]; r3[2] -= m3 * r1[2];
r2[3] -= m2 * r1[3]; r3[3] -= m3 * r1[3];
s = r1[4]; if (0.0 != s) { r2[4] -= m2 * s; r3[4] -= m3 * s; }
s = r1[5]; if (0.0 != s) { r2[5] -= m2 * s; r3[5] -= m3 * s; }
s = r1[6]; if (0.0 != s) { r2[6] -= m2 * s; r3[6] -= m3 * s; }
s = r1[7]; if (0.0 != s) { r2[7] -= m2 * s; r3[7] -= m3 * s; }
// choose pivot - or die
if (fabs(r3[2])>fabs(r2[2])) SWAP_ROWS(r3, r2);
if (0.0 == r2[2]) return false;
// eliminate third variable
m3 = r3[2]/r2[2];
r3[3] -= m3 * r2[3], r3[4] -= m3 * r2[4],
r3[5] -= m3 * r2[5], r3[6] -= m3 * r2[6],
r3[7] -= m3 * r2[7];
// last check
if (0.0 == r3[3]) return false;
s = 1.0f/r3[3]; // now back substitute row 3
r3[4] *= s; r3[5] *= s; r3[6] *= s; r3[7] *= s;
m2 = r2[3]; // now back substitute row 2
s = 1.0f/r2[2];
r2[4] = s * (r2[4] - r3[4] * m2), r2[5] = s * (r2[5] - r3[5] * m2),
r2[6] = s * (r2[6] - r3[6] * m2), r2[7] = s * (r2[7] - r3[7] * m2);
m1 = r1[3];
r1[4] -= r3[4] * m1, r1[5] -= r3[5] * m1,
r1[6] -= r3[6] * m1, r1[7] -= r3[7] * m1;
m0 = r0[3];
r0[4] -= r3[4] * m0, r0[5] -= r3[5] * m0,
r0[6] -= r3[6] * m0, r0[7] -= r3[7] * m0;
m1 = r1[2]; // now back substitute row 1
s = 1.0f/r1[1];
r1[4] = s * (r1[4] - r2[4] * m1), r1[5] = s * (r1[5] - r2[5] * m1),
r1[6] = s * (r1[6] - r2[6] * m1), r1[7] = s * (r1[7] - r2[7] * m1);
m0 = r0[2];
r0[4] -= r2[4] * m0, r0[5] -= r2[5] * m0,
r0[6] -= r2[6] * m0, r0[7] -= r2[7] * m0;
m0 = r0[1]; // now back substitute row 0
s = 1.0f/r0[0];
r0[4] = s * (r0[4] - r1[4] * m0), r0[5] = s * (r0[5] - r1[5] * m0),
r0[6] = s * (r0[6] - r1[6] * m0), r0[7] = s * (r0[7] - r1[7] * m0);
MAT(dst,0,0) = r0[4]; MAT(dst,0,1) = r0[5],
MAT(dst,0,2) = r0[6]; MAT(dst,0,3) = r0[7],
MAT(dst,1,0) = r1[4]; MAT(dst,1,1) = r1[5],
MAT(dst,1,2) = r1[6]; MAT(dst,1,3) = r1[7],
MAT(dst,2,0) = r2[4]; MAT(dst,2,1) = r2[5],
MAT(dst,2,2) = r2[6]; MAT(dst,2,3) = r2[7],
MAT(dst,3,0) = r3[4]; MAT(dst,3,1) = r3[5],
MAT(dst,3,2) = r3[6]; MAT(dst,3,3) = r3[7];
return true;
#undef MAT
#undef SWAP_ROWS
return true;
}
///////////////////////////////////////////////////////////////////////////////////////
// Get Window coordinates, discard Z...
void m3dProjectXY(const M3DMatrix44f mModelView, const M3DMatrix44f mProjection, const int iViewPort[4], const M3DVector3f vPointIn, M3DVector2f vPointOut)
{
M3DVector4f vBack, vForth;
memcpy(vBack, vPointIn, sizeof(float)*3);
vBack[3] = 1.0f;
m3dTransformVector4(vForth, vBack, mModelView);
m3dTransformVector4(vBack, vForth, mProjection);
if(!m3dCloseEnough(vBack[3], 0.0f, 0.000001f)) {
float div = 1.0f / vBack[3];
vBack[0] *= div;
vBack[1] *= div;
}
vPointOut[0] = vBack[0] * 0.5f + 0.5f;
vPointOut[1] = vBack[1] * 0.5f + 0.5f;
/* Map x,y to viewport */
vPointOut[0] = (vPointOut[0] * iViewPort[2]) + iViewPort[0];
vPointOut[1] = (vPointOut[1] * iViewPort[3]) + iViewPort[1];
}
///////////////////////////////////////////////////////////////////////////////////////
// Get window coordinates, we also want Z....
void m3dProjectXYZ(const M3DMatrix44f mModelView, const M3DMatrix44f mProjection, const int iViewPort[4], const M3DVector3f vPointIn, M3DVector3f vPointOut)
{
M3DVector4f vBack, vForth;
memcpy(vBack, vPointIn, sizeof(float)*3);
vBack[3] = 1.0f;
m3dTransformVector4(vForth, vBack, mModelView);
m3dTransformVector4(vBack, vForth, mProjection);
if(!m3dCloseEnough(vBack[3], 0.0f, 0.000001f)) {
float div = 1.0f / vBack[3];
vBack[0] *= div;
vBack[1] *= div;
vBack[2] *= div;
}
vPointOut[0] = vBack[0] * 0.5f + 0.5f;
vPointOut[1] = vBack[1] * 0.5f + 0.5f;
vPointOut[2] = vBack[2] * 0.5f + 0.5f;
/* Map x,y to viewport */
vPointOut[0] = (vPointOut[0] * iViewPort[2]) + iViewPort[0];
vPointOut[1] = (vPointOut[1] * iViewPort[3]) + iViewPort[1];
}
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// Misc. Utilities
///////////////////////////////////////////////////////////////////////////////
// Calculates the normal of a triangle specified by the three points
// p1, p2, and p3. Each pointer points to an array of three floats. The
// triangle is assumed to be wound counter clockwise.
void m3dFindNormal(M3DVector3f result, const M3DVector3f point1, const M3DVector3f point2,
const M3DVector3f point3)
{
M3DVector3f v1,v2; // Temporary vectors
// Calculate two vectors from the three points. Assumes counter clockwise
// winding!
v1[0] = point1[0] - point2[0];
v1[1] = point1[1] - point2[1];
v1[2] = point1[2] - point2[2];
v2[0] = point2[0] - point3[0];
v2[1] = point2[1] - point3[1];
v2[2] = point2[2] - point3[2];
// Take the cross product of the two vectors to get
// the normal vector.
m3dCrossProduct(result, v1, v2);
}
// Ditto above, but for doubles
void m3dFindNormal(M3DVector3d result, const M3DVector3d point1, const M3DVector3d point2,
const M3DVector3d point3)
{
M3DVector3d v1,v2; // Temporary vectors
// Calculate two vectors from the three points. Assumes counter clockwise
// winding!
v1[0] = point1[0] - point2[0];
v1[1] = point1[1] - point2[1];
v1[2] = point1[2] - point2[2];
v2[0] = point2[0] - point3[0];
v2[1] = point2[1] - point3[1];
v2[2] = point2[2] - point3[2];
// Take the cross product of the two vectors to get
// the normal vector.
m3dCrossProduct(result, v1, v2);
}
/////////////////////////////////////////////////////////////////////////////////////////
// Calculate the plane equation of the plane that the three specified points lay in. The
// points are given in clockwise winding order, with normal pointing out of clockwise face
// planeEq contains the A,B,C, and D of the plane equation coefficients
void m3dGetPlaneEquation(M3DVector4f planeEq, const M3DVector3f p1, const M3DVector3f p2, const M3DVector3f p3)
{
// Get two vectors... do the cross product
M3DVector3f v1, v2;
// V1 = p3 - p1
v1[0] = p3[0] - p1[0];
v1[1] = p3[1] - p1[1];
v1[2] = p3[2] - p1[2];
// V2 = P2 - p1
v2[0] = p2[0] - p1[0];
v2[1] = p2[1] - p1[1];
v2[2] = p2[2] - p1[2];
// Unit normal to plane - Not sure which is the best way here
m3dCrossProduct(planeEq, v1, v2);
m3dNormalizeVector(planeEq);
// Back substitute to get D
planeEq[3] = -(planeEq[0] * p3[0] + planeEq[1] * p3[1] + planeEq[2] * p3[2]);
}
// Ditto above, but for doubles
void m3dGetPlaneEquation(M3DVector4d planeEq, const M3DVector3d p1, const M3DVector3d p2, const M3DVector3d p3)
{
// Get two vectors... do the cross product
M3DVector3d v1, v2;
// V1 = p3 - p1
v1[0] = p3[0] - p1[0];
v1[1] = p3[1] - p1[1];
v1[2] = p3[2] - p1[2];
// V2 = P2 - p1
v2[0] = p2[0] - p1[0];
v2[1] = p2[1] - p1[1];
v2[2] = p2[2] - p1[2];
// Unit normal to plane - Not sure which is the best way here
m3dCrossProduct(planeEq, v1, v2);
m3dNormalizeVector(planeEq);
// Back substitute to get D
planeEq[3] = -(planeEq[0] * p3[0] + planeEq[1] * p3[1] + planeEq[2] * p3[2]);
}
//////////////////////////////////////////////////////////////////////////////////////////////////
// This function does a three dimensional Catmull-Rom curve interpolation. Pass four points, and a
// floating point number between 0.0 and 1.0. The curve is interpolated between the middle two points.
// Coded by RSW
// http://www.mvps.org/directx/articles/catmull/
void m3dCatmullRom3(M3DVector3f vOut, M3DVector3f vP0, M3DVector3f vP1, M3DVector3f vP2, M3DVector3f vP3, float t)
{
// Unrolled loop to speed things up a little bit...
float t2 = t * t;
float t3 = t2 * t;
// X
vOut[0] = 0.5f * ( ( 2.0f * vP1[0]) +
(-vP0[0] + vP2[0]) * t +
(2.0f * vP0[0] - 5.0f *vP1[0] + 4.0f * vP2[0] - vP3[0]) * t2 +
(-vP0[0] + 3.0f*vP1[0] - 3.0f *vP2[0] + vP3[0]) * t3);
// Y
vOut[1] = 0.5f * ( ( 2.0f * vP1[1]) +
(-vP0[1] + vP2[1]) * t +
(2.0f * vP0[1] - 5.0f *vP1[1] + 4.0f * vP2[1] - vP3[1]) * t2 +
(-vP0[1] + 3.0f*vP1[1] - 3.0f *vP2[1] + vP3[1]) * t3);
// Z
vOut[2] = 0.5f * ( ( 2.0f * vP1[2]) +
(-vP0[2] + vP2[2]) * t +
(2.0f * vP0[2] - 5.0f *vP1[2] + 4.0f * vP2[2] - vP3[2]) * t2 +
(-vP0[2] + 3.0f*vP1[2] - 3.0f *vP2[2] + vP3[2]) * t3);
}
//////////////////////////////////////////////////////////////////////////////////////////////////
// This function does a three dimensional Catmull-Rom curve interpolation. Pass four points, and a
// floating point number between 0.0 and 1.0. The curve is interpolated between the middle two points.
// Coded by RSW
// http://www.mvps.org/directx/articles/catmull/
void m3dCatmullRom3(M3DVector3d vOut, M3DVector3d vP0, M3DVector3d vP1, M3DVector3d vP2, M3DVector3d vP3, double t)
{
// Unrolled loop to speed things up a little bit...
double t2 = t * t;
double t3 = t2 * t;
// X
vOut[0] = 0.5 * ( ( 2.0 * vP1[0]) +
(-vP0[0] + vP2[0]) * t +
(2.0 * vP0[0] - 5.0 *vP1[0] + 4.0 * vP2[0] - vP3[0]) * t2 +
(-vP0[0] + 3.0*vP1[0] - 3.0 *vP2[0] + vP3[0]) * t3);
// Y
vOut[1] = 0.5 * ( ( 2.0 * vP1[1]) +
(-vP0[1] + vP2[1]) * t +
(2.0 * vP0[1] - 5.0 *vP1[1] + 4.0 * vP2[1] - vP3[1]) * t2 +
(-vP0[1] + 3*vP1[1] - 3.0 *vP2[1] + vP3[1]) * t3);
// Z
vOut[2] = 0.5 * ( ( 2.0 * vP1[2]) +
(-vP0[2] + vP2[2]) * t +
(2.0 * vP0[2] - 5.0 *vP1[2] + 4.0 * vP2[2] - vP3[2]) * t2 +
(-vP0[2] + 3.0*vP1[2] - 3.0 *vP2[2] + vP3[2]) * t3);
}
///////////////////////////////////////////////////////////////////////////////
// Determine if the ray (starting at point) intersects the sphere centered at
// sphereCenter with radius sphereRadius
// Return value is < 0 if the ray does not intersect
// Return value is 0.0 if ray is tangent
// Positive value is distance to the intersection point
// Algorithm from "3D Math Primer for Graphics and Game Development"
double m3dRaySphereTest(const M3DVector3d point, const M3DVector3d ray, const M3DVector3d sphereCenter, double sphereRadius)
{
//m3dNormalizeVector(ray); // Make sure ray is unit length
M3DVector3d rayToCenter; // Ray to center of sphere
rayToCenter[0] = sphereCenter[0] - point[0];
rayToCenter[1] = sphereCenter[1] - point[1];
rayToCenter[2] = sphereCenter[2] - point[2];
// Project rayToCenter on ray to test
double a = m3dDotProduct(rayToCenter, ray);
// Distance to center of sphere
double distance2 = m3dDotProduct(rayToCenter, rayToCenter); // Or length
double dRet = (sphereRadius * sphereRadius) - distance2 + (a*a);
if(dRet > 0.0) // Return distance to intersection
dRet = a - sqrt(dRet);
return dRet;
}
///////////////////////////////////////////////////////////////////////////////
// Determine if the ray (starting at point) intersects the sphere centered at
// ditto above, but uses floating point math
float m3dRaySphereTest(const M3DVector3f point, const M3DVector3f ray, const M3DVector3f sphereCenter, float sphereRadius)
{
//m3dNormalizeVectorf(ray); // Make sure ray is unit length
M3DVector3f rayToCenter; // Ray to center of sphere
rayToCenter[0] = sphereCenter[0] - point[0];
rayToCenter[1] = sphereCenter[1] - point[1];
rayToCenter[2] = sphereCenter[2] - point[2];
// Project rayToCenter on ray to test
float a = m3dDotProduct(rayToCenter, ray);
// Distance to center of sphere
float distance2 = m3dDotProduct(rayToCenter, rayToCenter); // Or length
float dRet = (sphereRadius * sphereRadius) - distance2 + (a*a);
if(dRet > 0.0) // Return distance to intersection
dRet = a - sqrtf(dRet);
return dRet;
}
///////////////////////////////////////////////////////////////////////////////////////////////////
// Calculate the tangent basis for a triangle on the surface of a model
// This vector is needed for most normal mapping shaders
void m3dCalculateTangentBasis(const M3DVector3f vTriangle[3], const M3DVector2f vTexCoords[3], const M3DVector3f N, M3DVector3f vTangent)
{
M3DVector3f dv2v1, dv3v1;
float dc2c1t, dc2c1b, dc3c1t, dc3c1b;
float M;
m3dSubtractVectors3(dv2v1, vTriangle[1], vTriangle[0]);
m3dSubtractVectors3(dv3v1, vTriangle[2], vTriangle[0]);
dc2c1t = vTexCoords[1][0] - vTexCoords[0][0];
dc2c1b = vTexCoords[1][1] - vTexCoords[0][1];
dc3c1t = vTexCoords[2][0] - vTexCoords[0][0];
dc3c1b = vTexCoords[2][1] - vTexCoords[0][1];
M = (dc2c1t * dc3c1b) - (dc3c1t * dc2c1b);
M = 1.0f / M;
m3dScaleVector3(dv2v1, dc3c1b);
m3dScaleVector3(dv3v1, dc2c1b);
m3dSubtractVectors3(vTangent, dv2v1, dv3v1);
m3dScaleVector3(vTangent, M); // This potentially changes the direction of the vector
m3dNormalizeVector(vTangent);
M3DVector3f B;
m3dCrossProduct(B, N, vTangent);
m3dCrossProduct(vTangent, B, N);
m3dNormalizeVector(vTangent);
}
////////////////////////////////////////////////////////////////////////////
// Smoothly step between 0 and 1 between edge1 and edge 2
double m3dSmoothStep(double edge1, double edge2, double x)
{
double t;
t = (x - edge1) / (edge2 - edge1);
if(t > 1.0)
t = 1.0;
if(t < 0.0)
t = 0.0f;
return t * t * ( 3.0 - 2.0 * t);
}
////////////////////////////////////////////////////////////////////////////
// Smoothly step between 0 and 1 between edge1 and edge 2
float m3dSmoothStep(float edge1, float edge2, float x)
{
float t;
t = (x - edge1) / (edge2 - edge1);
if(t > 1.0f)
t = 1.0f;
if(t < 0.0)
t = 0.0f;
return t * t * ( 3.0f - 2.0f * t);
}
///////////////////////////////////////////////////////////////////////////
// Creae a projection to "squish" an object into the plane.
// Use m3dGetPlaneEquationf(planeEq, point1, point2, point3);
// to get a plane equation.
void m3dMakePlanarShadowMatrix(M3DMatrix44f proj, const M3DVector4f planeEq, const M3DVector3f vLightPos)
{
// These just make the code below easier to read. They will be
// removed by the optimizer.
float a = planeEq[0];
float b = planeEq[1];
float c = planeEq[2];
float d = planeEq[3];
float dx = -vLightPos[0];
float dy = -vLightPos[1];
float dz = -vLightPos[2];
// Now build the projection matrix
proj[0] = b * dy + c * dz;
proj[1] = -a * dy;
proj[2] = -a * dz;
proj[3] = 0.0;
proj[4] = -b * dx;
proj[5] = a * dx + c * dz;
proj[6] = -b * dz;
proj[7] = 0.0;
proj[8] = -c * dx;
proj[9] = -c * dy;
proj[10] = a * dx + b * dy;
proj[11] = 0.0;
proj[12] = -d * dx;
proj[13] = -d * dy;
proj[14] = -d * dz;
proj[15] = a * dx + b * dy + c * dz;
// Shadow matrix ready
}
///////////////////////////////////////////////////////////////////////////
// Creae a projection to "squish" an object into the plane.
// Use m3dGetPlaneEquationd(planeEq, point1, point2, point3);
// to get a plane equation.
void m3dMakePlanarShadowMatrix(M3DMatrix44d proj, const M3DVector4d planeEq, const M3DVector3f vLightPos)
{
// These just make the code below easier to read. They will be
// removed by the optimizer.
double a = planeEq[0];
double b = planeEq[1];
double c = planeEq[2];
double d = planeEq[3];
double dx = -vLightPos[0];
double dy = -vLightPos[1];
double dz = -vLightPos[2];
// Now build the projection matrix
proj[0] = b * dy + c * dz;
proj[1] = -a * dy;
proj[2] = -a * dz;
proj[3] = 0.0;
proj[4] = -b * dx;
proj[5] = a * dx + c * dz;
proj[6] = -b * dz;
proj[7] = 0.0;
proj[8] = -c * dx;
proj[9] = -c * dy;
proj[10] = a * dx + b * dy;
proj[11] = 0.0;
proj[12] = -d * dx;
proj[13] = -d * dy;
proj[14] = -d * dz;
proj[15] = a * dx + b * dy + c * dz;
// Shadow matrix ready
}
/////////////////////////////////////////////////////////////////////////////
// I want to know the point on a ray, closest to another given point in space.
// As a bonus, return the distance squared of the two points.
// In: vRayOrigin is the origin of the ray.
// In: vUnitRayDir is the unit vector of the ray
// In: vPointInSpace is the point in space
// Out: vPointOnRay is the poing on the ray closest to vPointInSpace
// Return: The square of the distance to the ray
double m3dClosestPointOnRay(M3DVector3d vPointOnRay, const M3DVector3d vRayOrigin, const M3DVector3d vUnitRayDir,
const M3DVector3d vPointInSpace)
{
M3DVector3d v;
m3dSubtractVectors3(v, vPointInSpace, vRayOrigin);
double t = m3dDotProduct(vUnitRayDir, v);
// This is the point on the ray
vPointOnRay[0] = vRayOrigin[0] + (t * vUnitRayDir[0]);
vPointOnRay[1] = vRayOrigin[1] + (t * vUnitRayDir[1]);
vPointOnRay[2] = vRayOrigin[2] + (t * vUnitRayDir[2]);
return m3dGetDistanceSquared(vPointOnRay, vPointInSpace);
}
// ditto above... but with floats
float m3dClosestPointOnRay(M3DVector3f vPointOnRay, const M3DVector3f vRayOrigin, const M3DVector3f vUnitRayDir,
const M3DVector3f vPointInSpace)
{
M3DVector3f v;
m3dSubtractVectors3(v, vPointInSpace, vRayOrigin);
float t = m3dDotProduct(vUnitRayDir, v);
// This is the point on the ray
vPointOnRay[0] = vRayOrigin[0] + (t * vUnitRayDir[0]);
vPointOnRay[1] = vRayOrigin[1] + (t * vUnitRayDir[1]);
vPointOnRay[2] = vRayOrigin[2] + (t * vUnitRayDir[2]);
return m3dGetDistanceSquared(vPointOnRay, vPointInSpace);
}
| [
"barbulescuadrian10@gmail.com"
] | barbulescuadrian10@gmail.com |
ae2d50021f3f760fe90e4fa019948b1eebc32083 | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/httpd/gumtree/httpd_new_log_4549.cpp | c16f91f9965ed148c83972c4d65cd4695e07985c | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 131 | cpp | ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(00934)
"all workers are busy. Unable to serve %s", *url); | [
"993273596@qq.com"
] | 993273596@qq.com |
658333f1fbe967bc7f865385eb8a87daf411f8a0 | 74e850fb809ddc985a05dea59d827d42287e1521 | /GameCollectionProject/GameCollectionProject/GameObjects.cpp | 6d29ad91bb2de701b82281b966c8bc429bef805c | [] | no_license | a1clark1a/GameCollectionProject | a38d5e7868fd71b1e6f3755f0e5bcf6ff26cb27a | 14fafb0f5f21a38fbc0c24c8bee503debe72c94d | refs/heads/master | 2021-09-05T00:16:49.499495 | 2018-01-23T01:19:48 | 2018-01-23T01:19:48 | 109,745,332 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,461 | cpp | #include "GameObjects.h"
/*********************************************************************
**********************ABSTRACT BASE CLASS*****************************
*********************************************************************/
//PUBLIC MEMBERS//
//Constructor to initialize GameObject object's texture and initial position
GameObjects::GameObjects(const std::string texturePath, const sf::Vector2f& pos)
:m_pos(pos)
{
Setup(texturePath);
}
//Virtual Destructor
GameObjects::~GameObjects()
{
delete CollisionSphere;
}
/***************************
******Virtual Functions*****
***************************/
//GameObjects version set texture and origin
void GameObjects::Setup(const std::string texturePath)
{
m_gameObjIsDestroyed = false;
m_collisionRadius = 0.0f;
m_angle = 0.0f;
m_texture.loadFromFile(texturePath);
m_sprite.setTexture(m_texture);
m_sprite.setOrigin(m_sprite.getTextureRect().width * 0.5f, m_sprite.getTextureRect().height * 0.5f);
}
//GameObjects version draws a CollisionSphere on each object
void GameObjects::Draw(Window* window)
{
CollisionSphere->setRadius(m_collisionRadius);
CollisionSphere->setOutlineThickness(2.0f);
CollisionSphere->setFillColor(sf::Color::Transparent);
CollisionSphere->setPosition(m_pos);
CollisionSphere->setOrigin(m_collisionRadius, m_collisionRadius);
CollisionSphere->setOutlineColor(sf::Color::Red);
//window->DrawThis(CollisionSphere); //Comment out
window->DrawThis(&m_sprite);
}
//GameObjects version Updates an objects general velocity and movement
void GameObjects::Update(Window* window)
{
m_vel += m_accel * window->GetDeltaTime()->asSeconds();
m_pos += m_vel * window->GetDeltaTime()->asSeconds();
m_sprite.setRotation(m_angle);
m_sprite.setPosition(m_pos);
}
//GameObjects version of setting an objects Velocity based on its angle
void GameObjects::SetVelocity(const float & velAmount)
{
if (velAmount > 0.0f)
{
float l_rotInRadians = DEG_TO_RAD * m_angle;
m_vel = sf::Vector2f(velAmount * sin(l_rotInRadians), -velAmount * cos(l_rotInRadians));
}
else
{
m_vel = sf::Vector2f(0.0f, 0.0f);
}
}
//GameObjects version Function to set an objects velocity and its max possible velocity
void GameObjects::VelocityLimiter(const float & maxSpeed)
{
// set the speed by getting the square root of an objects velocity vector
float l_speed = sqrt(m_vel.x * m_vel.x + m_vel.y * m_vel.y);
if (l_speed <= 0.1)
{
return;
}
// Normalized the objects velocity by dividing the objects velocity by the speed
sf::Vector2f l_normalizedVel = sf::Vector2f(m_vel.x / l_speed, m_vel.y / l_speed);
if (l_speed > maxSpeed)
{
l_speed = maxSpeed;
}
// Set the objects velocity in a given direction by multiplying the normalized velocity to its speed
m_vel.x = l_normalizedVel.x * l_speed;
m_vel.y = l_normalizedVel.y * l_speed;
}
//GameObject's version to apply some drag to objects movements when no acceleration
void GameObjects::ApplyDrag(const float & dt, const float & dragval)
{
if (m_accel.x == 0.0f && m_accel.y == 0.0f)
{
float dragAmount = dt * dragval;
m_vel.x -= dragAmount * m_vel.x;
m_vel.y -= dragAmount * m_vel.y;
}
}
//GameObjects version setting an Objects acceleration based on angle
void GameObjects::SetAccel(const float & accelVal)
{
if (accelVal > 0.0f)
{
float l_rotInRadians = DEG_TO_RAD * m_angle;
m_accel = sf::Vector2f(accelVal * sin(l_rotInRadians), -accelVal * cos(l_rotInRadians));
}
else
{
m_accel = sf::Vector2f(0.0f, 0.0f);
}
}
//GameObjects version to accelerate player forward or backward in a more linear direction
void GameObjects::SetLinearAccel(const float & accelVal)
{
if (accelVal != 0)
{
m_accel = sf::Vector2f(0.0, 10.0f * -accelVal);
}
else
{
m_accel = sf::Vector2f(0.0f, 0.0f);
}
}
//GameObjects to accelerate player Left or Right
void GameObjects::SetSideAccel(const float & accelVal)
{
if (accelVal != 0.0f)
{
m_accel = sf::Vector2f(10.0f * accelVal, 0.0f);
}
else
{
m_accel = sf::Vector2f(0.0f, 0.0f);
}
}
//GameObjects function checking if object is going out of window
//Redefined in Player
//GameObjects version allows objects comeout of the other side
void GameObjects::OutOfBounds(Window* window)
{
if (m_pos.x < 0.0f)
{
m_pos.x = window->GetWindowSize()->x;
}
else if (m_pos.x > window->GetWindowSize()->x)
{
m_pos.x = 0.0f;
}
if (m_pos.y < 0.0f)
{
m_pos.y = window->GetWindowSize()->y;
}
else if (m_pos.y > window->GetWindowSize()->y)
{
m_pos.y = 0.0f;
}
}
//Helper/Getter Functions
//Distance formula is the sqrt( (x1-x2)*(x1-x2) + (y1-y2)*(y1-y2))
float GameObjects::GetDistance(const sf::Vector2f & otherVector) const
{
sf::Vector2f l_vecDifference; //Difference between the 2 game object vectors
l_vecDifference = sf::Vector2f(otherVector.x - m_pos.x, otherVector.y - m_pos.y); // or simply vecDifference = otherVector - m_pos since vecDifference is a vector;
float dist = sqrt(l_vecDifference.x * l_vecDifference.x + l_vecDifference.y * l_vecDifference.y); // Use the distance formula
return dist;
}
//GameObjects version Collision check if another object collides with this(invoking) object
bool GameObjects::IsColliding(const GameObjects* otherObj)
{
bool l_result = false;
if (this != otherObj && !IsDestroyed() && !otherObj->IsDestroyed() && GetDistance(otherObj->m_pos) < (m_collisionRadius + otherObj->m_collisionRadius))
{
l_result = true;
}
return l_result;
}
| [
"a1clark1a@gmail.com"
] | a1clark1a@gmail.com |
d8466ff57b1fece740dc3559c023d4bb6f01483f | e030930827ed4b9afc707b7e87b7d82a62634c04 | /mqtt_esp8266/mqtt_esp8266.ino | 4b8c02aacb02c0b453181c4652837aaa64bc910b | [] | no_license | Ari100telll/my_first_repo | 2670edcafa89d7501535db66668897b13c6b73a8 | 65ff4ae456c90d39f28a648c6a7d33b45b3bd074 | refs/heads/master | 2020-09-13T07:36:23.312274 | 2019-11-19T13:45:25 | 2019-11-19T13:45:25 | 222,697,374 | 0 | 0 | null | 2019-11-19T13:45:26 | 2019-11-19T13:01:49 | HTML | UTF-8 | C++ | false | false | 2,921 | ino | #include <ESP8266WiFi.h>
#include <PubSubClient.h>
/*#define thermoDO 10 // SO
#define thermoCS 9 // CS
#define thermoCLK 8 // SCK
MAX6675 thermocouple(thermoCLK, thermoCS, thermoDO);*/
// Update these with values suitable for your network.
const char* ssid = "Nagibator777";
const char* password = "FuckYouNigga";
const char* mqtt_server = "167.71.0.78";
WiFiClient espClient;
PubSubClient client(espClient);
long lastMsg = 0;
char msg[50];
int value = 0;
void setup() {
pinMode(BUILTIN_LED, OUTPUT); // Initialize the BUILTIN_LED pin as an output
Serial.begin(115200);
setup_wifi();
client.setServer(mqtt_server, 1883);
client.setCallback(callback);
}
void setup_wifi() {
delay(10);
// We start by connecting to a WiFi network
Serial.println();
Serial.print("Connecting to ");
Serial.println(ssid);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.println("WiFi connected");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
}
void callback(char* topic, byte* payload, unsigned int length) {
Serial.print("Message arrived [");
Serial.print(topic);
Serial.print("] ");
for (int i = 0; i < length; i++) {
Serial.print((char)payload[i]);
}
Serial.println();
// Switch on the LED if an 1 was received as first character
if ((char)payload[0] == '1') {
digitalWrite(BUILTIN_LED, LOW); // Turn the LED on (Note that LOW is the voltage level
// but actually the LED is on; this is because
// it is acive low on the ESP-01)
} else {
digitalWrite(BUILTIN_LED, HIGH); // Turn the LED off by making the voltage HIGH
}
}
void reconnect() {
// Loop until we're reconnected
while (!client.connected()) {
Serial.print("Attempting MQTT connection...");
// Attempt to connect
if (client.connect("id","octopus","octopusteam")) //put your clientId/userName/passWord here
{
Serial.println("connected");
// Once connected, publish an announcement...
client.publish("outTopic", "hello world");
// ... and resubscribe
client.subscribe("inTopic");
} else {
Serial.print("failed, rc=");
Serial.print(client.state());
Serial.println("try again in 5 seconds");
// Wait 5 seconds before retrying
delay(5000);
}
}
}
void loop() {
if (!client.connected()) {
reconnect();
}
client.loop();
//double TermoparTempCelsiuc = thermocouple.readCelsius();
int TermoparTempCelsiuc = 5;
long now = millis();
if (now - lastMsg > 2000) {
lastMsg = now;
if(Serial.available()){
int s = Serial.read();
++value;
snprintf (msg, 75, " {\"temp\":\"%ld\",\"name\":\"%ld\"} ", s, value);
Serial.print("Publish message: ");
Serial.println(msg);
client.publish("id", msg);
}
else
Serial.println("pop");
}
}
| [
"masternik007@gmail.com"
] | masternik007@gmail.com |
56e9d8e67a1cd205ebd4a150b0207e0a7166886b | 129cb3f7986fea87fd96ac63556fe0aa047f8570 | /src/gui/SortedTransactionsModel.cpp | ec4f780d7d3cc2217daec7f2fde4831bb532be57 | [
"MIT"
] | permissive | dcrsprotocol/dcrswallet | ab39b45ba9b3db7b46793355291fcf69f7eb820c | 382f3e10ec0c13b04d515cd8c8efd4cd2a672bb3 | refs/heads/master | 2022-04-25T09:27:50.362842 | 2020-04-14T02:09:57 | 2020-04-14T02:09:57 | 255,049,186 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,274 | cpp | // Copyright (c) 2011-2015 The Cryptonote developers
// Copyright (c) 2016-2017 The DarkCrystal developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <QDateTime>
#include "SortedTransactionsModel.h"
#include "TransactionsModel.h"
#include "Settings.h"
namespace WalletGui {
SortedTransactionsModel& SortedTransactionsModel::instance() {
static SortedTransactionsModel inst;
return inst;
}
// Earliest date that can be represented (far in the past)
const QDateTime SortedTransactionsModel::MIN_DATE = QDateTime::fromTime_t(0);
// Last date that can be represented (far in the future)
const QDateTime SortedTransactionsModel::MAX_DATE = QDateTime::fromTime_t(0xFFFFFFFF);
SortedTransactionsModel::SortedTransactionsModel() : QSortFilterProxyModel() {
setSourceModel(&TransactionsModel::instance());
setDynamicSortFilter(true);
sort(TransactionsModel::COLUMN_DATE, Qt::DescendingOrder);
}
SortedTransactionsModel::~SortedTransactionsModel() {
}
bool SortedTransactionsModel::filterAcceptsRow(int _row, const QModelIndex &_parent) const {
QModelIndex _index = sourceModel()->index(_row, 0, _parent);
QDateTime datetime = _index.data(TransactionsModel::ROLE_DATE).toDateTime();
if(datetime < dateFrom || datetime > dateTo)
return false;
int txType = _index.data(TransactionsModel::ROLE_TYPE).value<quint8>();
if(selectedtxtype != -1) {
if(txType != selectedtxtype)
return false;
}
if (Settings::instance().skipFusionTransactions() && txType == 4) {
return false;
}
QModelIndex index2 = sourceModel()->index(_row, 2, _parent);
QModelIndex index3 = sourceModel()->index(_row, 3, _parent);
QModelIndex index4 = sourceModel()->index(_row, 4, _parent);
QModelIndex index5 = sourceModel()->index(_row, 5, _parent);
return (sourceModel()->data(index2).toString().contains(searchstring,Qt::CaseInsensitive)
|| sourceModel()->data(index3).toString().contains(searchstring,Qt::CaseInsensitive)
|| sourceModel()->data(index4).toString().contains(searchstring,Qt::CaseInsensitive)
|| sourceModel()->data(index5).toString().contains(searchstring,Qt::CaseInsensitive));
return true;
}
bool SortedTransactionsModel::lessThan(const QModelIndex& _left, const QModelIndex& _right) const {
QDateTime leftDate = _left.data(TransactionsModel::ROLE_DATE).toDateTime();
QDateTime rightDate = _right.data(TransactionsModel::ROLE_DATE).toDateTime();
if((rightDate.isNull() || !rightDate.isValid()) && (leftDate.isNull() || !leftDate.isValid())) {
return _left.row() < _right.row();
}
if(leftDate.isNull() || !leftDate.isValid()) {
return false;
}
if(rightDate.isNull() || !rightDate.isValid()) {
return true;
}
return leftDate < rightDate;
}
void SortedTransactionsModel::setDateRange(const QDateTime &from, const QDateTime &to)
{
this->dateFrom = from;
this->dateTo = to;
invalidateFilter();
}
void SortedTransactionsModel::setSearchFor(const QString &searchstring) {
this->searchstring = searchstring;
invalidateFilter();
}
void SortedTransactionsModel::setTxType(const int type) {
this->selectedtxtype = type;
invalidateFilter();
}
}
| [
"54621655+DarkIslandNetwork@users.noreply.github.com"
] | 54621655+DarkIslandNetwork@users.noreply.github.com |
a981b7995c21d515229164a96d567030d3ce41aa | 50603a80cc0476d3939804e3fe5a75d3648df79b | /table6tab.cpp | d88589bde72f5960f515a6906baf9f432a7923a2 | [] | no_license | ntrexResearch/MC4 | 142465007868918982a81ff3bb328bd429aeb32a | ec33f05ff0a2a56937ba5b26d2009f4142d9dea2 | refs/heads/master | 2021-01-01T12:53:27.002308 | 2017-07-20T01:07:04 | 2017-07-20T01:07:04 | 97,580,028 | 0 | 0 | null | 2017-07-20T01:07:05 | 2017-07-18T09:29:43 | C++ | UTF-8 | C++ | false | false | 114 | cpp | #include "table6tab.h"
Table6Tab::Table6Tab(QObject *parent) : TableTab(parent)
{
tableLabel.setText("6");
}
| [
"jun928@ntrex.co.kr"
] | jun928@ntrex.co.kr |
f22aec8c560db253f8aec51985bda21a17f53c15 | 1834fdd662163fee048a9ef5645968eb2aca84de | /SDK/OSX/Xcode Templates/Xcode4/Project Templates/Ogre/iOS Application.xctemplate/OgreStaticPluginLoader.h | 3a9f9580b338eb78c7804fb59f355e761d92cded | [
"MIT"
] | permissive | largerussiangames/ogre | 9dca66b0f656b711a5755b887d2bfdadf4825144 | cc62dde929203a405ed3730d4aede83d2f2d11b4 | refs/heads/master | 2021-01-22T05:06:39.366269 | 2012-07-18T08:20:11 | 2012-07-18T08:20:11 | 5,097,043 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 5,210 | h | /*
-----------------------------------------------------------------------------
This source file is part of OGRE
(Object-oriented Graphics Rendering Engine)
For the latest info, see http://www.ogre3d.org/
Copyright (c) 2000-2012 Torus Knot Software Ltd
Also see acknowledgements in Readme.html
You may use this sample code for anything you like, it is not covered by the
same license as the rest of the engine.
-----------------------------------------------------------------------------
*/
/*
-----------------------------------------------------------------------------
Filename: StaticPluginLoader.h
Description: Utility class to load plugins statically
-----------------------------------------------------------------------------
*/
#ifndef __StaticPluginLoader_H__
#define __StaticPluginLoader_H__
#include "Ogre.h"
#include "OgreConfigFile.h"
// Static plugin headers
#ifdef OGRE_STATIC_CgProgramManager
# include "OgreCgPlugin.h"
#endif
#ifdef OGRE_STATIC_OctreeSceneManager
# include "OgreOctreePlugin.h"
#endif
#ifdef OGRE_STATIC_ParticleFX
# include "OgreParticleFXPlugin.h"
#endif
#ifdef OGRE_STATIC_BSPSceneManager
# include "OgreBspSceneManagerPlugin.h"
#endif
#ifdef OGRE_STATIC_GL
# include "OgreGLPlugin.h"
#endif
#ifdef OGRE_STATIC_GLES
# include "OgreGLESPlugin.h"
#endif
#ifdef OGRE_STATIC_GLES2
# include "OgreGLES2Plugin.h"
#endif
#ifdef OGRE_STATIC_Direct3D9
# include "OgreD3D9Plugin.h"
#endif
#ifdef OGRE_STATIC_Direct3D10
# include "OgreD3D10Plugin.h"
#endif
#ifdef OGRE_STATIC_PCZSceneManager
# include "OgrePCZPlugin.h"
#endif
#ifdef OGRE_STATIC_OctreeZone
# include "OgreOctreeZonePlugin.h"
#endif
namespace Ogre
{
/** Utility class for loading some plugins statically.
@remarks
When loading plugins statically, you are limited to loading plugins
that are known about at compile time. You should define preprocessor
symbols depending on which plugins you want to load - the symbol being
OGRE_STATIC_<pluginname>, with pluginname being the usual name of the
plugin DLL (no file extension, no debug suffix, and without the Plugin_
or RenderSystem_ prefix.)
*/
class StaticPluginLoader
{
protected:
#ifdef OGRE_STATIC_CgProgramManager
CgPlugin* mCgPlugin;
#endif
#ifdef OGRE_STATIC_OctreeSceneManager
OctreePlugin* mOctreePlugin;
#endif
#ifdef OGRE_STATIC_ParticleFX
ParticleFXPlugin* mParticleFXPlugin;
#endif
#ifdef OGRE_STATIC_BSPSceneManager
BspSceneManagerPlugin* mBSPPlugin;
#endif
#ifdef OGRE_STATIC_PCZSceneManager
PCZPlugin* mPCZPlugin;
#endif
#ifdef OGRE_STATIC_OctreeZone
OctreeZonePlugin* mOctreeZonePlugin;
#endif
#ifdef OGRE_STATIC_GL
GLPlugin* mGLPlugin;
#endif
#ifdef OGRE_STATIC_GLES
GLESPlugin* mGLESPlugin;
#endif
#ifdef OGRE_STATIC_GLES2
GLES2Plugin* mGLES2Plugin;
#endif
#ifdef OGRE_STATIC_Direct3D9
D3D9Plugin* mD3D9Plugin;
#endif
#ifdef OGRE_STATIC_Direct3D10
D3D10Plugin* mD3D10Plugin;
#endif
public:
StaticPluginLoader() {}
/** Load all the enabled plugins against the passed in root object. */
void load()
{
Root& root = Root::getSingleton();
#ifdef OGRE_STATIC_GL
mGLPlugin = OGRE_NEW GLPlugin();
root.installPlugin(mGLPlugin);
#endif
#ifdef OGRE_STATIC_GLES
mGLESPlugin = OGRE_NEW GLESPlugin();
root.installPlugin(mGLESPlugin);
#endif
#ifdef OGRE_STATIC_GLES2
mGLES2Plugin = OGRE_NEW GLES2Plugin();
root.installPlugin(mGLES2Plugin);
#endif
#ifdef OGRE_STATIC_Direct3D9
mD3D9Plugin = OGRE_NEW D3D9Plugin();
root.installPlugin(mD3D9Plugin);
#endif
#ifdef OGRE_STATIC_Direct3D10
mD3D10Plugin = OGRE_NEW D3D10Plugin();
root.installPlugin(mD3D10Plugin);
#endif
#ifdef OGRE_STATIC_CgProgramManager
mCgPlugin = OGRE_NEW CgPlugin();
root.installPlugin(mCgPlugin);
#endif
#ifdef OGRE_STATIC_OctreeSceneManager
mOctreePlugin = OGRE_NEW OctreePlugin();
root.installPlugin(mOctreePlugin);
#endif
#ifdef OGRE_STATIC_ParticleFX
mParticleFXPlugin = OGRE_NEW ParticleFXPlugin();
root.installPlugin(mParticleFXPlugin);
#endif
#ifdef OGRE_STATIC_BSPSceneManager
mBSPPlugin = OGRE_NEW BspSceneManagerPlugin();
root.installPlugin(mBSPPlugin);
#endif
#ifdef OGRE_STATIC_PCZSceneManager
mPCZPlugin = OGRE_NEW PCZPlugin();
root.installPlugin(mPCZPlugin);
#endif
#ifdef OGRE_STATIC_OctreeZone
mOctreeZonePlugin = OGRE_NEW OctreeZonePlugin();
root.installPlugin(mOctreeZonePlugin);
#endif
}
void unload()
{
// don't unload plugins, since Root will have done that. Destroy here.
#ifdef OGRE_STATIC_OctreeZone
OGRE_DELETE mOctreeZonePlugin;
#endif
#ifdef OGRE_STATIC_PCZSceneManager
OGRE_DELETE mPCZPlugin;
#endif
#ifdef OGRE_STATIC_BSPSceneManager
OGRE_DELETE mBSPPlugin;
#endif
#ifdef OGRE_STATIC_ParticleFX
OGRE_DELETE mParticleFXPlugin;
#endif
#ifdef OGRE_STATIC_OctreeSceneManager
OGRE_DELETE mOctreePlugin;
#endif
#ifdef OGRE_STATIC_CgProgramManager
OGRE_DELETE mCgPlugin;
#endif
#ifdef OGRE_STATIC_Direct3D9
OGRE_DELETE mD3D9Plugin;
#endif
#ifdef OGRE_STATIC_Direct3D10
OGRE_DELETE mD3D10Plugin;
#endif
#ifdef OGRE_STATIC_GL
OGRE_DELETE mGLPlugin;
#endif
#ifdef OGRE_STATIC_GLES
OGRE_DELETE mGLESPlugin;
#endif
#ifdef OGRE_STATIC_GLES2
OGRE_DELETE mGLES2Plugin;
#endif
}
};
}
#endif
| [
"masterfalcon@ogre3d.org"
] | masterfalcon@ogre3d.org |
6f386ba7556dc3080537fe7661ea40e0c852a1b2 | 9a3b9d80afd88e1fa9a24303877d6e130ce22702 | /src/Providers/UNIXProviders/tests/UNIXProviders.Tests/UNIX_PhysicalConnectorFixture.h | 202d559c4a936d794607b16f90a85033cca9398e | [
"MIT"
] | permissive | brunolauze/openpegasus-providers | 3244b76d075bc66a77e4ed135893437a66dd769f | f24c56acab2c4c210a8d165bb499cd1b3a12f222 | refs/heads/master | 2020-04-17T04:27:14.970917 | 2015-01-04T22:08:09 | 2015-01-04T22:08:09 | 19,707,296 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,012 | h | //%LICENSE////////////////////////////////////////////////////////////////
//
// Licensed to The Open Group (TOG) under one or more contributor license
// agreements. Refer to the OpenPegasusNOTICE.txt file distributed with
// this work for additional information regarding copyright ownership.
// Each contributor licenses this file to you under the OpenPegasus Open
// Source License; you may not use this file except in compliance with the
// License.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
//////////////////////////////////////////////////////////////////////////
//
//%/////////////////////////////////////////////////////////////////////////
#include <MockResponseHandler.h>
#ifndef __CIMFIXTUREBASE_H
#define __CIMFIXTUREBASE_H
class CIMFixtureBase
{
public:
virtual void Run()=0;
};
#endif
class UNIX_PhysicalConnectorFixture :
public CIMFixtureBase
{
public:
UNIX_PhysicalConnectorFixture();
~UNIX_PhysicalConnectorFixture();
virtual void Run();
};
| [
"brunolauze@msn.com"
] | brunolauze@msn.com |
958efcd057a83720d8818581c27f190202802a6b | 11a61b9011df5ad699cd1772f9a145a33fb3540e | /Week1/GettingStartedWithImages/Utilities.h | dc97350aa9614397b3d0894555aaf48e6a2e4fd7 | [
"MIT"
] | permissive | mickrz/OpenCV1 | d2854e08e1844070fa787da66b3099a21ae78b10 | d8a791e2f2d9839f4a675256311728491c0cd93c | refs/heads/main | 2023-05-15T03:55:46.843132 | 2021-06-14T02:47:10 | 2021-06-14T02:47:10 | 374,000,326 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 612 | h | #pragma once
#include <iostream>
#include <opencv2/opencv.hpp>
class Utilities
{
public:
Utilities() = default;
virtual ~Utilities() = default;
virtual std::string Type2Str(int type);
virtual void DisplayImageProperties(cv::Mat mat);
virtual void DisplayImageInWindow(std::string name, cv::Mat mat, bool write=true);
virtual cv::Mat BruteforceConstrast(cv::Mat mat, double contrastPercentage);
virtual cv::Mat BruteforceBrightness(cv::Mat mat, int brightnessOffset);
virtual cv::Mat PixelTransform(cv::Mat image, double alpha, int beta);
virtual cv::Mat GammaCorrect(cv::Mat image, double gamma);
}; | [
"mfrstatements@yahoo.com"
] | mfrstatements@yahoo.com |
c403ce81f1528187aa9dba06baa11d2f92d8c75c | b8353b6631f90dc60653a9553c6e58ca7a4b7256 | /Source.cpp | 919585c615f10b89790f94b3747e208b58817095 | [] | no_license | shreyanshsaha/hammingCode | b07174046942cf3f287bc9e8b3be9dc5c8bf3025 | 1db078173251e2631b589655d1202343c582c450 | refs/heads/master | 2020-03-24T16:45:39.154371 | 2018-07-30T06:43:56 | 2018-07-30T06:43:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,102 | cpp | #include<iostream>
#include<vector>
#include<string>
#include<math.h>
using namespace std;
// Function to get the parity from positions which are defined
int getParity(int pos, vector<int> data) {
// pos is pos-1 since computer indexing starts at 0
pos++;
int par = 0;
for (int i = pos; i < data.size()+1;) {
for (int j = i; j < i + pos; j++) {
if (j > data.size())
break;
if (data[j - 1] == -1)
continue;
par = par ^ data[j - 1];
}
i += (2*pos);
}
return par;
}
int main() {
// ============
// Senders Code
// =============
string input;
cout << "\n======\nSender\n======\n";
cout << "\nEnter the data: ";
cin >> input;
// Calculate uptil which power to get parity i.e 1, 2, 4, 8, 16 ...
cout << "Power of 2 to be used: 2^" << floor(log2(input.length())) <<endl;
// Make space for hammingCode vector
vector<int>hammingCode(floor(log2(input.length()))+1 + input.length(), 0);
// Fill all the power of 2 positions as -1
for (int i = 0; i <= floor(log2(input.length())); i++)
hammingCode[pow(2, i) - 1] = -1;
// Fill all the rest with the data
for (int i = 0, j=0; i < floor(log2(input.length())), j<input.size(); i++) {
if (hammingCode[i] != -1) {
if (input[j] == '0')
hammingCode[i] = 0;
else
hammingCode[i]=1;
j++;
}
}
// ===========================================
// Partial Output to display hamming positions
// ===========================================
cout << "\nPartial Output: ";
// Display the code
for (auto i : hammingCode)
i != -1 ? cout << i : cout << '_';
// Fill the hamming code with parities
for (int i = 0; i <= floor(log2(input.length())); i++) {
int par = getParity((pow(2, i) - 1), hammingCode);
cout << "\nParity: " << par;
hammingCode[pow(2, i) - 1] = par;
}
// Display the code
cout << "\nHamming Code: ";
for (auto i : hammingCode)
cout << i;
// Ask user if they want to use the same data to check
char ans;
cout << "\nUse same data to check? (y/n): ";
cin >> ans;
if (ans == 'n' || ans == 'N') {
cout << "Enter hamming Code: ";
cin >> input;
hammingCode.resize(input.length());
for (int i = 0; i < input.length(); i++)
if (input[i] == '0')
hammingCode[i] == 0;
else
hammingCode[i] == 1;
}
// ===============
// Reciever's Code
// ===============
cout << "\n========\nReciever\n===========\n";
cout << "\nData is: ";
for (auto i : hammingCode)
cout << i;
// Get parity which is present in code
cout << "\nParity from hamming code: ";
int pow2 = log2(hammingCode.size());
for (int i = 0; i <= pow2; i++)
cout << hammingCode[pow(2,i) - 1] << " ";
// Calculate the parity from the new positions
cout << "\nCalculated Parity: ";
int pos = 0;
for (int i = 0; i <= pow2; i++) {
int par = getParity((pow(2, i) - 1), hammingCode);
cout << "\nParity: " << par;
if (par == 1)
pos += pow(2,i);
}
// If there is error in parity then position wont be == 0
if (pos) {
cout << "\nThere is an error in code!\nPosition: " << pos;
}
else {
cout << "\nData is Correct!";
}
cout << endl;
system("PAUSE");
return 0;
} | [
"erixerns@gmail.com"
] | erixerns@gmail.com |
3885875e7a629ceffedd9e63f87550f386b2a011 | a88f0ca4bc31b40ab414476f0a0df733418ff038 | /Include/3ds_Max/2018/MaxHeap.h | 2352352336864e1b65d58a25036517f9e68045ee | [] | no_license | Goshido/GXEngine-Windows-OS-x64 | 8c9011442a5ef47a3c2864bdc7e6471e622763d5 | 10a1428d0284552856528d519283295388eea35b | refs/heads/master | 2020-06-28T16:59:26.904805 | 2019-11-24T06:07:03 | 2019-11-24T06:09:40 | 74,490,143 | 11 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 17,702 | h | /**********************************************************************
*<
FILE: MaxHeap.h
DESCRIPTION: A base class to control memory management for all
for all Max classes
CREATED BY: Justin Yong
HISTORY: created 11/29/05
*> Copyright (c) 2005, All Rights Reserved.
**********************************************************************/
#pragma once
#include <new>
#include "utilexp.h"
// Disallow any new macros to interfere with new overrides in this file
#pragma push_macro("new")
// Undefine possible new and delete macros, so they won't break our operators declarations. For instance, a debug
// macro for new could look like this: "#define new _debug_new(__FILE__, __LINE__)". In the MaxHeapOperators class,
// we would obtain something like this: "UtilExport static void* _new_debug_new(__FILE, __LINE__)( size_t size );",
// and it wouldn't compile.
#undef new
#undef delete
//! \brief The base class in Max that controls the memory management for any class that derives from it.
/*! The sole purpose of this class is to provide various overloads of the new and delete operators. By doing this, any
class that derives from this class and doesn't implement it's own new and delete operators will see all of its memory
operation go through the Max Core. Doing this permits plugins to easily benefit from the same memory allocation
optimizations the Max Core has or will receive in the future. It also permits plugins linked with a different CRT than
the Max Core to safely pass memory pointers to heap blocks allocated on one side of the plugin dll boundary and
deallocated on the other.
If a plugin class has to implement its own new and delete operators but also derive indirectly from MaxHeapOperators,
access to the new and delete operators will have to be disambiguated. For an example on how to do this with a "using"
declaration, see the class MaxWrapper in maxsdk\\include\\maxscrpt\\maxobj.h.
*/
class MaxHeapOperators
{
public:
/// \brief
/// Standard new operator used to allocate objects
/// If there is insufficient memory, an exception will be thrown
///
/// \param[in] size: The size of the object to be allocated
UtilExport static void* operator new( size_t size );
/// \brief
/// Standard new operator used to allocate objects
/// if there is insufficient memory, NULL will be returned
///
/// \param[in] size: The size of the object to be allocated
/// \param[in] e: A std::nothrow_t to specify that no exception should be thrown
UtilExport static void* operator new( size_t size, const std::nothrow_t & e );
/// \brief
/// New operator used to allocate objects that takes the filename and line number where the new was called
/// If there is insufficient memory, an exception will be thrown
///
/// \param[in] size: The size of the object to be allocated
/// \param[in] filename: The name of the file that contains the call to new - may be NULL
/// \param[in] line: The line number in the file that contains the call to new
UtilExport static void* operator new( size_t size, const char* filename, int line );
/// \brief
/// New operator used to allocate objects that takes the type of memory, filename and line number where the new was called
/// If there is insufficient memory, an exception will be thrown
///
/// \param[in] size: The size of the object to be allocated
/// \param[in] block_type: The type of memory to be allocated by the CRT. This is always _NORMAL_BLOCK.
/// \param[in] filename: The name of the file that contains the call to new - may be NULL
/// \param[in] line: The line number in the file that contains the call to new
UtilExport static void* operator new( size_t size, int block_type, const char* filename, int line );
/// \brief
/// New operator used to allocate objects that takes the filename and line number where the new was called
/// If there is insufficient memory, NULL will be returned
///
/// \param[in] size: The size of the object to be allocated
/// \param[in] e: A std::nothrow_t to specify that no exception should be thrown
/// \param[in] filename: The name of the file that contains the call to new - may be NULL
/// \param[in] line: The line number in the file that contains the call to new
UtilExport static void* operator new( size_t size, const std::nothrow_t & e, const char * filename, int line );
/// \brief
/// New operator used to allocate objects that takes extra flags to specify special operations
/// If there is insufficient memory, an exception will be thrown
///
/// \param[in] size: The size of the object to be allocated
/// \param[in] flags: Flags specifying whether any special operations should be done when allocating memory
UtilExport static void* operator new( size_t size, unsigned long flags );
/// \brief
/// New operator used to allocate objects that takes extra flags to specify special operations
/// If there is insufficient memory, NULL will be returned
///
/// \param[in] size: The size of the object to be allocated
/// \param[in] e: A std::nothrow_t to specify that no exception should be thrown
/// \param[in] flags: Flags specifying whether any special operations should be done when allocating memory
UtilExport static void* operator new( size_t size, const std::nothrow_t & e, unsigned long flags );
/// \brief
/// New operator used to allocate arrays of objects
/// If there is insufficient memory, an exception will be thrown
///
/// \param[in] size: The size of the array of objects to be allocated
UtilExport static void* operator new[]( size_t size );
/// \brief
/// New operator used to allocate arrays of objects
/// If there is insufficient memory, NULL will be returned
///
/// \param[in] size: The size of the array of objects to be allocated
/// \param[in] e: A std::nothrow_t to specify that no exception should be thrown
UtilExport static void* operator new[]( size_t size, const std::nothrow_t & e );
/// \brief
/// New operator used to allocate arrays of objects
/// If there is insufficient memory, an exception will be thrown
///
/// \param[in] size: The size of the array of objects to be allocated
/// \param[in] filename: The name of the file that contains the call to new - may be NULL
/// \param[in] line: The line number in the file that contains the call to new
UtilExport static void* operator new[]( size_t size, const char* filename, int line );
/// \brief
/// New operator used to allocate arrays of objects.
/// This takes the size to be allocated, the type of memory, filename and line where new was called.
/// If there is insufficient memory, an exception will be thrown
///
/// \param[in] size: The size of the array of objects to be allocated
/// \param[in] block_type: The type of memory to be allocated by the CRT. This is always _NORMAL_BLOCK.
/// \param[in] filename: The name of the file that contains the call to new - may be NULL
/// \param[in] line: The line number in the file that contains the call to new
UtilExport static void* operator new[]( size_t size, int block_type, const char* filename, int line );
/// \brief
/// New operator used to allocate arrays of objects
/// If there is insufficient memory, NULL will be returned
///
/// \param[in] size: The size of the array of objects to be allocated
/// \param[in] e: A std::nothrow_t to specify that no exception should be thrown
/// \param[in] filename: The name of the file that contains the call to new - may be NULL
/// \param[in] line: The line number in the file that contains the call to new
UtilExport static void* operator new[]( size_t size, const std::nothrow_t & e, const char * filename, int line );
/// \brief
/// New operator used to allocate arrays of objects
/// If there is insufficient memory, an exception will be thrown
///
/// \param[in] size: The size of the array of objects to be allocated
/// \param[in] flags: Flags specifying whether any special operations should be done when allocating memory
UtilExport static void* operator new[]( size_t size, unsigned long flags );
/// \brief
/// New operator used to allocate arrays of objects
/// If there is insufficient memory, NULL will be returned
///
/// \param[in] size: The size of the array of objects to be allocated
/// \param[in] e: A std::nothrow_t to specify that no exception should be thrown
/// \param[in] flags: Flags specifying whether any special operations should be done when allocating memory
UtilExport static void* operator new[]( size_t size, const std::nothrow_t & e, unsigned long flags );
/// \brief
/// Standard delete operator used to deallocate an object
/// If the pointer is invalid, an exception will be thrown
///
/// \param[in] ptr: The void pointer to the object to be deleted
UtilExport static void operator delete( void * ptr );
/// \brief
/// Standard delete operator used to deallocate an object
/// If the pointer is invalid, nothing will happen
///
/// \param[in] ptr: The void pointer to the object to be deleted
/// \param[in] e: A std::nothrow_t to specify that no exception should be thrown
UtilExport static void operator delete( void * ptr, const std::nothrow_t& e );
/// \brief
/// Delete operator used to deallocate an object that takes the filename and line number where the delete was called
/// If the pointer is invalid, an exception will be thrown
///
/// \param[in] ptr: The void pointer to the object to be deleted
/// \param[in] filename: The name of the file that contains the call to delete - may be NULL
/// \param[in] line: The line number in the file that contains the call to delete
UtilExport static void operator delete( void * ptr, const char * filename, int line );
/// \brief
/// Delete operator used to deallocate an object that takes the type of memory, filename and line number where the delete was called
/// If the pointer is invalid, an exception will be thrown
///
/// \param[in] ptr: The void pointer to the object to be deleted
/// \param[in] block_type: The type of memory to be allocated by the CRT. This is always _NORMAL_BLOCK.
/// \param[in] filename: The name of the file that contains the call to delete - may be NULL
/// \param[in] line: The line number in the file that contains the call to delete
UtilExport static void operator delete( void * ptr, int block_type, const char * filename, int line );
/// \brief
/// Delete operator used to deallocate an object that takes the filename and line number where the delete was called
/// If the pointer is invalid, nothing will happen
///
/// \param[in] ptr: The void pointer to the object to be deleted
/// \param[in] e: A std::nothrow_t to specify that no exception should be thrown
/// \param[in] filename: The name of the file that contains the call to delete - may be NULL
/// \param[in] line: The line number in the file that contains the call to delete
UtilExport static void operator delete( void * ptr, const std::nothrow_t & e, const char * filename, int line );
/// \brief
/// Delete operator used to deallocate an object that takes extra flags to specify special operations
/// If the pointer is invalid, an exception will be thrown
///
/// \param[in] ptr: The void pointer to the object to be deleted
/// \param[in] flags: Flags specifying whether any special operations should be done when allocating memory.
UtilExport static void operator delete( void * ptr, unsigned long flags );
/// \brief
/// Delete operator used to deallocate an object that takes extra flags to specify special operations
/// If the pointer is invalid, nothing will happen
///
/// \param[in] ptr: The void pointer to the object to be deleted
/// \param[in] e: A std::nothrow_t to specify that no exception should be thrown
/// \param[in] flags: Flags specifying whether any special operations should be done when allocating memory.
UtilExport static void operator delete( void * ptr, const std::nothrow_t & e, unsigned long flags );
/// \brief
/// Standard delete operator used to deallocate an array of objects
/// If the pointer is invalid, an exception will be thrown
///
/// \param[in] ptr: The void pointer to the array of objects to be deleted
UtilExport static void operator delete[]( void * ptr );
/// \brief
/// Standard delete operator used to deallocate an array of objects
/// If the pointer is invalid, nothing will happen
///
/// \param[in] ptr: The void pointer to the array of objects to be deleted
/// \param[in] e: A std::nothrow_t to specify that no exception should be thrown
UtilExport static void operator delete[]( void * ptr, const std::nothrow_t& e );
/// \brief
/// Delete operator used to deallocate an array of objects that takes the filename and line number where the delete was called
/// If the pointer is invalid, an exception will be thrown
///
/// \param[in] ptr: The void pointer to the object to be deleted
/// \param[in] filename: The name of the file that contains the call to delete - may be NULL
/// \param[in] line: The line number in the file that contains the call to delete
UtilExport static void operator delete[]( void * ptr, const char * filename, int line );
/// \brief
/// Delete operator used to deallocate an array of objects that takes the type of memory, filename and line number where the delete was called
/// If the pointer is invalid, an exception will be thrown
///
/// \param[in] ptr: The void pointer to the object to be deleted
/// \param[in] block_type: The type of memory to be allocated by the CRT. This is always _NORMAL_BLOCK.
/// \param[in] filename: The name of the file that contains the call to delete - may be NULL
/// \param[in] line: The line number in the file that contains the call to delete
UtilExport static void operator delete[]( void* ptr, int block_type, const char* filename, int line );
/// \brief
/// Delete operator used to deallocate an array of objects that takes the filename and line number where the delete was called
/// If the pointer is invalid, nothing will happen
///
/// \param[in] ptr: The void pointer to the object to be deleted
/// \param[in] e: A std::nothrow_t to specify that no exception should be thrown
/// \param[in] filename: The name of the file that contains the call to delete - may be NULL
/// \param[in] line: The line number in the file that contains the call to delete
UtilExport static void operator delete[]( void * ptr, const std::nothrow_t& e, const char * filename, int line );
/// \brief
/// Delete operator used to deallocate an array of objects that takes extra flags to specify special operations
/// If the pointer is invalid, an exception will be thrown
///
/// \param[in] ptr: The void pointer to the object to be deleted
/// \param[in] flags: Flags specifying whether any special operations should be done when allocating memory.
UtilExport static void operator delete[]( void * ptr, unsigned long flags );
/// \brief
/// Delete operator used to deallocate an array of objects that takes extra flags to specify special operations
/// If the pointer is invalid, an exception will be thrown
///
/// \param[in] ptr: The void pointer to the object to be deleted
/// \param[in] e: A std::nothrow_t to specify that no exception should be thrown
/// \param[in] flags: Flags specifying whether any special operations should be done when allocating memory.
UtilExport static void operator delete[]( void * ptr, const std::nothrow_t&e, unsigned long flags );
/// \brief
/// Placement new operator.
/// The placement new operator should only be called with a pointer that already has been allocated in the Max'
/// heap. You can use maxheapdirect.h to allocate yourself memory on the Max' heap.
/// \param[in] size: The amount of memory to allocate
/// \param[in] placement_ptr: The location where the initialization should take place
UtilExport static void* operator new( size_t size, void * placement_ptr );
/// \brief
/// Placement delete operator.
/// Corresponds to the placement new operator. Doesn't affect memory.
/// \param[in] ptr: The location of the memory to release.
/// \param[in] placement_ptr: Location where the destruction should take place. Should be the same as ptr.
UtilExport static void operator delete( void * ptr, void * placement_ptr );
/// \brief
/// Allocates memory on a specified alignment boundary.
/// \param[in] size: The amount of memory to allocate
/// \param[in] alignment: The alignment value, which must be an integer power of 2.
UtilExport static void* aligned_malloc( size_t size, size_t alignment );
/// \brief
/// Reallocates memory on a specified alignment boundary.
/// \param[in] ptr: The location of the memory to reallocate, allocated with aligned_malloc/aligned_realloc.
/// \param[in] size: The new amount of memory to allocate
/// \param[in] alignment: The alignment value, which must be an integer power of 2.
UtilExport static void* aligned_realloc(void* ptr, size_t size, size_t alignment);
/// \brief
/// Frees a block of memory that was allocated with aligned_malloc/aligned_realloc
/// \param[in] ptr: The location of the memory to release.
UtilExport static void aligned_free( void* ptr );
};
#pragma pop_macro("new")
| [
"GoshidoMatazuki@mail.ru"
] | GoshidoMatazuki@mail.ru |
f200f440bbf5a572f616709cdea79e0dc071809e | 3a1d533535a91440ad1bc9aef4bce933ba5bffef | /host_software/libxser/src/win/xser_instance_oper.h | 17b5da3b206ef02b638712d7a02d29831b39b9cd | [] | no_license | avishorp/xser | 068b8410f2ac438883e7c3a829f81baeacd68c1f | 16abb8dfd4348351088fa23eafbe802056e0ef74 | refs/heads/master | 2021-01-21T22:58:14.928807 | 2015-02-12T20:49:20 | 2015-02-12T20:49:20 | 7,387,267 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,072 | h |
#ifndef __XSER_INSTANCE_OPER_H__
#define __XSER_INSTANCE_OPER_H__
#include <xser.h>
class xser_instance_oper : public xser::xser_instance_oper_ifx {
public:
xser_instace_oper(string& _serial_number);
attach_device(HDEVINFO hdevinfo, PSP_DEVINFO_DATA devinfo_data);
/*******************/
/* xser_device_ifx */
/*******************/
public:
// Determine whether the device is in DFU mode
virtual bool is_dfu_mode() const { return false; };
// Get the serial number associated with the instance
virtual std::string& get_serial_number() const { return serial_number; }
// Find the COM/tty number associated with the device
virtual int get_associated_com_number() const;
// Sets the COM number displayed on the LCD
virtual void set_com_display(int number) const;
// Retrieve the firmware version number
virtual void get_firmware_version(int& major, int& minor) const;
// Enter DFU mode
virtual void enter_dfu() const;
private:
hid_ifx* hid;
string serial_number;
};
#endif // __XSER_INSTANCE_OPER_H__ | [
"avishorp@gmail.com"
] | avishorp@gmail.com |
c923c6dd63db2b2129e2a83d2703cee93d97fd83 | 60bb67415a192d0c421719de7822c1819d5ba7ac | /blazemark/blazemark/boost/TDMatTSMatMult.h | e12309f0aea1d7a4a2f192eb14004d663350e2bb | [
"BSD-3-Clause"
] | permissive | rtohid/blaze | 48decd51395d912730add9bc0d19e617ecae8624 | 7852d9e22aeb89b907cb878c28d6ca75e5528431 | refs/heads/master | 2020-04-16T16:48:03.915504 | 2018-12-19T20:29:42 | 2018-12-19T20:29:42 | 165,750,036 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,076 | h | //=================================================================================================
/*!
// \file blazemark/boost/TDMatTSMatMult.h
// \brief Header file for the Boost transpose dense matrix/transpose sparse matrix multiplication kernel
//
// Copyright (C) 2012-2018 Klaus Iglberger - All Rights Reserved
//
// This file is part of the Blaze library. You can redistribute it and/or modify it under
// the terms of the New (Revised) BSD License. Redistribution and use in source and binary
// forms, with or without modification, are permitted provided that the following conditions
// are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this list of
// conditions and the following disclaimer.
// 2. 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.
// 3. Neither the names of the Blaze development group 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 HOLDER 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.
*/
//=================================================================================================
#ifndef _BLAZEMARK_BOOST_TDMATTSMATMULT_H_
#define _BLAZEMARK_BOOST_TDMATTSMATMULT_H_
//*************************************************************************************************
// Includes
//*************************************************************************************************
#include <blazemark/system/Types.h>
namespace blazemark {
namespace boost {
//=================================================================================================
//
// KERNEL FUNCTIONS
//
//=================================================================================================
//*************************************************************************************************
/*!\name Boost uBLAS kernel functions */
//@{
double tdmattsmatmult( size_t N, size_t F, size_t steps );
//@}
//*************************************************************************************************
} // namespace boost
} // namespace blazemark
#endif
| [
"klaus.iglberger@gmail.com"
] | klaus.iglberger@gmail.com |
d52e4fa54864355d253bb12de1cd457d30749092 | 4267175e2cb05725339ac0375684de15129ba63e | /kmp/kmp.cpp | 2b06f704a5aada9ad5e324d60262048a3ebba8ba | [] | no_license | bouk/algorithms_datastructures | e62d0a70141c8f6060f6bb0869e78d08bb4e183a | 6fdd9bb32f65860a7d4d7140ed10f59bffeb916c | refs/heads/master | 2021-01-10T14:18:00.175538 | 2013-03-04T20:43:04 | 2013-03-04T20:43:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,130 | cpp | #include <string>
#include <iostream>
#include <fstream>
#include <vector>
using namespace std;
vector<int> failure_function;
string pattern;
int match(string &line)
{
size_t line_position = 0;
size_t pattern_position = 0;
while (line_position < line.size())
{
if (pattern[pattern_position] == line[line_position])
{
if (pattern_position == pattern.size() - 1)
{
// end of pattern reached, pattern found! Return start of pattern
return line_position - pattern.size() + 1;
}
line_position++;
pattern_position++;
}
else if (pattern_position > 0)
{
// No match, but maybe we can backtrack
while(pattern_position > 0 and pattern[pattern_position] != line[line_position])
{
pattern_position = failure_function[pattern_position - 1];
}
}
else
{
line_position++;
}
}
return -1;
}
void create_failure_function()
{
size_t i = 1;
size_t j = 0;
failure_function.assign(pattern.size(), -1);
failure_function[0] = 0;
while (i < pattern.size())
{
if (pattern[i] == pattern[j])
{
// we have matched j + 1 characters
failure_function[i] = j + 1;
i++;
j++;
}
else if (j > 0)
{
// j indexes just after a prefix of pattern that must match
j = failure_function[j - 1];
}
else
{
// we have no match here
failure_function[i] = 0;
i++;
}
}
}
int main(int argc, char const *argv[])
{
string line;
if (argc < 2)
{
cout << "Provide a string to search for as first argument" << endl;
return 1;
}
pattern = string(argv[1]);
create_failure_function();
while (!cin.eof())
{
getline(cin, line);
int pos = match(line);
if(pos != -1)
{
cout << line << endl;
}
}
return 0;
} | [
"boukevanderbijl@gmail.com"
] | boukevanderbijl@gmail.com |
58ed51e734f8042e9dc01a2d164959b8f8be5f05 | 72676705a58fc326540e7ab43c782c2de313f3ba | /haccmk-sycl/haccmk.cpp | 22f8d7a1db3a1ace03fa801465bfe01c29ec3b8b | [
"BSD-3-Clause"
] | permissive | xwentian2020/oneAPI-DirectProgramming | dfdff2fb56357b8aef5e7207760926dc7e8327d9 | a3eab529ddc7794af666e71df728313ac027b69d | refs/heads/master | 2023-08-10T12:05:48.601018 | 2021-09-06T01:56:20 | 2021-09-06T01:56:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,784 | cpp | #include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <iostream>
#include "common.h"
template <typename T>
class HACCmk;
template <typename T>
void haccmk (
const size_t n, // global size
const int ilp, // inner loop count
const T fsrrmax,
const T mp_rsm,
const T fcoeff,
const T* xx,
const T* yy,
const T* zz,
const T* mass,
T* vx2,
T* vy2,
T* vz2 ) {
#ifdef USE_GPU
gpu_selector dev_sel;
#else
cpu_selector dev_sel;
#endif
queue q(dev_sel);
range<1> numOfItems{n};
const property_list props = {property::buffer::use_host_ptr()};
buffer<T, 1> buf_xx(xx, ilp, props);
buffer<T, 1> buf_yy(yy, ilp, props);
buffer<T, 1> buf_zz(zz, ilp, props);
buffer<T, 1> buf_mass(mass, ilp, props);
buffer<T, 1> buf_vx2(vx2, numOfItems, props);
buffer<T, 1> buf_vy2(vy2, numOfItems, props);
buffer<T, 1> buf_vz2(vz2, numOfItems, props);
q.submit([&](handler& cgh) {
auto acc_xx = buf_xx.template get_access<sycl_read>(cgh);
auto acc_yy = buf_yy.template get_access<sycl_read>(cgh);
auto acc_zz = buf_zz.template get_access<sycl_read>(cgh);
auto acc_mass = buf_mass.template get_access<sycl_read>(cgh);
auto acc_vx2 = buf_vx2.template get_access<sycl_read_write>(cgh);
auto acc_vy2 = buf_vy2.template get_access<sycl_read_write>(cgh);
auto acc_vz2 = buf_vz2.template get_access<sycl_read_write>(cgh);
cgh.parallel_for<class HACCmk<T>>(numOfItems,
[=](id<1> i) {
const float ma0 = 0.269327f;
const float ma1 = -0.0750978f;
const float ma2 = 0.0114808f;
const float ma3 = -0.00109313f;
const float ma4 = 0.0000605491f;
const float ma5 = -0.00000147177f;
float dxc, dyc, dzc, m, r2, f, xi, yi, zi;
xi = 0.f;
yi = 0.f;
zi = 0.f;
float xxi = acc_xx[i];
float yyi = acc_yy[i];
float zzi = acc_zz[i];
for ( int j = 0; j < ilp; j++ ) {
dxc = acc_xx[j] - xxi;
dyc = acc_yy[j] - yyi;
dzc = acc_zz[j] - zzi;
r2 = dxc * dxc + dyc * dyc + dzc * dzc;
if ( r2 < fsrrmax ) m = acc_mass[j]; else m = 0.f;
f = r2 + mp_rsm;
f = m * ( 1.f / ( f * cl::sycl::sqrt( f ) ) -
( ma0 + r2*(ma1 + r2*(ma2 + r2*(ma3 + r2*(ma4 + r2*ma5))))));
xi = xi + f * dxc;
yi = yi + f * dyc;
zi = zi + f * dzc;
}
acc_vx2[i] = acc_vx2[i] + xi * fcoeff;
acc_vy2[i] = acc_vy2[i] + yi * fcoeff;
acc_vz2[i] = acc_vz2[i] + zi * fcoeff;
});
});
}
void haccmk_gold( int count1, float xxi, float yyi, float zzi, float fsrrmax2, float mp_rsm2,
float * __restrict xx1,
float * __restrict yy1,
float * __restrict zz1,
float * __restrict mass1,
float *dxi, float *dyi, float *dzi )
{
const float ma0 = 0.269327, ma1 = -0.0750978, ma2 = 0.0114808, ma3 = -0.00109313, ma4 = 0.0000605491, ma5 = -0.00000147177;
float dxc, dyc, dzc, m, r2, f, xi, yi, zi;
xi = 0.f;
yi = 0.f;
zi = 0.f;
for (int j = 0; j < count1; j++ ) {
dxc = xx1[j] - xxi;
dyc = yy1[j] - yyi;
dzc = zz1[j] - zzi;
r2 = dxc * dxc + dyc * dyc + dzc * dzc;
if ( r2 < fsrrmax2 ) m = mass1[j]; else m = 0.f;
f = r2 + mp_rsm2;
f = m * ( 1.f / ( f * sqrtf( f ) ) - ( ma0 + r2*(ma1 + r2*(ma2 + r2*(ma3 + r2*(ma4 + r2*ma5))))));
xi = xi + f * dxc;
yi = yi + f * dyc;
zi = zi + f * dzc;
}
*dxi = xi;
*dyi = yi;
*dzi = zi;
}
int main( int argc, char *argv[] )
{
float fsrrmax2, mp_rsm2, fcoeff, dx1, dy1, dz1, dx2, dy2, dz2;
int n1, n2, i;
n1 = 784;
n2 = 15000;
printf( "Outer loop count is set %d\n", n1 );
printf( "Inner loop count is set %d\n", n2 );
float* xx = (float*) malloc (sizeof(float) * n2);
float* yy = (float*) malloc (sizeof(float) * n2);
float* zz = (float*) malloc (sizeof(float) * n2);
float* mass = (float*) malloc (sizeof(float) * n2);
float* vx2 = (float*) malloc (sizeof(float) * n2);
float* vy2 = (float*) malloc (sizeof(float) * n2);
float* vz2 = (float*) malloc (sizeof(float) * n2);
float* vx2_hw = (float*) malloc (sizeof(float) * n2);
float* vy2_hw = (float*) malloc (sizeof(float) * n2);
float* vz2_hw = (float*) malloc (sizeof(float) * n2);
/* Initial data preparation */
fcoeff = 0.23f;
fsrrmax2 = 0.5f;
mp_rsm2 = 0.03f;
dx1 = 1.0f/(float)n2;
dy1 = 2.0f/(float)n2;
dz1 = 3.0f/(float)n2;
xx[0] = 0.f;
yy[0] = 0.f;
zz[0] = 0.f;
mass[0] = 2.f;
for ( i = 1; i < n2; i++ ) {
xx[i] = xx[i-1] + dx1;
yy[i] = yy[i-1] + dy1;
zz[i] = zz[i-1] + dz1;
mass[i] = (float)i * 0.01f + xx[i];
}
for ( i = 0; i < n2; i++ ) { // i starts from zero
vx2[i] = 0.f;
vy2[i] = 0.f;
vz2[i] = 0.f;
vx2_hw[i] = 0.f;
vy2_hw[i] = 0.f;
vz2_hw[i] = 0.f;
}
for ( i = 0; i < n1; ++i) {
haccmk_gold( n2, xx[i], yy[i], zz[i], fsrrmax2, mp_rsm2, xx, yy, zz, mass, &dx2, &dy2, &dz2 );
vx2[i] = vx2[i] + dx2 * fcoeff;
vy2[i] = vy2[i] + dy2 * fcoeff;
vz2[i] = vz2[i] + dz2 * fcoeff;
} // for i
/* =================== SYCL version ===================== */
haccmk(n1, n2, fsrrmax2, mp_rsm2, fcoeff, xx,
yy, zz, mass, vx2_hw, vy2_hw, vz2_hw);
// verifiy
int error = 0;
const float eps = 1e-1f; //
for (i = 0; i < n2; i++) {
if (fabsf(vx2[i] - vx2_hw[i]) > eps) {
printf("error at vx2[%d] %f %f\n", i, vx2[i], vx2_hw[i]);
error = 1;
break;
}
if (fabsf(vy2[i] - vy2_hw[i]) > eps) {
printf("error at vy2[%d]: %f %f\n", i, vy2[i], vy2_hw[i]);
error = 1;
break;
}
if (fabsf(vz2[i] - vz2_hw[i]) > eps) {
printf("error at vz2[%d]: %f %f\n", i, vz2[i], vz2_hw[i]);
error = 1;
break;
}
}
free(xx);
free(yy);
free(zz);
free(mass);
free(vx2);
free(vy2);
free(vz2);
free(vx2_hw);
free(vy2_hw);
free(vz2_hw);
if (error) {
printf("FAILED\n");
return EXIT_FAILURE;
} else {
printf("PASSED\n");
return EXIT_SUCCESS;
}
}
| [
"cc@lp-xeon-test.novalocal"
] | cc@lp-xeon-test.novalocal |
081128e10c165037325781fa48acf9db844d6a2e | 81149060dd8f84fcd76152c3cd727672757cfce4 | /Source/SomTemplate_VR/VirtualReality/TP_VirtualRealityPawn_GamePad.h | d54ebfcf941021aadbe1dbc55b9da0695a1ceac9 | [
"MIT"
] | permissive | davchezt/UE4_VRTemplate_Cpp | ac5d2cc8eb90877746c18e7b4524b27d86924bc2 | 4ad33ce71b3cc3790c99fe15f6908ebd96b5c165 | refs/heads/master | 2021-03-01T21:36:47.024635 | 2020-03-09T04:05:54 | 2020-03-09T04:05:54 | 245,815,217 | 1 | 0 | MIT | 2020-07-28T10:38:36 | 2020-03-08T13:01:46 | C++ | UTF-8 | C++ | false | false | 4,491 | h | // Copyright (c) 2014-2020 Sombusta, All Rights Reserved.
// SomWorks :D // MIT LICENSE // Epic VR Template Convert C++ Open Source Project.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/Pawn.h"
#include "TP_VirtualRealityPawn_GamePad.generated.h"
UCLASS()
class SOMTEMPLATE_VR_API ATP_VirtualRealityPawn_GamePad : public APawn
{
GENERATED_BODY()
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "VRTemplate|Components", meta = (AllowPrivateAccess = "true"))
class USceneComponent* RootScene;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "VRTemplate|Components", meta = (AllowPrivateAccess = "true"))
class USceneComponent* CameraBase;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "VRTemplate|Components", meta = (AllowPrivateAccess = "true"))
class UCameraComponent* VRCamera;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "VRTemplate|Components", meta = (AllowPrivateAccess = "true"))
class UArrowComponent* TraceDirection;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "VRTemplate|Components", meta = (AllowPrivateAccess = "true"))
class UStaticMeshComponent* TeleportPin;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "VRTemplate|Components", meta = (AllowPrivateAccess = "true"))
class UStaticMeshComponent* Ring;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "VRTemplate|Components", meta = (AllowPrivateAccess = "true"))
class UStaticMeshComponent* Arrow;
public:
// Sets default values for this pawn's properties
ATP_VirtualRealityPawn_GamePad();
// Called when the game starts or when spawned
virtual void BeginPlay() override;
// Called every frame
virtual void Tick(float DeltaTime) override;
// Called to bind functionality to input
virtual void SetupPlayerInputComponent(class UInputComponent* PlayerInputComponent) override;
// Resets HMD orientation and position in VR
void OnResetVR();
void HMDTeleportPressed();
void HMDTeleportReleased();
UFUNCTION()
void TeleportActor();
UFUNCTION(BlueprintPure, Category = "VRTemplate|Teleportation")
bool GetTeleportDestination(FVector& MyLocation, FVector& HitNormal);
UFUNCTION(BlueprintPure, Category = "VRTemplate|Teleportation")
bool ShouldUpdateFacingDirection();
UFUNCTION(BlueprintPure, Category = "VRTemplate|Teleportation")
FVector GetThumbstickFacingDirection();
UFUNCTION(BlueprintCallable, Category = "VRTemplate|Teleportation")
void UpdateTeleportDirection();
private:
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "VRTemplate|Variables", meta = (AllowPrivateAccess = "true"))
FVector PinnedLocation;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "VRTemplate|Variables", meta = (AllowPrivateAccess = "true"))
bool bLocationFound;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "VRTemplate|Variables", meta = (AllowPrivateAccess = "true"))
bool bLocationPinned;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "VRTemplate|Variables", meta = (AllowPrivateAccess = "true"))
FRotator PinnedRotation;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "VRTemplate|Variables", meta = (AllowPrivateAccess = "true"))
float RotationLengthThreshold;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "VRTemplate|Variables", meta = (AllowPrivateAccess = "true"))
FVector CurrentLookAtLocation;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "VRTemplate|Variables", meta = (AllowPrivateAccess = "true"))
bool bCurrentLocationValid;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "VRTemplate|Variables", meta = (AllowPrivateAccess = "true"))
float FadeOutDuration;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "VRTemplate|Variables", meta = (AllowPrivateAccess = "true"))
float FadeInDuration;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "VRTemplate|Variables", meta = (AllowPrivateAccess = "true"))
FLinearColor TeleportFadeColor;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "VRTemplate|Variables", meta = (AllowPrivateAccess = "true"))
float DefaultPlayerHeight;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "VRTemplate|Variables", meta = (AllowPrivateAccess = "true"))
class UMaterialInstanceDynamic* RingGlowMatInst;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "VRTemplate|Variables", meta = (AllowPrivateAccess = "true"))
bool bUseGamepad;
FTimerHandle FadeTimerHandle;
protected:
public:
};
| [
"wjdtjr2676@gmail.com"
] | wjdtjr2676@gmail.com |
01eebd9d355c0acee3a19c0f765e0787ed953771 | bdfd4edb2f52791975c4b223bbb703ed00a71277 | /v3/Architect/src/treenet/tree/growth/classic/ClassicGrower.cpp | 42f11aaf1fb9fe83f0ad13495f32713cc091698d | [] | no_license | xalidb/treenet | 1c80105615b0ea5fa56f1c64000e59d9d79d13fb | c6ed664edbdd7612c72092cf6ec197a36a145561 | refs/heads/master | 2021-01-19T05:19:16.773352 | 2017-01-31T16:16:23 | 2017-01-31T16:16:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,423 | cpp | /*
* ClassicGrower.cpp
*
* Created on: Sept 9, 2016
* Author: jefgrailet
*
* Implements the class defined in ClassicGrower.h (see this file to learn further about the goals
* of such class).
*/
#include <cstdlib>
#include <list>
using std::list;
#include "ClassicGrower.h"
ClassicGrower::ClassicGrower(TreeNETEnvironment *env) : Grower(env)
{
/*
* About maxDepth parameter: it is the size of the longest route to a subnet which should be
* inserted in the tree. It is used as the size of the depthMap array (i.e. one list of nodes
* per depth level), which should be maintained throughout the life of the tree to ease the
* insertion step (re-building the whole map at each insertion is costly).
*/
unsigned short maxDepth = env->getSubnetSet()->getMaximumDistance();
this->depthMap = new list<NetworkTreeNode*>[maxDepth];
this->tree = NULL;
}
ClassicGrower::~ClassicGrower()
{
delete[] depthMap;
}
void ClassicGrower::prepare()
{
// Architect is entirely passive; there is no preparation/traceroute phase at all
}
void ClassicGrower::grow()
{
SubnetSiteSet *subnets = env->getSubnetSet();
// subnets->removeArtifacts();
subnets->sortByRoute();
this->tree = new NetworkTree();
// Inserting subnets with a complete route first
SubnetSite *toInsert = subnets->getValidSubnet();
while(toInsert != NULL)
{
this->insert(toInsert);
toInsert = subnets->getValidSubnet();
}
// Then, subnets with an incomplete route after a repairment
toInsert = subnets->getValidSubnet(false);
while(toInsert != NULL)
{
this->repairRoute(toInsert);
this->insert(toInsert);
toInsert = subnets->getValidSubnet(false);
}
// Creates the new Soil object and adds the produced tree in it
this->result = new Soil();
this->result->insertTree(this->tree);
// Adds the subnet map entries in the Soil object
this->result->insertMapEntries(newSubnetMapEntries);
this->result->sortMapEntries();
newSubnetMapEntries.clear();
}
void ClassicGrower::insert(SubnetSite *subnet)
{
// Gets root of the tree
NetworkTreeNode *rootNode = this->tree->getRoot();
list<NetworkTreeNode*> *map = this->depthMap;
// Gets route information of the new subnet
RouteInterface *route = subnet->getRoute();
unsigned short routeSize = subnet->getRouteSize();
// Finds the deepest node which occurs in the route of current subnet
NetworkTreeNode *insertionPoint = NULL;
unsigned insertionPointDepth = 0;
for(unsigned short d = routeSize; d > 0; d--)
{
if(route[d - 1].ip == RouteInterface::MISSING)
continue;
for(list<NetworkTreeNode*>::iterator i = map[d - 1].begin(); i != map[d - 1].end(); ++i)
{
if((*i)->hasLabel(route[d - 1].ip))
{
insertionPoint = (*i);
insertionPointDepth = d;
break;
}
}
if(insertionPoint != NULL)
break;
}
if(insertionPoint == NULL)
insertionPoint = rootNode;
// Creates the new branch
NetworkTreeNode *subTree = createBranch(subnet, insertionPointDepth + 1);
if(insertionPoint != rootNode)
subTree->addPreviousLabel(route[insertionPointDepth - 1].ip);
insertionPoint->addChild(subTree);
// Puts the new internal nodes inside the depth map
NetworkTreeNode *next = subTree;
NetworkTreeNode *subnetNode = NULL; // For subnet map entry
if(next->isInternal())
{
unsigned short curDepth = insertionPointDepth;
do
{
map[curDepth].push_back(next);
curDepth++;
list<NetworkTreeNode*> *children = next->getChildren();
if(children != NULL && children->size() == 1)
{
if(children->front()->isInternal())
{
next = children->front();
}
else
{
subnetNode = children->front();
next = NULL;
}
}
else
next = NULL;
}
while(next != NULL);
}
/*
* If nodes "above" the insertion point do not share the exact same route as the one we
* obtained for this subnet, we add the interfaces at a same TTL (i.e. depth) that differ
* from what we already have.
*/
NetworkTreeNode *cur = insertionPoint->getParent();
NetworkTreeNode *child = insertionPoint;
for(unsigned short d = insertionPointDepth; d > 1; d--)
{
child->addPreviousLabel(route[d - 2].ip);
if(!cur->hasLabel(route[d - 2].ip))
{
cur->addLabel(route[d - 2].ip);
/*
* Look in depth map for a node at same depth sharing the new label. Indeed, if such
* node exists, we should merge it with the current node, otherwise we will have 2
* nodes sharing a same label in the tree, which should not occur if we want the tree
* to be fidel to the topology.
*/
NetworkTreeNode *toMerge = NULL;
for(list<NetworkTreeNode*>::iterator i = map[d - 2].begin(); i != map[d - 2].end(); ++i)
{
if((*i) != cur && (*i)->hasLabel(route[d - 2].ip))
{
toMerge = (*i);
break;
}
}
if(toMerge != NULL)
{
cur->merge(toMerge);
// Add labels in toMerge absent from cur
list<InetAddress> *labels1 = cur->getLabels();
list<InetAddress> *labels2 = toMerge->getLabels();
labels1->merge((*labels2));
labels1->sort(InetAddress::smaller);
InetAddress prev(0);
bool first = true; // Avoids incoherent behavior with labels 0.0.0.0
for(list<InetAddress>::iterator i = labels1->begin(); i != labels1->end(); ++i)
{
if(!first)
{
if((*i) == prev)
{
labels1->erase(i--);
}
}
prev = (*i);
first = false;
}
this->prune(toMerge, NULL, d - 2);
// Sorts parent's children to keep the good order (it can change after merging)
cur->getParent()->sortChildren();
}
}
child = cur;
cur = cur->getParent();
}
// Last step: creates an entry for the subnet map (for look-up)
newSubnetMapEntries.push_back(new SubnetMapEntry(subnet, tree, subnetNode));
}
void ClassicGrower::prune(NetworkTreeNode *cur, NetworkTreeNode *prev, unsigned short depth)
{
list<NetworkTreeNode*> *map = this->depthMap;
if(cur->isLeaf())
{
if(prev != NULL)
delete prev;
return;
}
else if(cur->isRoot())
{
if(prev != NULL)
{
list<NetworkTreeNode*> *children = cur->getChildren();
for(list<NetworkTreeNode*>::iterator i = map[0].begin(); i != map[0].end(); ++i)
{
if((*i) == prev)
{
map[0].erase(i);
break;
}
}
// Erases prev from the children list (of this node) and stops
for(list<NetworkTreeNode*>::iterator i = children->begin(); i != children->end(); ++i)
{
if((*i) == prev)
{
delete (*i);
children->erase(i);
return;
}
}
delete prev;
}
return;
}
list<NetworkTreeNode*> *children = cur->getChildren();
// Current node has multiple children; keep it but remove prev
if(children->size() > 1)
{
// Erases prev from the depth map
unsigned dPrev = depth + 1;
for(list<NetworkTreeNode*>::iterator i = map[dPrev].begin(); i != map[dPrev].end(); ++i)
{
if((*i) == prev)
{
map[dPrev].erase(i);
break;
}
}
// Erases prev from the children list (of this node) and stops
for(list<NetworkTreeNode*>::iterator i = children->begin(); i != children->end(); ++i)
{
if((*i) == prev)
{
delete (*i);
children->erase(i);
return;
}
}
}
// Current node has a single child: prev. Deletes it and moves up in the tree.
else if(children->size() == 1)
{
// Erases prev from the depth map
unsigned dPrev = depth + 1;
for(list<NetworkTreeNode*>::iterator i = map[dPrev].begin(); i != map[dPrev].end(); ++i)
{
if((*i) == prev)
{
map[dPrev].erase(i);
break;
}
}
delete prev;
cur->getChildren()->clear();
this->prune(cur->getParent(), cur, depth - 1);
}
// Current node has no longer children. Moves up in the tree.
else if(children->size() == 0)
{
this->prune(cur->getParent(), cur, depth - 1);
}
}
void ClassicGrower::repairRoute(SubnetSite *ss)
{
list<NetworkTreeNode*> *map = this->depthMap;
RouteInterface *route = ss->getRoute();
unsigned short routeSize = ss->getRouteSize();
// Finds deepest match in the tree
NetworkTreeNode *insertionPoint = NULL;
unsigned insertionPointDepth = 0;
for(unsigned short d = routeSize; d > 0; d--)
{
if(route[d - 1].state == RouteInterface::MISSING)
continue;
for(list<NetworkTreeNode*>::iterator i = map[d - 1].begin(); i != map[d - 1].end(); ++i)
{
if((*i)->hasLabel(route[d - 1].ip))
{
insertionPoint = (*i);
insertionPointDepth = d;
break;
}
}
if(insertionPoint != NULL)
break;
}
// If the insertion point could not be found, nothing can be done.
if(insertionPoint == NULL)
{
return;
}
// Lists all subnets which belongs to the branch where insertion point is.
list<SubnetSite*> subnetList;
listSubnetsRecursive(&subnetList, insertionPoint);
// Finds the route which is the most similar to the incomplete route
RouteInterface *similarRoute = NULL;
unsigned short maxSimilarities = 0;
for(list<SubnetSite*>::iterator i = subnetList.begin(); i != subnetList.end(); ++i)
{
SubnetSite *cur = (*i);
if(!cur->hasCompleteRoute())
continue;
RouteInterface *curRoute = cur->getRoute();
unsigned short similarities = 0;
for(unsigned short j = 0; j < insertionPointDepth; ++j)
{
if(curRoute[j].ip == route[j].ip)
similarities++;
}
if(similarities > maxSimilarities)
{
similarRoute = curRoute;
maxSimilarities = similarities;
}
}
// If there was no subnet with a complete similar route, nothing can be done.
if(similarRoute == NULL)
{
return;
}
// Completes the incomplete route
for(unsigned short i = 0; i < insertionPointDepth; ++i)
{
if(route[i].state == RouteInterface::MISSING)
{
route[i].repair(similarRoute[i].ip);
}
}
}
NetworkTreeNode *ClassicGrower::createBranch(SubnetSite *subnet, unsigned short depth)
{
RouteInterface *route = subnet->getRoute();
unsigned short routeSize = subnet->getRouteSize();
// If current depth minus 1 equals the route size, then we just have to create a leaf
if((depth - 1) == routeSize)
{
NetworkTreeNode *newNode = new NetworkTreeNode(subnet);
return newNode;
}
// Creates the branch for this new subnet, as a cascade of new nodes with missing interfaces
NetworkTreeNode *newRoot = new NetworkTreeNode(route[depth - 1].ip);
NetworkTreeNode *curNode = newRoot;
for(int i = depth + 1; i <= routeSize; i++)
{
NetworkTreeNode *newNode = new NetworkTreeNode(route[i - 1].ip);
newNode->addPreviousLabel(route[i - 2].ip);
curNode->addChild(newNode);
curNode = newNode;
}
curNode->addChild(new NetworkTreeNode(subnet));
return newRoot;
}
void ClassicGrower::listSubnetsRecursive(list<SubnetSite*> *subnetsList, NetworkTreeNode *cur)
{
// Subnets are stored in leaves
if(cur->isLeaf())
{
subnetsList->push_back(cur->getAssociatedSubnet());
return;
}
// Goes deeper in the tree
list<NetworkTreeNode*> *children = cur->getChildren();
for(list<NetworkTreeNode*>::iterator i = children->begin(); i != children->end(); ++i)
{
listSubnetsRecursive(subnetsList, (*i));
}
}
| [
"Jean-Francois.Grailet@student.ulg.ac.be"
] | Jean-Francois.Grailet@student.ulg.ac.be |
032a3cc1e335bac9eaabf278bd6a680788ccdc60 | bd8a861b3991e20c3e7ebd1e035184e02f13df12 | /Classes/SHLevel.cpp | 538e226fa8c9e7c2322402dbf9ed90eeabc254de | [
"MIT"
] | permissive | th7nder/sh-magneticbrick | a5750c31c5f0bd379364c7d3c9369794d2865a33 | 13d1e1c05a42baf12524ed8bb2b8feb759baeb67 | refs/heads/master | 2021-04-15T15:08:42.041077 | 2017-10-25T17:37:09 | 2017-10-25T17:37:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,437 | cpp | //
// SHLevel.cpp
// MagneticBrick
//
// Created by Konrad Stepniak on 28/02/2017.
//
//
#include "SHLevel.hpp"
USING_NS_CC;
bool SHLevel::inAction = false;
SHLevel::SHLevel() : expanded(false), button(nullptr), bottomLayout(nullptr), levelState(Locked), theme(Theme("", "", Color4B(1, 1, 1, 1), false))
{
for(int i = 0; i < 6; i++)
{
levelCompleted[i] = Locked;
numbers[i] = nullptr;
stars[i] = nullptr;
}
}
SHLevel::~SHLevel()
{
}
SHLevel* SHLevel::create(parent* view, Theme theme, bool locked, GameHandler* gameHandler, int themeId)
{
SHLevel* ret = new (std::nothrow) SHLevel();
if (ret && ret->init(view, theme, locked, gameHandler, themeId))
{
ret->autorelease();
}
else
{
CC_SAFE_DELETE(ret);
}
return ret;
}
void SHLevel::updateTheme()
{
auto texture = getStateTexture();
button->loadTextureNormal(texture);
if(levelState == Locked)
{
button->setEnabled(false);
} else if(levelState == Unlocked)
{
button->setEnabled(true);
} else {
button->setEnabled(true);
}
bottomLayout->setVisible(false);
for(int i = 1; i <= 6; i++)
{
updateLevel(i);
}
}
std::string SHLevel::getStateTexture()
{
std::string texture;
if(themeId > 0)
{
if(!gameHandler->isThemeAvailable(themeId) && gameHandler->isThemeAvailable(themeId - 1))
{
levelState = Unlockable;
texture = theme.getThumbnailUnlockablePath();
}
else if(!gameHandler->isThemeAvailable(themeId - 1) && !gameHandler->isThemeAvailable(themeId))
{
levelState = Locked;
texture = theme.getThumbnailLockedPath();
}
else
{
levelState = Unlocked;
texture = theme.getThumbnailUnlockedPath();
}
}
else
{
texture = theme.getThumbnailUnlockedPath();
levelState = Unlocked;
}
return texture;
}
bool SHLevel::init(parent* view, Theme theme, bool locked, GameHandler* gameHandler, int themeId)
{
if(!super::init()) return false;
this->view = view;
this->theme = theme;
this->gameHandler = gameHandler;
this->themeId = themeId;
setCascadeOpacityEnabled(true);
auto txt = getStateTexture();
button = cocos2d::ui::Button::create(txt);
button->loadTextureDisabled(txt);
if(levelState == Locked)
{
button->setEnabled(false);
}
button->setContentSize(Size(640, 260)); // -1y
button->setAnchorPoint(cocos2d::Vec2::ZERO);
button->setPosition(cocos2d::Vec2::ZERO);
button->addClickEventListener(onLevelButtonClicked);
button->setSwallowTouches(true);
auto bg = cocos2d::Sprite::create(theme.getThumbnailBackgroundPath());
bg->setAnchorPoint(cocos2d::Vec2::ZERO);
bottomLayout = cocos2d::ui::Layout::create();
bottomLayout->setCascadeOpacityEnabled(true);
bottomLayout->setAnchorPoint(cocos2d::Vec2::ZERO);
bottomLayout->setContentSize(Size(640, 342)); // -1y
bottomLayout->addChild(bg);
bottomLayout->setEnabled(false);
createNumbers();
addChild(bottomLayout);
addChild(button);
setContentSize(button->getContentSize());
bottomLayout->setVisible(false);
coordinates[0] = Vec2(197, 241);
coordinates[1] = Vec2(394, 241);
coordinates[2] = Vec2(590, 241);
coordinates[3] = Vec2(197, 105);
coordinates[4] = Vec2(394, 105);
coordinates[5] = Vec2(590, 105);
createLvlStars();
return true;
}
std::string SHLevel::getIcon(int level, std::string color)
{
std::string icon;
auto number = StringUtils::format("_%d", level);
if(gameHandler->isLevelAvailable(themeId, level))
{
if(gameHandler->getLevelProgress(themeId, level) == 100)
{
icon = Globals::resources["icon_number_finished_" + color + number];
levelCompleted[level - 1] = Completed;
}
else
{
icon = Globals::resources["icon_number_toplay_" + color + number];
levelCompleted[level - 1] = Playable;
}
} else
{
levelCompleted[level - 1] = Locked;
icon = Globals::resources["icon_number_toplay_" + color + number];
}
return icon;
}
void SHLevel::createLvlStars()
{
for(int i = 1; i <= 6; i++)
{
if(gameHandler->isLevelAvailable(themeId, i))
{
stars[i - 1] = Sprite::create(Globals::resources[StringUtils::format("lvlmenu_stars_%d_", gameHandler->getStarsAt(themeId, i)) + (theme.getElementsColor())]);
stars[i - 1]->setPosition(coordinates[i - 1]);
bottomLayout->addChild(stars[i - 1]);
}
}
}
void SHLevel::createNumbers()
{
const std::string color = theme.getElementsColor();
numbersCoordinates[0] = Vec2(123, 241);
numbersCoordinates[1] = Vec2(320, 241);
numbersCoordinates[2] = Vec2(516, 241);
numbersCoordinates[3] = Vec2(123, 106);
numbersCoordinates[4] = Vec2(320, 106);
numbersCoordinates[5] = Vec2(516, 106);
for(int i = 1; i <= 6; i++)
{
numbers[i - 1] = cocos2d::ui::Button::create(getIcon(i, color));
numbers[i - 1]->setPosition(numbersCoordinates[i - 1]);
numbers[i - 1]->addClickEventListener(onLevelSelected);
numbers[i - 1]->setTag(i);
bottomLayout->addChild(numbers[i - 1]);
}
}
void SHLevel::onLevelButtonClicked(cocos2d::Ref *ref)
{
auto button = dynamic_cast<cocos2d::ui::Button*>(ref);
if(button != nullptr)
{
auto shLevel = dynamic_cast<SHLevel*>(button->getParent());
if(shLevel != nullptr)
{
switch(shLevel->getLevelState())
{
case Unlocked:
{
playClickSound();
shLevel->changeState();
break;
}
case Unlockable:
{
shLevel->gameHandler->buyChapter(shLevel->themeId);
break;
}
default:
{
}
}
}
}
}
void SHLevel::onLevelSelected(cocos2d::Ref *ref)
{
auto button = dynamic_cast<cocos2d::ui::Button*>(ref);
if(button != nullptr)
{
auto shLevel = dynamic_cast<SHLevel*>(button->getParent()->getParent());
if(shLevel != nullptr && shLevel->getLevelState() == Unlocked)
{
shLevel->startGame(button->getTag());
}
}
}
void SHLevel::startGame(int level)
{
if(!gameHandler->getRemoveAds() && gameHandler->getBricksRemaining() < 1)
{
gameHandler->setPostEffectEnabled();
gameHandler->onBricksMissingFromSelect();
return;
}
gameHandler->onThemeAndLevelSelected(themeId, level);
auto visibleSize = Director::getInstance()->getVisibleSize();
view->setAnchorPoint(Vec2(0.5, 0.5));
view->setPosition(Vec2(visibleSize.width / 2, visibleSize.height / 2));
view->setEnabled(false);
auto spawn = cocos2d::Spawn::create(ScaleTo::create(0.4, 0.01), MoveTo::create(0.4, Vec2(visibleSize.width / 2, visibleSize.height / 2)), nullptr);
auto func = CallFunc::create([this](){
this->view->setAnchorPoint(Vec2::ZERO);
this->view->setPosition(Vec2::ZERO);
this->view->setScale(1.0);
this->gameHandler->hideUI();
});
auto seq = Sequence::create(spawn, func, NULL);
this->view->runAction(seq);
}
void SHLevel::changeState()
{
if(inAction)
{
return;
}
bottomLayout->setVisible(true);
inAction = true;
auto parent = getParent();
auto children = parent->getChildren();
float amount = bottomLayout->getContentSize().height;
auto levelSize = getContentSize();
levelSize.height += expanded ? -bottomLayout->getContentSize().height : bottomLayout->getContentSize().height;
setContentSize(levelSize);
expanded = !expanded;
button->setPositionY(levelSize.height - button->getContentSize().height);
bool down = true;
if(expanded)
{
float targetY = getPositionY() - bottomLayout->getContentSize().height;
auto visibleSize = Director::getInstance()->getVisibleSize();
// nie wiem jak to wyszło, ale :) :) :) :)
float startContainerY = visibleSize.height - view->getInnerContainerSize().height;
float currentDifference = view->getInnerContainerPosition().y + startContainerY;
float bottom = startContainerY - currentDifference;
if(targetY < bottom)
{
down = false;
}
setPositionY(targetY);
bottomLayout->setPositionY(button->getPositionY());
auto func = CallFunc::create([this](){
bottomLayout->setEnabled(true);
});
auto seq = Sequence::create(MoveTo::create(0.3, Vec2(0, 0)), func, NULL);
bottomLayout->runAction(seq);
} else {
setPositionY(getPositionY() + bottomLayout->getContentSize().height);
bottomLayout->setPositionY(-bottomLayout->getContentSize().height);
bottomLayout->setEnabled(false);
auto func = CallFunc::create([this](){
bottomLayout->setVisible(false);
});
auto seq = Sequence::create(MoveBy::create(0.3, Vec2(0, bottomLayout->getContentSize().height)), func, NULL);
bottomLayout->runAction(seq);
}
bool shrinking = false;
for(auto child : children)
{
auto otherLevel = static_cast<SHLevel*>(child);
if(otherLevel == this)
{
continue;
}
if(otherLevel->expanded)
{
shrinking = true;
otherLevel->expanded = false;
otherLevel->runAction(MoveBy::create(0.3, Vec2(0, bottomLayout->getContentSize().height)));
//otherLevel->setPositionY(otherLevel->getPositionY() + bottomLayout->getContentSize().height);
otherLevel->setContentSize(Size(button->getContentSize()));
//otherLevel->button->setPositionY(0);
otherLevel->bottomLayout->setPositionY(0);
otherLevel->button->runAction(MoveTo::create(0.3, Vec2::ZERO));
down = true;
if(otherLevel->themeId > themeId)
{
for(auto nestedChild : children)
{
auto otherNestedLevel = static_cast<SHLevel*>(nestedChild);
if(otherNestedLevel == this || otherNestedLevel == otherLevel)
{
continue;
}
if(otherNestedLevel->themeId > otherLevel->themeId)
{
otherNestedLevel->runAction(MoveBy::create(0.3, Vec2(0, bottomLayout->getContentSize().height)));
//otherNestedLevel->setPositionY(otherNestedLevel->getPositionY() + bottomLayout->getContentSize().height);
}
}
} else if(otherLevel->themeId < themeId)
{
for(auto nestedChild : children)
{
auto otherNestedLevel = static_cast<SHLevel*>(nestedChild);
if(otherNestedLevel == otherLevel)
{
continue;
}
if(otherNestedLevel->themeId > otherLevel->themeId)
{
otherNestedLevel->runAction(MoveBy::create(0.3, Vec2(0, bottomLayout->getContentSize().height)));
}
}
}
}
if(otherLevel->themeId > themeId)
{
otherLevel->runAction(MoveBy::create(0.3, Vec2(0, expanded ? -bottomLayout->getContentSize().height : bottomLayout->getContentSize().height )));
}
}
if(expanded && !shrinking)
{
auto contSize = view->getInnerContainerSize();
contSize.height += amount;
view->getInnerContainer()->setContentSize(contSize);
view->getInnerContainer()->setPositionY(view->getInnerContainer()->getPositionY() - amount);
for(auto child : children)
{
child->setPositionY(child->getPositionY() + amount);
}
}
else if(!expanded && !shrinking)
{
auto contSize = view->getInnerContainerSize();
contSize.height -= amount;
view->getInnerContainer()->setContentSize(contSize);
view->getInnerContainer()->setPositionY(view->getInnerContainer()->getPositionY() + amount);
for(auto child : children)
{
child->setPositionY(child->getPositionY() - amount);
}
if(themeId > 5)
{
view->setTouchEnabled(false);
view->runAction(Sequence::create(DelayTime::create(0.35),CallFunc::create([this](){this->view->setTouchEnabled(true);}),NULL));
parent->runAction(MoveBy::create(0.3, Vec2(0, -amount)));
}
}
if(!down && expanded)
{
parent->runAction(MoveBy::create(0.3, Vec2(0, bottomLayout->getContentSize().height)));
}
view->setTouchEnabled(false);
auto seq = Sequence::create(DelayTime::create(0.3), CallFunc::create([this]{
this->inAction = false;
view->setTouchEnabled(true);
}), nullptr);
runAction(seq);
}
void SHLevel::updateLevel(int level)
{
auto texture = getIcon(level, theme.getElementsColor());
numbers[level - 1]->loadTextureNormal(texture);
if(stars[level - 1] != nullptr)
{
stars[level - 1]->setTexture(Globals::resources[StringUtils::format("lvlmenu_stars_%d_", gameHandler->getStarsAt(themeId, level)) + (theme.getElementsColor())]);
}
else
{
stars[level - 1] = Sprite::create(Globals::resources[StringUtils::format("lvlmenu_stars_%d_", gameHandler->getStarsAt(themeId, level)) + (theme.getElementsColor())]);
stars[level - 1]->setPosition(coordinates[level - 1]);
bottomLayout->addChild(stars[level - 1]);
}
}
| [
"vesphy@gmail.com"
] | vesphy@gmail.com |
397a370827001beb6847034699c787af2b8761bc | d96077f7131a2179a879d6651b20b71cad0c3117 | /KY2DViewerApp/KY2DEditor.h | 3e621181b3214d5d8a4b7cea677df1ff92799d63 | [] | no_license | wowlsh93/2DViwer | 647c135f77baeb041576b387ffb5e644917b80a8 | 4dd102f56d93896f05ddcbfd812a3735fe37163d | refs/heads/master | 2022-04-14T23:50:23.042248 | 2020-04-11T02:47:06 | 2020-04-11T02:47:06 | 254,779,766 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 1,154 | h | #pragma once
#include "../KY2DViewer_DLL/KY2DViewer_IF.h"
// CKY2DEditor 대화 상자입니다.
class CKY2DEditor
: public CDialog
, public KY2DVIEWER::KY2DEDITEvents
{
DECLARE_DYNAMIC(CKY2DEditor)
public:
CKY2DEditor(CWnd* pParent = NULL); // 표준 생성자입니다.
virtual ~CKY2DEditor();
COLORREF m_color;
// 대화 상자 데이터입니다.
enum { IDD = IDD_KY2DEDITOR };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 지원입니다.
DECLARE_MESSAGE_MAP()
virtual BOOL OnWndMsg(UINT message, WPARAM wParam, LPARAM lParam, LRESULT* pResult);
public:
afx_msg BOOL OnEraseBkgnd(CDC* pDC);
virtual BOOL OnInitDialog();
virtual BOOL OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo);
LONG config(LPCWSTR szCMD, WPARAM wParam, LPARAM lParam);
protected:
virtual bool On2DShapeSelect(KY2DVIEWER::KY2DSAHPE& shape);
virtual bool On2DShapeDragStart(KY2DVIEWER::KY2DSAHPE& shape);
virtual bool On2DShapeDragMove(KY2DVIEWER::KY2DSAHPE& shape);
virtual bool On2DShapeDragEnd(KY2DVIEWER::KY2DSAHPE& shape);
virtual bool On2DShapeCreate(KY2DVIEWER::KY2DSAHPE& shape);
};
| [
"wowlsh93@gmail.com"
] | wowlsh93@gmail.com |
31ae309bfd9a1e436b857547c40f08172ecb6796 | dd629803899abbb8b6d8b4503b3591bb7eae6e73 | /include/forge/imaging/hd/topology.h | c56daf1445ea76b0f77f19866655aa4aa3f61814 | [] | no_license | furby-tm/Winggverse | 8d78bb691d2e5eecc5197845e9cbfb98f45c58bd | 0dc9db7057f52fca3e52e73491e24f298d108106 | refs/heads/main | 2023-04-21T17:32:20.350636 | 2021-04-30T04:24:30 | 2021-04-30T04:24:30 | 362,732,238 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,309 | h | #line 1 "C:/Users/tyler/dev/WINGG/forge/imaging/hd/topology.h"
/*
* Copyright 2021 Forge. All Rights Reserved.
*
* The use of this software is subject to the terms of the
* Forge license agreement provided at the time of installation
* or download, or which otherwise accompanies this software in
* either electronic or hard copy form.
*
* Portions of this file are derived from original work by Pixar
* distributed with Universal Scene Description, a project of the
* Academy Software Foundation (ASWF). https://www.aswf.io/
*
* Original Copyright (C) 2016-2021 Pixar.
* Modifications copyright (C) 2020-2021 ForgeXYZ LLC.
*
* Forge. The Animation Software & Motion Picture Co.
*/
#ifndef FORGE_IMAGING_HD_TOPOLOGY_H
#define FORGE_IMAGING_HD_TOPOLOGY_H
#include "forge/forge.h"
#include "forge/imaging/hd/api.h"
#include "forge/imaging/hd/version.h"
#include "forge/base/arch/inttypes.h"
#include <ostream>
FORGE_NAMESPACE_BEGIN
class HdTopology {
public:
typedef uint64_t ID;
HdTopology() {};
virtual ~HdTopology() {};
/// Returns the hash value of this topology to be used for instancing.
virtual ID ComputeHash() const = 0;
};
HD_API
std::ostream& operator << (std::ostream &out, HdTopology const &);
FORGE_NAMESPACE_END
#endif // FORGE_IMAGING_HD_TOPOLOGY_H
| [
"tyler@tylerfurby.com"
] | tyler@tylerfurby.com |
63974ec6571ae81b3af0ba4e50d0c00b678b9abf | a45db7bf6ddf8229579e14959ec8080f92dc69dc | /clusterfq/message.cpp | 53908b5a14b0e057f35217231da51fb429d64969 | [] | no_license | mur1s-playground/clusterfq | b238e7a8c53dcb53830ca595b80c69880c93cbdf | 5fea47dd16546d528f386e5c2f6b022046886b03 | refs/heads/master | 2023-06-17T04:28:47.074768 | 2021-07-18T19:06:04 | 2021-07-18T19:06:04 | 376,087,485 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,511 | cpp | #include "message.h"
#include "identity.h"
#include "contact.h"
#include "client.h"
#include "address_factory.h"
#include "packetset.h"
#include "util.h"
#include "lossy_pipe.h"
#include <sstream>
#include <iostream>
#ifdef _WIN32
#else
#include <cstring>
#endif
unsigned char *message_create_hash_id(const char* data, unsigned int data_len) {
char* d = (char *)malloc(data_len + 128);
memcpy(d, data, data_len);
char* rnd = crypto_random(128);
memcpy(&d[data_len], rnd, 128);
free(rnd);
unsigned char *hash = crypto_hash_md5((unsigned char*)d, data_len + 128);
free(d);
return hash;
}
void message_send_receipt(struct identity* i, struct contact* c, struct packetset* ps, char* hash_id, unsigned int chunk_id) {
//PACKET
//type //hash-id //chunk-id x2 //resend-ct //meta/pkt-overhead
unsigned int size_est = 1 + 17 + 6 + 10 + 40;
struct NetworkPacket* np = new NetworkPacket();
network_packet_create(np, size_est);
if (ps->complete || ps->processed) {
network_packet_append_int(np, MT_RECEIPT_COMPLETE);
} else {
network_packet_append_int(np, MT_RECEIPT);
}
network_packet_append_int(np, chunk_id);
struct NetworkPacket* outer = new NetworkPacket();
network_packet_create(outer, 128 + 72 + 1000);
network_packet_append_str(outer, np->data, np->position);
network_packet_append_str(outer, hash_id, 16);
network_packet_append_int(outer, 0); //chunk 0
network_packet_append_int(outer, 1); //total chunks 1
ps->chunks_sent_ct[chunk_id]++;
network_packet_append_int(outer, ps->chunks_sent_ct[chunk_id]);
unsigned int signature_len = 0;
char* signature = crypto_sign_message(&i->keys[c->identity_key_id], outer->data, outer->position, &signature_len, false);
network_packet_append_str(outer, signature, signature_len);
free(signature);
unsigned int out_size = 0;
unsigned char* encrypted = nullptr;
if (c->address_rev.length() == 0 || c->session_key.private_key_len == 0 || c->session_key.public_key_len > 0) {
encrypted = (unsigned char*)crypto_key_public_encrypt(&c->pub_key, outer->data, outer->size, &out_size);
} else {
mutex_wait_for(&c->outgoing_messages_lock);
encrypted = crypto_key_sym_encrypt(&c->session_key, (unsigned char *)outer->data, outer->size, (int *)&out_size);
mutex_release(&c->outgoing_messages_lock);
}
network_packet_destroy(outer);
network_packet_destroy(np);
struct message_receipt mr;
mr.address = c->address;
mr.packet = encrypted;
mr.packet_len = out_size;
contact_stats_update(c->cs, CSE_RECEIPT_SENT);
packetset_enqueue_receipt(mr);
}
void message_send_session_key(struct identity* i, struct contact* c, bool prepend) {
//ESTABLISH SESSION KEY
struct message_meta* mm = new struct message_meta();
mm->mt = MT_ESTABLISH_SESSION;
mm->identity_id = i->id;
mm->contact_id = c->id;
mm->packetset_id = UINT_MAX;
//mutex_wait_for(&c->outgoing_messages_lock);
mutex_wait_for(&c->session_key_inc_lock);
crypto_key_sym_generate(&c->session_key);
crypto_key_name_set(&c->session_key, c->name.c_str(), c->name.length());
crypto_key_copy(&c->session_key, &c->session_key_inc);
mutex_release(&c->session_key_inc_lock);
//mutex_release(&c->outgoing_messages_lock);
//PACKET
//type //pubkey //hash-id //chunk-id //resend-ct //meta/pkt-overhead
unsigned int size_est = 1 + c->session_key.public_key_len + 17 + 6 + 10 + 40;
struct NetworkPacket* np = new NetworkPacket();
network_packet_create(np, size_est);
network_packet_append_int(np, MT_ESTABLISH_SESSION);
network_packet_append_str(np, c->session_key.public_key, c->session_key.public_key_len);
mm->np = np;
//MSG HASH-ID
mm->msg_hash_id = message_create_hash_id(np->data, np->size);
contact_add_message(c, mm, prepend, false);
}
void message_send_new_address(struct identity* i, struct contact* c) {
struct message_meta* mm = new struct message_meta();
mm->mt = MT_MIGRATE_ADDRESS;
mm->identity_id = i->id;
mm->contact_id = c->id;
mm->packetset_id = UINT_MAX;
//GENERATE RETURN ADDRESS
c->address_rev_migration = address_factory_get_unique();
address_factory_add_address(c->address_rev_migration, AFST_CONTACT, i->id, c->id);
//PACKET
//type //pubkey //hash-id //chunk-id //resend-ct //meta/pkt-overhead
unsigned int size_est = 1 + c->address_rev_migration.length() + 17 + 6 + 10 + 40;
struct NetworkPacket* np = new NetworkPacket();
network_packet_create(np, size_est);
network_packet_append_int(np, MT_MIGRATE_ADDRESS);
network_packet_append_str(np, c->address_rev_migration.c_str(), c->address_rev_migration.length());
mm->np = np;
//MSG HASH-ID
mm->msg_hash_id = message_create_hash_id(np->data, np->size);
contact_add_message(c, mm);
}
void message_send_migrate_key(struct identity* i, struct contact* c) {
if (!message_check_pre(i, c)) return;
struct message_meta* mm = new struct message_meta();
mm->mt = MT_MIGRATE_PUBKEY;
mm->identity_id = i->id;
mm->contact_id = c->id;
mm->packetset_id = UINT_MAX;
//PACKET
//type //pubkey //hash-id //chunk-id //resend-ct //meta/pkt-overhead
unsigned int size_est = 1 + i->keys[i->keys.size() - 1].public_key_len + 17 + 6 + 10 + 40;
struct NetworkPacket* np = new NetworkPacket();
network_packet_create(np, size_est);
network_packet_append_int(np, MT_MIGRATE_PUBKEY);
network_packet_append_str(np, i->keys[i->keys.size() - 1].public_key, i->keys[i->keys.size() - 1].public_key_len);
mm->np = np;
//MSG HASH-ID
mm->msg_hash_id = message_create_hash_id(np->data, np->size);
contact_add_message(c, mm);
packetset_loop_start_if_needed();
}
void message_check_session_key(struct identity *i, struct contact *c) {
mutex_wait_for(&c->outgoing_messages_lock);
if (c->session_key.private_key_len > 0 && c->session_key.public_key_len == 0 && time(nullptr) - c->session_established > 60) {
mutex_wait_for(&c->session_key_inc_lock);
c->session_key_inc.private_key_len = 0;
if (c->session_key_inc.private_key != nullptr) {
free(c->session_key_inc.private_key);
c->session_key_inc.private_key = nullptr;
}
crypto_key_reset_internal(&c->session_key_inc, false);
mutex_release(&c->session_key_inc_lock);
c->session_key.private_key_len = 0;
if (c->session_key.private_key != nullptr) {
free(c->session_key.private_key);
c->session_key.private_key = nullptr;
}
crypto_key_reset_internal(&c->session_key, false);
//DROP SESSION
struct message_meta* mm = new struct message_meta();
mm->mt = MT_DROP_SESSION;
mm->identity_id = i->id;
mm->contact_id = c->id;
mm->packetset_id = UINT_MAX;
//PACKET
//type //hash-id //chunk-id //resend-ct //meta/pkt-overhead
unsigned int size_est = 1 + 17 + 6 + 10 + 40;
struct NetworkPacket* np = new NetworkPacket();
network_packet_create(np, size_est);
network_packet_append_int(np, MT_DROP_SESSION);
mm->np = np;
//MSG HASH-ID
mm->msg_hash_id = message_create_hash_id(np->data, np->size);
contact_add_message(c, mm, false, false);
}
if (c->session_key.private_key_len == 0) {
//ESTABLISH SESSION KEY
message_send_session_key(i, c);
}
mutex_release(&c->outgoing_messages_lock);
}
void message_check_establish_contact(struct identity *i, struct contact *c) {
if (c->address_rev.length() == 0) {
//ESTABLISH CONTACT
struct message_meta* mm = new struct message_meta();
mm->mt = MT_ESTABLISH_CONTACT;
mm->identity_id = i->id;
mm->contact_id = c->id;
mm->packetset_id = UINT_MAX;
//GENERATE RETURN ADDRESS
c->address_rev = address_factory_get_unique();
address_factory_add_address(c->address_rev, AFST_CONTACT, i->id, c->id);
c->address_rev_established = time(nullptr);
//PACKET
//type //name //pubkey //address //hash-id //chunk-id //resend-ct //meta/pkt-overhead
unsigned int size_est = 1 + strlen(i->name.c_str()) + i->keys[0].public_key_len + strlen(c->address_rev.c_str()) + 17 + 6 + 10 + 40;
struct NetworkPacket* np = new NetworkPacket();
network_packet_create(np, size_est);
network_packet_append_int(np, MT_ESTABLISH_CONTACT);
network_packet_append_str(np, i->name.c_str(), i->name.length());
network_packet_append_str(np, i->keys[i->keys.size() - 1].public_key, i->keys[i->keys.size() - 1].public_key_len);
network_packet_append_str(np, c->address_rev.c_str(), strlen(c->address_rev.c_str()));
mm->np = np;
//MSG HASH-ID
mm->msg_hash_id = message_create_hash_id(np->data, np->size);
contact_add_message(c, mm);
}
}
bool message_check_pre(struct identity *i, struct contact *c) {
unsigned int identity_id = i->id;
if (c->address.length() == 0) {
std::cout << "no address available" << std::endl;
return false;
}
if (c->pub_key.public_key_len == 0) {
std::cout << "no pubkey available" << std::endl;
return false;
}
message_check_establish_contact(i, c);
message_check_session_key(i, c);
if (time(nullptr) - c->address_rev_established > 120) {
message_send_new_address(i, c);
}
return true;
}
void message_pending_save(struct message_meta* mm, string name, unsigned char* data, unsigned int data_len) {
stringstream filename_base;
filename_base << "./identities/" << mm->identity_id << "/contacts/" << mm->contact_id << "/out/";
char* base64_packetset_hash = crypto_base64_encode((unsigned char*)mm->msg_hash_id, 16, true);
string b64_ph(base64_packetset_hash);
b64_ph = util_rtrim(b64_ph, "\r\n\t ");
time_t time_pending;
stringstream filename_l;
do {
time_pending = time(nullptr);
filename_l.clear();
filename_l << filename_base.str() << time_pending << "." << b64_ph << ".";
if (mm->mt == MT_MESSAGE) {
filename_l << "message";
} else if (mm->mt == MT_FILE) {
filename_l << "file." << name;
}
filename_l << ".pending";
util_sleep(1000);
} while (util_path_exists(filename_l.str()));
if (mm->mt == MT_MESSAGE) {
util_file_write_line(filename_l.str(), string((char*)data));
} else if (mm->mt == MT_FILE){
util_file_write_binary(filename_l.str(), data, data_len);
}
mm->time_pending = time_pending;
free(base64_packetset_hash);
}
void message_resend_pending(struct identity *i, struct contact *c, enum message_type mt, time_t time_pending, string name, unsigned char *d, unsigned int d_len, unsigned char *hash_id) {
if (!message_check_pre(i, c)) return;
struct message_meta* mm = new struct message_meta();
mm->mt = mt;
mm->identity_id = i->id;
mm->contact_id = c->id;
mm->packetset_id = UINT_MAX;
unsigned int size_est = 1 + d_len + 17 + 6 + 10 + 40;
struct NetworkPacket* np = new NetworkPacket();
network_packet_create(np, size_est);
network_packet_append_int(np, mt);
if (mt == MT_FILE) {
network_packet_append_str(np, name.c_str(), name.length());
}
network_packet_append_str(np, (char *)d, d_len);
free(d);
mm->np = np;
mm->msg_hash_id = hash_id;
mm->time_pending = time_pending;
contact_add_message(c, mm);
packetset_loop_start_if_needed();
}
void message_send(unsigned int identity_id, unsigned int contact_id, unsigned char *message, unsigned int msg_len) {
struct identity* i = identity_get(identity_id);
if (i == nullptr) return;
struct contact* c = contact_get(&i->contacts, contact_id);
if (c == nullptr) return;
if (!message_check_pre(i, c)) return;
struct message_meta *mm = new struct message_meta();
mm->mt = MT_MESSAGE;
mm->identity_id = identity_id;
mm->contact_id = contact_id;
mm->packetset_id = UINT_MAX;
//PACKET
//type //pubkey //hash-id //chunk-id //resend-ct //meta/pkt-overhead
unsigned int size_est = 1 + msg_len + 17 + 6 + 10 + 40;
struct NetworkPacket *np = new NetworkPacket();
network_packet_create(np, size_est);
network_packet_append_int(np, MT_MESSAGE);
network_packet_append_str(np, (char *)message, msg_len);
mm->np = np;
//MSG HASH-ID
mm->msg_hash_id = message_create_hash_id(np->data, np->size);
message_pending_save(mm, "", message, msg_len);
contact_add_message(c, mm);
packetset_loop_start_if_needed();
}
void message_send_file(unsigned int identity_id, unsigned int contact_id, string name, unsigned char* data, unsigned int data_len) {
struct identity* i = identity_get(identity_id);
if (i == nullptr) return;
struct contact* c = contact_get(&i->contacts, contact_id);
if (c == nullptr) return;
if (!message_check_pre(i, c)) return;
size_t out_len = 0;
//insert linefeeds
int needed_lfs = data_len / 64;
unsigned char* buffer = (unsigned char*)malloc(data_len + needed_lfs + 1);
int ct = 0;
for (int i = 0; i < data_len; i++) {
if (i / 64 == 0) {
buffer[ct] = '\n';
ct++;
}
buffer[ct] = data[i];
ct++;
}
buffer[ct] = '\0';
unsigned char *bfile = crypto_base64_decode((char *)buffer, &out_len);
free(buffer);
string fname = util_file_get_name(name);
std::cout << "file input: " << data_len << std::endl;
unsigned char* hash = crypto_hash_md5(data, data_len);
char* base_64 = crypto_base64_encode(hash, 16);
std::cout << "base64-hash: " << base_64 << std::endl;
free(hash);
free(base_64);
struct message_meta* mm = new struct message_meta();
mm->mt = MT_FILE;
mm->identity_id = identity_id;
mm->contact_id = contact_id;
mm->packetset_id = UINT_MAX;
//PACKET
//type //pubkey //hash-id //chunk-id //resend-ct //meta/pkt-overhead
unsigned int size_est = 1 + data_len + 17 + 6 + 10 + 40;
struct NetworkPacket* np = new NetworkPacket();
network_packet_create(np, size_est);
network_packet_append_int(np, MT_FILE);
network_packet_append_str(np, fname.c_str(), fname.length());
network_packet_append_str(np, (char*)bfile, out_len);
mm->np = np;
//MSG HASH-ID
mm->msg_hash_id = message_create_hash_id(np->data, np->size);
message_pending_save(mm, fname, bfile, out_len);
free(bfile);
contact_add_message(c, mm);
packetset_loop_start_if_needed();
}
string message_delete(int identity_id, int contact_id, string hash_id, string sdir) {
struct identity* i = identity_get(identity_id);
if (i == nullptr) return "{ }";
struct contact* c = contact_get(&i->contacts, contact_id);
if (c == nullptr) return "{ }";
if (hash_id.length() == 0) return "{ }";
string subdir = "";
if (strstr(sdir.c_str(), "in")) {
subdir = "in/";
} else {
subdir = "out/";
}
stringstream base_path;
base_path << "./identities/" << i->id << "/contacts/" << c->id << "/" << subdir << "/";
vector<string> files = util_file_get_all_names(base_path.str(), 0, 0);
for (int f = 0; f < files.size(); f++) {
if (strstr(files[f].c_str(), hash_id.c_str()) != nullptr) {
stringstream fullpath;
fullpath << base_path.str() << files[f];
util_file_delete(fullpath.str());
size_t out_len = 0;
stringstream ss;
ss << hash_id << "\n";
unsigned char* dec = crypto_base64_decode(ss.str().c_str(), &out_len, true);
packetset_remove_pending(i, c, dec);
free(dec);
}
}
stringstream result;
result << "{\n";
result << "\t\"identity_id\": " << identity_id << ",\n";
result << "\t\"contact_id\": " << contact_id << ",\n";
result << "\t\"hash_id\": \"" << hash_id << "\"\n";
result << "}\n";
return result.str();
}
string message_send_lossy_pipe(unsigned int identity_id, unsigned int contact_id, string descriptor_mtu) {
struct identity* i = identity_get(identity_id);
if (i == nullptr) return "{ }";
struct contact* c = contact_get(&i->contacts, contact_id);
if (c == nullptr) return "{ }";
if (!message_check_pre(i, c)) return "{ }";
vector<string> dm = util_split(descriptor_mtu, ";");
unsigned char* address = nullptr;
int port = 0;
struct lossy_pipe* lp = new lossy_pipe();
if (lossy_pipe_init(lp, dm[0], stoi(dm[1]), &address, &port, &c->session_key)) {
struct message_meta* mm = new struct message_meta();
mm->mt = MT_LOSSY_PIPE;
mm->identity_id = identity_id;
mm->contact_id = contact_id;
mm->packetset_id = UINT_MAX;
unsigned int size_est = 1 + descriptor_mtu.length() + 80 + sizeof(int) + 17 + 6 + 10 + 40;
struct NetworkPacket* np = new NetworkPacket();
network_packet_create(np, size_est);
network_packet_append_int(np, MT_LOSSY_PIPE);
network_packet_append_str(np, dm[0].c_str(), dm[0].length());
network_packet_append_int(np, stoi(dm[1]));
network_packet_append_str(np, (char *)address, strlen((char*)address));
network_packet_append_int(np, port);
mm->np = np;
//MSG HASH-ID
mm->msg_hash_id = message_create_hash_id(np->data, np->size);
contact_add_message(c, mm);
packetset_loop_start_if_needed();
}
stringstream result;
result << "{\n";
result << "\t\"identity_id\": " << identity_id << ",\n";
result << "\t\"contact_id\": " << contact_id << ",\n";
if (address != nullptr) {
result << "\t\"address\": \"" << address << "\",\n";
result << "\t\"port\": " << port << ",\n";
result << "\t\"smb\": \"" << lp->smb.name << "\",\n";
free(address);
}
result << "\t\"descriptor\": \"" << dm[0] << "\",\n";
result << "\t\"mtu\": " << dm[1] << "\n";
result << "}\n";
return result.str();
}
string message_request_lossy_pipe(unsigned int identity_id, unsigned int contact_id, string pipe_descriptor, int mtu) {
struct identity* i = identity_get(identity_id);
if (i == nullptr) return "{ }";
struct contact* c = contact_get(&i->contacts, contact_id);
if (c == nullptr) return "{ }";
if (!message_check_pre(i, c)) return "{ }";
struct message_meta* mm = new struct message_meta();
mm->mt = MT_REQUEST_LOSSY_PIPE;
mm->identity_id = identity_id;
mm->contact_id = contact_id;
mm->packetset_id = UINT_MAX;
//PACKET
unsigned int size_est = 1 + pipe_descriptor.length() + sizeof(int) + 17 + 6 + 10 + 40;
struct NetworkPacket* np = new NetworkPacket();
network_packet_create(np, size_est);
network_packet_append_int(np, MT_REQUEST_LOSSY_PIPE);
network_packet_append_str(np, pipe_descriptor.c_str(), pipe_descriptor.length());
network_packet_append_int(np, mtu);
mm->np = np;
//MSG HASH-ID
mm->msg_hash_id = message_create_hash_id(np->data, np->size);
contact_add_message(c, mm);
packetset_loop_start_if_needed();
stringstream result;
result << "{\n";
result << "\t\"identity_id\": " << identity_id << ",\n";
result << "\t\"contact_id\": " << contact_id << "\n";
result << "}\n";
return result.str();
}
string message_interface(enum socket_interface_request_type sirt, vector<string>* request_path, vector<string>* request_params, char *post_content, unsigned int post_content_length, char** status_code) {
string content = "{ }";
const char* request_action = nullptr;
if (request_path->size() > 1) {
request_action = (*request_path)[1].c_str();
if (sirt == SIRT_GET) {
*status_code = (char*)HTTP_RESPONSE_404;
} else if (sirt == SIRT_POST) {
if (strstr(request_action, "send") == request_action) {
int identity_id = stoi(http_request_get_param(request_params, "identity_id"));
int contact_id = stoi(http_request_get_param(request_params, "contact_id"));
string type = http_request_get_param(request_params, "type");
if (strstr(type.c_str(), "text") != nullptr) {
string message(post_content);
message = util_trim(message, "\r\n\t ");
message_send(identity_id, contact_id, (unsigned char *)message.c_str(), message.length());
} else if (strstr(type.c_str(), "file") != nullptr) {
string filename = http_request_get_param(request_params, "filename");
message_send_file(identity_id, contact_id, filename, (unsigned char *)post_content, post_content_length);
}
*status_code = (char*)HTTP_RESPONSE_200;
} else if (strstr(request_action, "delete") == request_action) {
int identity_id = stoi(http_request_get_param(request_params, "identity_id"));
int contact_id = stoi(http_request_get_param(request_params, "contact_id"));
string hash_id = http_request_get_param(request_params, "hash_id");
string sdir = http_request_get_param(request_params, "sdir");
content = message_delete(identity_id, contact_id, hash_id, sdir);
*status_code = (char*)HTTP_RESPONSE_200;
} else if (strstr(request_action, "request_lossy_pipe") == request_action) {
int identity_id = stoi(http_request_get_param(request_params, "identity_id"));
int contact_id = stoi(http_request_get_param(request_params, "contact_id"));
string descriptor(post_content);
content = message_request_lossy_pipe(identity_id, contact_id, descriptor, 1500);
*status_code = (char*)HTTP_RESPONSE_200;
} else {
*status_code = (char*)HTTP_RESPONSE_404;
}
} else if (sirt == SIRT_OPTIONS) {
content = "Access-Control-Allow-Headers: Content-Type\n";
*status_code = (char*)HTTP_RESPONSE_200;
}
}
return content;
} | [
"mur1@mur1.de"
] | mur1@mur1.de |
f2dc865620eb2686c63a26d8a0c4c2999ad18b2b | 84875d668911475f4bbf6aa5e44a70f19e941e42 | /include/http/AsioCompat.hpp | fa9b98c7e865321b4f16a8dad924d547e9de3cb6 | [
"MIT"
] | permissive | sroycode/zapdos | 26592d95f51828f53dd104fe04fe98eb127706b0 | 8818ef109e072dcbe990914d9a2a6d70ef190d3e | refs/heads/master | 2021-06-24T06:18:54.712462 | 2020-12-07T08:06:25 | 2020-12-07T08:06:25 | 156,883,254 | 5 | 0 | MIT | 2020-08-02T09:12:57 | 2018-11-09T15:47:05 | C++ | UTF-8 | C++ | false | false | 4,437 | hpp | /**
* @project zapdos
* @file include/http/AsioCompat.hpp
* @author S Roychowdhury < sroycode at gmail dot com >
* @version 1.0.0
*
* @section LICENSE
*
* Copyright (c) 2018-2020 S Roychowdhury
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* @section DESCRIPTION
*
* AsioCompat.hpp : Asio compatibility for Web Server ( Modified from eidheim/Simple-Web-Server )
*
*/
#ifndef _ZPDS_HTTP_ASIO_COMPAT_HPP_
#define _ZPDS_HTTP_ASIO_COMPAT_HPP_
#include <memory>
#include <boost/asio.hpp>
#include <boost/asio/steady_timer.hpp>
namespace zpds {
namespace http {
namespace asio = boost::asio;
namespace error = asio::error;
using error_code = boost::system::error_code;
namespace errc = boost::system::errc;
using system_error = boost::system::system_error;
namespace make_error_code = boost::system::errc;
#if (BOOST_ASIO_VERSION >= 101300)
using io_context = asio::io_context;
using io_whatever = asio::io_context;
using resolver_results = asio::ip::tcp::resolver::results_type;
using async_connect_endpoint = asio::ip::tcp::endpoint;
template <typename handler_type>
inline void post(io_context &context, handler_type &&handler)
{
asio::post(context, std::forward<handler_type>(handler));
}
inline void restart(io_context &context) noexcept
{
context.restart();
}
inline asio::ip::address make_address(const std::string &str) noexcept
{
return asio::ip::make_address(str);
}
template <typename socket_type, typename duration_type>
std::unique_ptr<asio::steady_timer> make_steady_timer(socket_type &socket, std::chrono::duration<duration_type> duration)
{
return std::unique_ptr<asio::steady_timer>(new asio::steady_timer(socket.get_executor(), duration));
}
template <typename handler_type>
void async_resolve(asio::ip::tcp::resolver &resolver, const std::pair<std::string, std::string> &host_port, handler_type &&handler)
{
resolver.async_resolve(host_port.first, host_port.second, std::forward<handler_type>(handler));
}
inline asio::executor_work_guard<io_context::executor_type> make_work_guard(io_context &context)
{
return asio::make_work_guard(context);
}
#else
using io_context = asio::io_service;
using io_whatever = asio::io_service;
using resolver_results = asio::ip::tcp::resolver::iterator;
using async_connect_endpoint = asio::ip::tcp::resolver::iterator;
template <typename handler_type>
inline void post(io_context &context, handler_type &&handler)
{
context.post(std::forward<handler_type>(handler));
}
inline void restart(io_context &context) noexcept
{
context.reset();
}
inline asio::ip::address make_address(const std::string &str) noexcept
{
return asio::ip::address::from_string(str);
}
template <typename socket_type, typename duration_type>
std::unique_ptr<asio::steady_timer> make_steady_timer(socket_type &socket, std::chrono::duration<duration_type> duration)
{
return std::unique_ptr<asio::steady_timer>(new asio::steady_timer(socket.get_io_service(), duration));
}
template <typename handler_type>
void async_resolve(asio::ip::tcp::resolver &resolver, const std::pair<std::string, std::string> &host_port, handler_type &&handler)
{
resolver.async_resolve(asio::ip::tcp::resolver::query(host_port.first, host_port.second), std::forward<handler_type>(handler));
}
inline io_context::work make_work_guard(io_context &context)
{
return io_context::work(context);
}
#endif
} // namespace http
} // namespace zpds
#endif // _ZPDS_HTTP_ASIO_COMPAT_HPP_
| [
"sroycode@gmail.com"
] | sroycode@gmail.com |
4772d983719cf7d59039d276fbcf25cf440468cd | 12d9e3ed40f1d5706932a3e44e8a08ca185b52cf | /UVa Online Judge/UVA 12461 - Airplane.cc | 0bd9af3d72c910af7ab00003c5a28a54e9e0c19f | [] | no_license | SebastianJM/Competitive-Programming | 25f83ceb607fcc3d95fa35c5f06cb7894413b857 | 5cd9de9485ae3f882a7c85292a77e5d662fce08f | refs/heads/master | 2020-03-23T21:25:42.970408 | 2018-11-20T05:06:46 | 2018-11-20T05:06:46 | 142,105,914 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 144 | cc | #include <bits/stdc++.h>
using namespace std;
int main()
{
int n;
while(1)
{
cin>>n;
if(!n)
break;
cout<<"1/2\n";
}
return 0;
} | [
"sebastianjmdlc@gmail.com"
] | sebastianjmdlc@gmail.com |
29d27cda1d417d0f8a04f52ba66185a0374ae152 | d0fb46aecc3b69983e7f6244331a81dff42d9595 | /iot/src/model/ListDeviceDistributeJobResult.cc | 7e1c16822087a170ce977199a033603133d9540b | [
"Apache-2.0"
] | permissive | aliyun/aliyun-openapi-cpp-sdk | 3d8d051d44ad00753a429817dd03957614c0c66a | e862bd03c844bcb7ccaa90571bceaa2802c7f135 | refs/heads/master | 2023-08-29T11:54:00.525102 | 2023-08-29T03:32:48 | 2023-08-29T03:32:48 | 115,379,460 | 104 | 82 | NOASSERTION | 2023-09-14T06:13:33 | 2017-12-26T02:53:27 | C++ | UTF-8 | C++ | false | false | 4,811 | cc | /*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed 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 <alibabacloud/iot/model/ListDeviceDistributeJobResult.h>
#include <json/json.h>
using namespace AlibabaCloud::Iot;
using namespace AlibabaCloud::Iot::Model;
ListDeviceDistributeJobResult::ListDeviceDistributeJobResult() :
ServiceResult()
{}
ListDeviceDistributeJobResult::ListDeviceDistributeJobResult(const std::string &payload) :
ServiceResult()
{
parse(payload);
}
ListDeviceDistributeJobResult::~ListDeviceDistributeJobResult()
{}
void ListDeviceDistributeJobResult::parse(const std::string &payload)
{
Json::Reader reader;
Json::Value value;
reader.parse(payload, value);
setRequestId(value["RequestId"].asString());
auto dataNode = value["Data"];
if(!dataNode["Total"].isNull())
data_.total = std::stoi(dataNode["Total"].asString());
if(!dataNode["NextToken"].isNull())
data_.nextToken = dataNode["NextToken"].asString();
auto allJobInfoNode = dataNode["JobInfo"]["items"];
for (auto dataNodeJobInfoitems : allJobInfoNode)
{
Data::Items itemsObject;
if(!dataNodeJobInfoitems["GmtCreate"].isNull())
itemsObject.gmtCreate = std::stol(dataNodeJobInfoitems["GmtCreate"].asString());
if(!dataNodeJobInfoitems["SourceUid"].isNull())
itemsObject.sourceUid = dataNodeJobInfoitems["SourceUid"].asString();
if(!dataNodeJobInfoitems["TargetUid"].isNull())
itemsObject.targetUid = dataNodeJobInfoitems["TargetUid"].asString();
if(!dataNodeJobInfoitems["JobId"].isNull())
itemsObject.jobId = dataNodeJobInfoitems["JobId"].asString();
if(!dataNodeJobInfoitems["SourceInstanceId"].isNull())
itemsObject.sourceInstanceId = dataNodeJobInfoitems["SourceInstanceId"].asString();
if(!dataNodeJobInfoitems["ProductKey"].isNull())
itemsObject.productKey = dataNodeJobInfoitems["ProductKey"].asString();
if(!dataNodeJobInfoitems["Total"].isNull())
itemsObject.total = std::stoi(dataNodeJobInfoitems["Total"].asString());
if(!dataNodeJobInfoitems["Status"].isNull())
itemsObject.status = std::stoi(dataNodeJobInfoitems["Status"].asString());
if(!dataNodeJobInfoitems["Strategy"].isNull())
itemsObject.strategy = std::stoi(dataNodeJobInfoitems["Strategy"].asString());
if(!dataNodeJobInfoitems["SourceRegion"].isNull())
itemsObject.sourceRegion = dataNodeJobInfoitems["SourceRegion"].asString();
if(!dataNodeJobInfoitems["SourceInstanceName"].isNull())
itemsObject.sourceInstanceName = dataNodeJobInfoitems["SourceInstanceName"].asString();
auto allTargetInstanceConfigsNode = dataNodeJobInfoitems["TargetInstanceConfigs"]["targetInstanceConfigsItem"];
for (auto dataNodeJobInfoitemsTargetInstanceConfigstargetInstanceConfigsItem : allTargetInstanceConfigsNode)
{
Data::Items::TargetInstanceConfigsItem targetInstanceConfigsObject;
if(!dataNodeJobInfoitemsTargetInstanceConfigstargetInstanceConfigsItem["TargetInstanceId"].isNull())
targetInstanceConfigsObject.targetInstanceId = dataNodeJobInfoitemsTargetInstanceConfigstargetInstanceConfigsItem["TargetInstanceId"].asString();
if(!dataNodeJobInfoitemsTargetInstanceConfigstargetInstanceConfigsItem["TargetRegion"].isNull())
targetInstanceConfigsObject.targetRegion = dataNodeJobInfoitemsTargetInstanceConfigstargetInstanceConfigsItem["TargetRegion"].asString();
if(!dataNodeJobInfoitemsTargetInstanceConfigstargetInstanceConfigsItem["TargetInstanceName"].isNull())
targetInstanceConfigsObject.targetInstanceName = dataNodeJobInfoitemsTargetInstanceConfigstargetInstanceConfigsItem["TargetInstanceName"].asString();
itemsObject.targetInstanceConfigs.push_back(targetInstanceConfigsObject);
}
data_.jobInfo.push_back(itemsObject);
}
if(!value["Success"].isNull())
success_ = value["Success"].asString() == "true";
if(!value["Code"].isNull())
code_ = value["Code"].asString();
if(!value["ErrorMessage"].isNull())
errorMessage_ = value["ErrorMessage"].asString();
}
ListDeviceDistributeJobResult::Data ListDeviceDistributeJobResult::getData()const
{
return data_;
}
std::string ListDeviceDistributeJobResult::getErrorMessage()const
{
return errorMessage_;
}
std::string ListDeviceDistributeJobResult::getCode()const
{
return code_;
}
bool ListDeviceDistributeJobResult::getSuccess()const
{
return success_;
}
| [
"sdk-team@alibabacloud.com"
] | sdk-team@alibabacloud.com |
27f68b43ad48afef5d697572fa6ac01c05079bd2 | ee53b0262007b2f0db0fe15b2ad85f65fafa4e25 | /Leetcode/173. Binary Search Tree Iterator.cpp | 93177a61e5bbccf017592b5b9fb35b619eb52047 | [] | no_license | xiaohuanlin/Algorithms | bd48caacb08295fc5756acdac609be78e143a760 | 157cbaeeff74130e5105e58a6b4cdf66403a8a6f | refs/heads/master | 2023-08-09T05:18:06.221485 | 2023-08-08T11:53:15 | 2023-08-08T11:53:15 | 131,491,056 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,223 | cpp | #include <unordered_set>
#include <unordered_map>
#include <math.h>
#include <utility>
#include <stack>
#include <algorithm>
#include <set>
#include <map>
#include <vector>
#include <iostream>
using namespace std;
// Implement an iterator over a binary search tree (BST). Your iterator will be initialized with the root node of a BST.
// Calling next() will return the next smallest number in the BST.
// Example:
// BSTIterator iterator = new BSTIterator(root);
// iterator.next(); // return 3
// iterator.next(); // return 7
// iterator.hasNext(); // return true
// iterator.next(); // return 9
// iterator.hasNext(); // return true
// iterator.next(); // return 15
// iterator.hasNext(); // return true
// iterator.next(); // return 20
// iterator.hasNext(); // return false
// Note:
// next() and hasNext() should run in average O(1) time and uses O(h) memory, where h is the height of the tree.
// You may assume that next() call will always be valid, that is, there will be at least a next smallest number in the BST when next() is called.
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode() : val(0), left(nullptr), right(nullptr) {}
TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
};
class BSTIterator {
private:
stack<TreeNode*> candidates;
public:
BSTIterator(TreeNode* root) {
while (root) {
candidates.push(root);
root = root->left;
}
}
/** @return the next smallest number */
int next() {
auto item = candidates.top();
candidates.pop();
TreeNode* iter = item->right;
while (iter) {
candidates.push(iter);
iter = iter->left;
}
return item->val;
}
/** @return whether we have a next smallest number */
bool hasNext() {
return !candidates.empty();
}
};
/**
* Your BSTIterator object will be instantiated and called as such:
* BSTIterator* obj = new BSTIterator(root);
* int param_1 = obj->next();
* bool param_2 = obj->hasNext();
*/
int main() {
} | [
"xiaohuanlin1993@gmail.com"
] | xiaohuanlin1993@gmail.com |
dabb5b934c5940052df6a7f09ac8a07319ac72d3 | f354ee8c97b6a1d86efb3a4a7ec7078f379ab7c7 | /lib/SPI/SPI.h | 0f214179860c429fd95ae280668b3fbdf5508e49 | [] | no_license | vankxr/avr-multiboot | d78579730d2135e0b396eef5588e21e4e7338816 | 9b48e18fd8bd453a63d02d50d1ad7083a2476a5a | refs/heads/master | 2021-04-15T15:34:44.210801 | 2019-03-10T17:04:58 | 2019-03-10T17:04:58 | 126,638,427 | 0 | 0 | null | null | null | null | ISO-8859-13 | C++ | false | false | 823 | h | /*
* SPI.h
*
* Created: 09/12/2017 16:55:37
* Author : Joćo Silva
*/
#ifndef SPI_H_
#define SPI_H_
#include <avr/io.h>
#include <stdint.h>
namespace SPI
{
extern void Init(uint8_t ubLSBFirst = 0, uint8_t ubMode = 0, uint8_t ubPrescaler = 0, uint8_t ubDoubleSpeed = 1);
extern uint8_t TransferByte(uint8_t ubData = 0x00);
inline void Transfer(uint8_t* pubSrc, uint16_t usCount, uint8_t* pubDest = 0)
{
if(pubSrc)
{
for(uint16_t i = 0; i < usCount; i++)
{
if(pubDest)
*(pubDest + i) = TransferByte(*(pubSrc + i));
else
TransferByte(*(pubSrc + i));
}
}
else if(pubDest)
{
for(uint16_t i = 0; i < usCount; i++)
*(pubDest + i) = TransferByte();
}
}
inline void Read(uint8_t* pubDest, uint16_t usCount)
{
Transfer(0, usCount, pubDest);
}
}
#endif /* SPI_H_ */ | [
"jgc3silva@gmail.com"
] | jgc3silva@gmail.com |
7efdadd3f3f7c8b841904b6b943a3aefc5cde3f9 | f275719aead1a8d5e0898ed9ff3b88d96b03d5ce | /find array.cpp | f894daac0209682e09038d57c775b01d6cba0c76 | [] | no_license | sushmanthreddy/A20J-LADDERS-1300 | bbcc0d792d366f486ee0452943462796599548d5 | 37989428befcd2e1fddc69001a2979a9dad2aab0 | refs/heads/main | 2023-08-25T18:42:44.544198 | 2021-10-07T09:17:50 | 2021-10-07T09:17:50 | 363,836,097 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 293 | cpp | #include<bits/stdc++.h>
using namespace std;
int main(){
int t;
cin>>t;
for(int i=0;i<t;i++)
{
int n;
cin>>n;
int x=1;
long long sum = 0;
int c=0;
while(sum<n )
{
sum += x;
x += 2;
c++;
}
cout<<c<<"\n";
}
} | [
"amenu4ece20134@am.students.amrita.edu"
] | amenu4ece20134@am.students.amrita.edu |
eb40edd4f0bc21a3001339e1367cf9b5d7e19fc0 | 827e40cc066fbb72d4b86b396b38028863686df5 | /chrome/browser/ui/webui/settings/chromeos/bluetooth_handler.cc | 0e948c162377cb7c1908e6f1e778003b30282b96 | [
"BSD-3-Clause"
] | permissive | Sunder-AK/chromium | b06dd0aaa575d0e246156bcba7c3f3aafb69f863 | 0e4ccd1012f3ee3e9e2f2b1897c717ab7a2bc097 | refs/heads/main | 2023-06-26T06:20:22.364094 | 2021-08-19T16:41:02 | 2021-08-19T16:41:02 | 398,025,627 | 1 | 0 | BSD-3-Clause | 2021-08-19T17:36:05 | 2021-08-19T17:36:05 | null | UTF-8 | C++ | false | false | 2,244 | cc | // 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.
#include "chrome/browser/ui/webui/settings/chromeos/bluetooth_handler.h"
#include "base/bind.h"
#include "base/values.h"
#include "chromeos/network/network_event_log.h"
#include "content/public/browser/web_ui.h"
#include "device/bluetooth/bluetooth_adapter_factory.h"
namespace chromeos {
namespace {
const char kIsDeviceBlockedByPolicy[] = "isDeviceBlockedByPolicy";
} // namespace
namespace settings {
BluetoothHandler::BluetoothHandler() {
device::BluetoothAdapterFactory::Get()->GetAdapter(
base::BindOnce(&BluetoothHandler::BluetoothDeviceAdapterReady,
weak_ptr_factory_.GetWeakPtr()));
}
BluetoothHandler::~BluetoothHandler() {}
void BluetoothHandler::RegisterMessages() {
web_ui()->RegisterMessageCallback(
kIsDeviceBlockedByPolicy,
base::BindRepeating(&BluetoothHandler::HandleIsDeviceBlockedByPolicy,
base::Unretained(this)));
}
void BluetoothHandler::OnJavascriptAllowed() {}
void BluetoothHandler::OnJavascriptDisallowed() {}
void BluetoothHandler::BluetoothDeviceAdapterReady(
scoped_refptr<device::BluetoothAdapter> adapter) {
DCHECK(adapter);
bluetooth_adapter_ = std::move(adapter);
}
void BluetoothHandler::HandleIsDeviceBlockedByPolicy(
const base::ListValue* args) {
AllowJavascript();
std::string callback_id;
std::string address;
CHECK_EQ(2U, args->GetSize());
CHECK(args->GetString(0, &callback_id));
CHECK(args->GetString(1, &address));
if (!bluetooth_adapter_) {
BLUETOOTH_LOG(EVENT) << "Bluetooth adapter not available.";
ResolveJavascriptCallback(base::Value(callback_id), base::Value(false));
return;
}
device::BluetoothDevice* device = bluetooth_adapter_->GetDevice(address);
if (!device) {
BLUETOOTH_LOG(EVENT) << "No device found for address.";
ResolveJavascriptCallback(base::Value(callback_id), base::Value(false));
return;
}
ResolveJavascriptCallback(base::Value(callback_id),
base::Value(device->IsBlockedByPolicy()));
}
} // namespace settings
} // namespace chromeos
| [
"chromium-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | chromium-scoped@luci-project-accounts.iam.gserviceaccount.com |
9b6cc0676b0ce9ee30e668de29d22f555ffef6c1 | b295490184933515900c8f8552aba675a1f3f53f | /assets/scripts/ui/inventory.cpp | dd811d7e99407a542e2b276a862a51c8b340cc94 | [
"Apache-2.0"
] | permissive | NikiNatov/Minecraft_DX11 | 193680023e717c314695055f69e76152f7b5ee21 | beda41d7aa655843157d486898bafac0ecfbcba6 | refs/heads/main | 2023-06-02T08:19:35.815072 | 2021-06-25T11:31:19 | 2021-06-25T11:31:19 | 374,718,129 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,219 | cpp | #include "inventory.h"
// --------------------------------------------------------------------------------------------------------------------------------------
Inventory::Inventory(Ref<Texture2D> blockIconSpriteSheet, Ref<Texture2D> slotBackgroundTexture)
: m_BlockIconsSpritesheet(blockIconSpriteSheet)
{
// Initialize slots
for (mtrInt i = 0 ; i < BlockData::BlockTypes.size() - 1; i++)
{
mtrInt x = i % 16;
mtrInt y = i / 16;
m_Slots[y][x] = ItemSlot((BlockType)i, m_BlockIconsSpritesheet, slotBackgroundTexture);
}
}
// --------------------------------------------------------------------------------------------------------------------------------------
void Inventory::Toggle()
{
m_Open = !m_Open;
}
// --------------------------------------------------------------------------------------------------------------------------------------
void Inventory::OnImGuiRender()
{
if (m_Open)
{
ImGuiViewport* viewport = ImGui::GetMainViewport();
ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(0.0f, 0.0f));
ImGui::SetNextWindowPos({ viewport->GetWorkPos().x + viewport->GetWorkSize().x / 2.0f - 260, viewport->GetWorkPos().y + viewport->GetWorkSize().y / 2.0f - 200 });
ImGui::SetNextWindowSize({ 520, 400 });
ImGui::PushStyleVar(ImGuiStyleVar_WindowPadding, { 10, 10 });
ImGui::Begin("Inventory", &m_Open, ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoCollapse);
for (mtrU32 i = 0; i < 16; i++)
{
for (mtrU32 j = 0; j < 16; j++)
{
const Item* itemData = m_Slots[i][j].GetItem();
// Render each slot
ImGui::Image(m_BlockIconsSpritesheet->GetTextureHandle(), ImVec2{ 32.0f, 32.0f }, itemData->BlockIconUVs[0], itemData->BlockIconUVs[1]);
// Handle drag-and-drop. This element can only send data.
if (ImGui::BeginDragDropSource(ImGuiDragDropFlags_SourceAllowNullID))
{
ImGui::SetDragDropPayload("ItemSlot", itemData, sizeof(Item));
ImGui::Image(m_BlockIconsSpritesheet->GetTextureHandle(), ImVec2{ 50.0f, 50.0f }, itemData->BlockIconUVs[0], itemData->BlockIconUVs[1]);
ImGui::EndDragDropSource();
}
ImGui::SameLine(0, 0);
}
ImGui::NewLine();
}
ImGui::End();
ImGui::PopStyleVar();
ImGui::PopStyleVar();
}
}
| [
"nikinatov0046@gmail.com"
] | nikinatov0046@gmail.com |
95685c57e9fa0a76b5e3b62033357b4b46a497c2 | 5ef7887a7aefbbf536047c59052f99d9039590e3 | /src/components/utils/include/utils/threads/pulse_thread_delegate.h | 207b64caaf555f463347692d36f10e70e9aca1fb | [] | no_license | smartdevice475/sdl_core_v4.0_winceport | 8b2ce9118635bf33700f71c5a87ceed668db1b7f | 1cdc30551eb58b0e1e3b4de8c0a0c66f975cf534 | refs/heads/master | 2021-01-24T20:52:42.830355 | 2016-11-29T06:22:16 | 2016-11-29T06:22:16 | 73,656,016 | 1 | 2 | null | 2016-11-14T01:37:46 | 2016-11-14T01:37:46 | null | UTF-8 | C++ | false | false | 3,443 | h | /*
* Copyright (c) 2014, Ford Motor Company
* 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 the Ford Motor Company 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 HOLDER 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.
*/
#ifndef SRC_COMPONENTS_UTILS_INCLUDE_UTILS_THREADS_PULSE_THREAD_DELEGATE_H_
#define SRC_COMPONENTS_UTILS_INCLUDE_UTILS_THREADS_PULSE_THREAD_DELEGATE_H_
#include <sys/neutrino.h>
#include "utils/threads/thread_delegate.h"
namespace threads {
/**
* @brief This ThreadDelegate derivative is designed
* to implement threads waiting for QNX Pulse messages
* When constucted, an instance of this class creates QNX channel and connects to it
* In exitThreadMain() channel is disconnected and destroyed
* In threadMain() endless loop event is armed via pure virtual method ArmEvent()
* and thread blocks on MsgReceivePulse() waiting for Pulse
* When Pulse comes, OnPulse() pure virtual method is invoked
* Subclassed must implement ArmEvent() for events of interest
* and OnPulse() for reaction on such events
*/
class PulseThreadDelegate : public ThreadDelegate {
public:
/**
* @brief default constructor
*/
PulseThreadDelegate();
virtual void threadMain();
virtual void exitThreadMain();
protected:
/**
* @brief This method is to be implemented to arm events of interest
* @param event pointer to structure sigevent
* @return If this method returns true, thread is blocked on MsgReceivePulse() waiting for Pulse
*/
virtual bool ArmEvent(struct sigevent* event) = 0;
/**
* @brief This method is invoked from threadMain() when Pulse comes
*/
virtual void OnPulse() = 0;
/**
* This method is to be initialize child class
* @return If this method returns false, thread will be stopped
*/
virtual bool Init() { return true; }
/**
* Finalizes thread
* Can free resources
*/
virtual void Finalize() {}
private:
enum {PULSE_CODE = _PULSE_CODE_MINAVAIL + 1};
volatile bool run_;
int chid_;
int coid_;
};
} // namespace threads
#endif // SRC_COMPONENTS_UTILS_INCLUDE_UTILS_THREADS_PULSE_THREAD_DELEGATE_H_
| [
"lovinghesl@hotmail.com"
] | lovinghesl@hotmail.com |
717b6481b7d7e2915c7b5e6bdbaef82ed271737c | 1e58f86db88d590ce63110c885c52305d67f8136 | /GlobalData/configtreeobject_DataSave.cpp | 87334c7c412edd0c7fe0f106d60843c9bdc26fe3 | [] | no_license | urielyan/F270 | 32a9b87780b6b0bbbd8e072ca4305cd38dc975c1 | c3d1eceead895ded12166eeb6748df111f46ef2d | refs/heads/master | 2021-01-10T02:06:40.335370 | 2016-03-02T03:23:02 | 2016-03-02T03:23:02 | 52,927,128 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 5,052 | cpp | #include "configtreeobject_DataSave.h"
#include "cfgchannel.h"
#include "./GlobalData/globalDef.h"
#include "cfgGlobalDef.h"
#include "configtreeobject.h"
ConfigTreeObject_DataSave *ConfigTreeObject_DataSave::instance(QObject *parent)
{
static ConfigTreeObject_DataSave data(parent);
return &data;
}
ConfigTreeObject_DataSave::ConfigTreeObject_DataSave(QObject *parent):
ConfigObject(parent)
{
//Datasave settings代理树
QFile fileDelegate(":/configtree/Image/configTree/DataSave/Data_SettingDelegate/delegate.xml");
if(!fileDelegate.open(QFile::ReadOnly | QFile::Text)){
qWarning()<< "Can't open the file: Datasave_settingDelegate!";
}else{
XmlConfigParser::parseConfigXml(fileDelegate, static_cast<ConfigObject*>(parent), \
(QObject*)this);
fileDelegate.close();
}
}
void ConfigTreeObject_DataSave::updateStrShowOn()
{
slotDatasaveDirectNameChanged();
slotDatasaveHeaderCharChanged();
slotDatasaveFileStructChanged();
slotDatasaveFileIdentyChanged();
slotDatasaveMediaAutoChanged();
slotDatasaveMediaFIFOChanged();
slotDatasaveFormatDataChanged();
}
void ConfigTreeObject_DataSave::slotCreateDatasavesettingTree(QObject *parent)
{
//Datasave settings配置树
QFile file(":/configtree/Image/configTree/DataSave/Data_Setting/config.xml");
if(!file.open(QFile::ReadOnly | QFile::Text)){
qWarning()<< "Can't open the file: Datasave_setting!";
}else{
XmlConfigParser::parseConfigXml(file, static_cast<ConfigObject*>(parent));
file.close();
}
}
void ConfigTreeObject_DataSave::slotDataDelegateChange()
{
QFile delegateChange(":/configtree/Image/configTree/DataSave/Data_DelegateChange/delegateChange.xml");
if(!delegateChange.open(QFile::ReadOnly | QFile::Text)){
qWarning()<< "Can't open the file: Datasave_DelegateChange!";
}else{
XmlConfigParser::parseDelegateChangeXml(delegateChange);
delegateChange.close();
}
_curStatus = false;
updateStrShowOn();
_curStatus = true;
}
void ConfigTreeObject_DataSave::slotDatasaveDirectNameChanged()
{
QVariant value = ConfigTreeObject::getConfigObject(DATASAVE_DELEGATE_DIR_NAME)->getData();
QFile file(XML_DATASAVE_DIR_NAME);
if(!file.open(QFile::ReadOnly | QFile::Text)){
qWarning()<< "Can't open the file:DataDir_name!";
}else{
XmlConfigParser::parseValueChangeXml(file, value);
file.close();
}
}
void ConfigTreeObject_DataSave::slotDatasaveHeaderCharChanged()
{
QVariant value = ConfigTreeObject::getConfigObject(DATASAVE_DELEGATE_HEADER_CHAR)->getData();
QFile file(XML_DATASAVE_HEADER_CHAR);
if(!file.open(QFile::ReadOnly | QFile::Text)){
qWarning()<< "Can't open the file:DataHeader_char!";
}else{
XmlConfigParser::parseValueChangeXml(file, value);
file.close();
}
}
void ConfigTreeObject_DataSave::slotDatasaveFileStructChanged()
{
QVariant value = ConfigTreeObject::getConfigObject(DATASAVE_DELEGATE_FILENAME_STR)->getData();
QFile file(XML_DATASAVE_FILENAME_STR);
if(!file.open(QFile::ReadOnly | QFile::Text)){
qWarning()<< "Can't open the file:DataFilename_Str!";
}else{
XmlConfigParser::parseValueChangeXml(file, value);
file.close();
}
}
void ConfigTreeObject_DataSave::slotDatasaveFileIdentyChanged()
{
QVariant value = ConfigTreeObject::getConfigObject(DATASAVE_DELEGATE_FILENAME_ID)->getData();
QFile file(XML_DATASAVE_FILENAME_ID);
if(!file.open(QFile::ReadOnly | QFile::Text)){
qWarning()<< "Can't open the file:DataFilename_Identy!";
}else{
XmlConfigParser::parseValueChangeXml(file, value);
file.close();
}
}
void ConfigTreeObject_DataSave::slotDatasaveMediaAutoChanged()
{
QVariant value = ConfigTreeObject::getConfigObject(DATASAVE_DELEGATE_MEDIA_AUTO)->getData();
QFile file(XML_DATASAVE_MEDIA_AUTO);
if(!file.open(QFile::ReadOnly | QFile::Text)){
qWarning()<< "Can't open the file:DataMedia_Auto!";
}else{
XmlConfigParser::parseValueChangeXml(file, value);
file.close();
}
}
void ConfigTreeObject_DataSave::slotDatasaveMediaFIFOChanged()
{
QVariant value = ConfigTreeObject::getConfigObject(DATASAVE_DELEGATE_MEDIA_FIFO)->getData();
QFile file(XML_DATASAVE_MEDIA_FIFO);
if(!file.open(QFile::ReadOnly | QFile::Text)){
qWarning()<< "Can't open the file:DataMedia_FIFO!";
}else{
XmlConfigParser::parseValueChangeXml(file, value);
file.close();
}
}
void ConfigTreeObject_DataSave::slotDatasaveFormatDataChanged()
{
QVariant value = ConfigTreeObject::getConfigObject(DATASAVE_DELEGATE_FORMAT_DATA)->getData();
QFile file(XML_DATASAVE_FORMAT_DATA);
if(!file.open(QFile::ReadOnly | QFile::Text)){
qWarning()<< "Can't open the file:DataFormat_data!";
}else{
XmlConfigParser::parseValueChangeXml(file, value);
file.close();
}
}
| [
"urielyan@sina.com"
] | urielyan@sina.com |
8e844b88247a280d3638c9d694de2deaa864be6a | 641ed3bf03a2088132e8ff365132f1ea486902fa | /ses/nearestSmallerValue.cpp | c8d420b0e4c6bcc684c76990fe5927dea1d3f402 | [] | no_license | OperDoc/Problems | 765dacd3562afe61adb3f319668cb84c2d7600d0 | 1ad2b8cdb06aae0dfa8f332757b31576cdbe88ef | refs/heads/master | 2020-04-14T23:42:35.104476 | 2019-07-24T07:00:01 | 2019-07-24T07:00:01 | 164,212,674 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 812 | cpp | #include <bits/stdc++.h>
using namespace std;
#define cL 2 * i + 1
#define cR 2 * i + 2
#define M (l + r) / 2
int t[800010], arr[200010], n;
int build(int i = 0, int l = 0, int r = n) {
return r - l == 1 ? t[i] = arr[l] : t[i] = min(build(cL, l, M), build(cR, M, r));
}
int Min(int al, int ar, int i = 0, int l = 0, int r = n) {
if(ar <= l or r <= al) return 1e9 + 7;
if(al <= l and r <= ar) return t[i];
return min(Min(al, ar, cL, l, M), Min(al, ar, cR, M, r));
}
int main() {
cin >> n; n++;
arr[0] = -1e9 - 6;
for(int i = 1; i < n; i++)
cin >> arr[i];
build();
for(int i = 1; i < n; i++) {
int l = 0, r = i;
while(r - l > 1) {
//cout << M << ' ' << i << ' ' << Min(M, i) << ' ';
if(Min(M, i) < arr[i]) l = M;
else r = M;
}
cout << l << ' ';
}
}
| [
"s.lit@outlook.com"
] | s.lit@outlook.com |
f97c289f3ee21fa2c2beb1ee599565974ec13724 | 2b0cbbe5843d78eb4b11151d05a1803ea29088ad | /UVa Online Judge/volume017/1749 Airport Construction/program.cpp | 5fc06ff633145f63d82daa5ada121d1306dfd238 | [] | no_license | kufan/Code | d3a25d29b3493c1fc4862b204909d07a9da10fdf | a05b48fd0e0164f73fb647e9a4a5fff57e22e500 | refs/heads/master | 2023-05-12T23:55:37.127537 | 2021-06-01T03:37:33 | 2021-06-01T03:37:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,346 | cpp | // Airport Construction
// UVa ID: 1749
// Verdict: Wrong Answer
// Submission Date: 2020-07-01
// UVa Run Time: s
//
// 版权所有(C)2020,邱秋。metaphysis # yeah dot net
#include <bits/stdc++.h>
using namespace std;
const double EPSILON = 1e-6;
struct point
{
double x, y;
point (double x = 0, double y = 0): x(x), y(y) {}
point operator + (point p) { return point(x + p.x, y + p.y); };
point operator - (point p) { return point(x - p.x, y - p.y); };
point operator * (double k) { return point(x * k, y * k); };
point operator / (double k) { return point(x / k, y / k); };
bool operator<(const point &p) const
{
if (fabs(x - p.x) > EPSILON) return x < p.x;
return y < p.y;
}
bool operator==(const point &p) const
{
return fabs(x - p.x) <= EPSILON && fabs(y - p.y) <= EPSILON;
}
double distTo(const point &p)
{
return sqrt(pow(x - p.x, 2) + pow(y - p.y, 2));
}
};
typedef vector<point> polygon;
int n;
polygon pg;
double cross(point a, point b) { return a.x * b.y - a.y * b.x; }
double cp(point a, point b, point c)
{
return cross(b - a, c - a);
}
bool cw(point a, point b, point c)
{
return cp(a, b, c) < -EPSILON;
}
bool ccw(point a, point b, point c)
{
return cp(a, b, c) > EPSILON;
}
bool collinear(point a, point b, point c)
{
return fabs(cp(a, b, c)) < EPSILON;
}
bool cwOrCollinear(point a, point b, point c)
{
return cw(a, b, c) || collinear(a, b, c);
}
bool ccwOrCollinear(point a, point b, point c)
{
return ccw(a, b, c) || collinear(a, b, c);
}
bool pointInBox(point a, point b, point p)
{
double minx = min(a.x, b.x), maxx = max(a.x, b.x);
double miny = min(a.y, b.y), maxy = max(a.y, b.y);
return p.x >= minx && p.x <= maxx && p.y >= miny && p.y <= maxy;
}
struct segment
{
point p1, p2;
bool contains(const point &p) { return pointInBox(p1, p2, p); }
};
struct line
{
double a, b, c;
line (double a = 0, double b = 0, double c = 0): a(a), b(b), c(c) {}
};
line getLine(double x1, double y1, double x2, double y2)
{
return line(y2 - y1, x1 - x2, y1 * (x2 - x1) - x1 * (y2 - y1));
}
line getLine(point p, point q)
{
return getLine(p.x, p.y, q.x, q.y);
}
point getIntersection(line p, line q)
{
point pi;
pi.x = (p.b * q.c - p.c * q.b) / (p.a * q.b - p.b * q.a);
pi.y = (p.a * q.c - p.c * q.a) / (p.b * q.a - p.a * q.b);
return pi;
}
// 检测从点i到点j的连线是否被其他线段所阻挡。
bool isBlocked(int i, int j)
{
if (j == i + 1) return false;
for (int k1 = 0, k2 = 1; k1 < n; k1++, k2++)
{
if (k2 >= n) k2 %= n;
double cp1 = cp(pg[i], pg[j], pg[k1]);
double cp2 = cp(pg[i], pg[j], pg[k2]);
if (cp1 * cp2 < EPSILON)
{
point p1 = getIntersection(getLine(pg[i], pg[j]), getLine(pg[k1], pg[k2]));
if (pointInBox(pg[i], pg[j], p1))
return true;
}
}
return false;
}
// 检查与线段ij两端相交的线段,获得的端点即为跑道的最长的长度。
double getDist(int i, int j)
{
// 从i到j的方向与简单多边形的交点。
point p1 = pg[j], p2 = pg[i];
for (int k = j + 1; k < n; k++)
if (ccw(pg[i], pg[j], pg[k]))
{
p1 = getIntersection(getLine(pg[i], pg[j]), getLine(pg[k - 1], pg[k]));
break;
}
// 从j到i的方向与简单多边形的交点。
for (int k = i - 1; k >= 0; k--)
if (ccw(pg[i], pg[j], pg[k]))
{
p2 = getIntersection(getLine(pg[i], pg[j]), getLine(pg[k], pg[k + 1]));
break;
}
return p1.distTo(p2);
}
int main(int argc, char *argv[])
{
cin.tie(0), cout.tie(0), ios::sync_with_stdio(false);
double x1, y1;
while (cin >> n)
{
pg.clear();
for (int i = 0; i < n; i++)
{
cin >> x1 >> y1;
pg.push_back(point{x1, y1});
}
double longest = 0.0;
for (int i = 0; i < n; i++)
for (int j = i + 1; j < n; j++)
{
if (fabs(pg[i].distTo(pg[j]) - longest) < EPSILON) continue;
if (isBlocked(i, j)) continue;
longest = max(longest, getDist(i, j));
}
cout << fixed << setprecision(9) << longest << '\n';
}
return 0;
}
| [
"metaphysis@yeah.net"
] | metaphysis@yeah.net |
60e2105ef97e4dc53203916e903181e80e66c014 | 6da5140e9595582c2ab10f3a7def25115912973c | /5/03.shell/Demo.02/RTDemoView.cpp | cebf42d353c3bbf557b03eb388fd53c28bdd7d7f | [] | no_license | s1040486/xiaohui | 6df6064bb0d1e858429375b45418e4f2d234d1a3 | 233b6dfbda130d021b8d91ae6a3736ecc0f9f936 | refs/heads/master | 2022-01-12T07:10:57.181009 | 2019-06-01T04:02:16 | 2019-06-01T04:02:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,921 | cpp | // RTDemoView.cpp : implementation of the CRTDemoView class
//
#include "stdafx.h"
#include "RTDemo.h"
#include "RTDemoDoc.h"
#include "RTDemoView.h"
#include "RTForm.h"
#include "TimerSpeed.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
#define SliderTickID 12001
/////////////////////////////////////////////////////////////////////////////
// CRTDemoView
IMPLEMENT_DYNCREATE(CRTDemoView, CView)
BEGIN_MESSAGE_MAP(CRTDemoView, CView)
ON_WM_CONTEXTMENU()
//{{AFX_MSG_MAP(CRTDemoView)
ON_WM_ERASEBKGND()
ON_WM_TIMER()
ON_WM_DESTROY()
ON_WM_SIZE()
ON_COMMAND(ID_SPEED_TIMERSPEED, OnSpeedTimerspeed)
ON_UPDATE_COMMAND_UI(ID_SPEED_TIMERSPEED, OnUpdateSpeedTimerspeed)
//}}AFX_MSG_MAP
// Standard printing commands
ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CRTDemoView construction/destruction
CRTDemoView::CRTDemoView()
{
SpeedLevel = 6; //9; //3; //4; //6;
CyclesPerSec = 1000.0 / m_Graph.m_SpeedLevel[SpeedLevel];
MillSeconds = m_Graph.m_SpeedLevel[SpeedLevel];
m_bRealTime = TRUE; //FALSE;
if (!m_bRealTime)
CyclesPerSec = 1;
m_nStartTime = 0;
mSec = m_nStartTime;
m_nTimeSpan = 30; //10; //60; //30;
m_sTicks = (int)(0.5 + m_nTimeSpan * CyclesPerSec);
MaxSeconds = 60; //240; //120;
CanTicks = TRUE;
m_bCanSize = TRUE; //FALSE;
m_bFlag = TRUE; //FALSE; //TRUE;
m_nTicks = 0;
Rn.init_random();
m_Graph.SetXNumOfTicks(60);
//m_Graph.EnableLegend(FALSE);
}
CRTDemoView::~CRTDemoView()
{
}
BOOL CRTDemoView::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
return CView::PreCreateWindow(cs);
}
void CRTDemoView::DrawFrame(CRect& rect, COLORREF cr, const char* Title)
{
CRTDemoDoc* pDoc = GetDocument();
m_Graph.RecalcRects(rect);
if (pDoc->m_bBoundary)
m_Graph.DrawBoundary(cr, 2);
if (pDoc->m_bTitle)
{
m_Graph.XAxisTitle("Time");
m_Graph.YAxisTitle("Put Y Axis string here");
//m_Graph.Title(Title);
}
m_Graph.Axes();
if (pDoc->m_bGrid)
m_Graph.Grid();
}
/////////////////////////////////////////////////////////////////////////////
// CRTDemoView drawing
void CRTDemoView::OnDraw(CDC* pDC)
{
CRTDemoDoc* pDoc = GetDocument();
ASSERT_VALID(pDoc);
if (m_Graph.m_bSetingFailed)
return;
CRect rect;
if (pDC->IsPrinting())
{
rect.left = rect.top = 0;
rect.right = pDC->GetDeviceCaps(HORZRES);
rect.bottom = pDC->GetDeviceCaps(VERTRES);
m_Graph.SetPrintScale(pDC->m_hDC, rect);
}
else
GetClientRect(rect);
m_Graph.BeginDraw(pDC->m_hDC);
DrawFrame(rect, RGB(255, 0, 0), "");
m_Graph.DrawRealTimeLines();
m_Graph.SetBackColor(pDoc->m_nBkColor);
m_Graph.EndDraw(pDC->m_hDC);
}
/////////////////////////////////////////////////////////////////////////////
// CRTDemoView printing
BOOL CRTDemoView::OnPreparePrinting(CPrintInfo* pInfo)
{
// default preparation
return DoPreparePrinting(pInfo);
}
void CRTDemoView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
// TODO: add extra initialization before printing
}
void CRTDemoView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
// TODO: add cleanup after printing
}
/////////////////////////////////////////////////////////////////////////////
// CRTDemoView diagnostics
#ifdef _DEBUG
void CRTDemoView::AssertValid() const
{
CView::AssertValid();
}
void CRTDemoView::Dump(CDumpContext& dc) const
{
CView::Dump(dc);
}
CRTDemoDoc* CRTDemoView::GetDocument() // non-debug version is inline
{
ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CRTDemoDoc)));
return (CRTDemoDoc*)m_pDocument;
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CRTDemoView message handlers
void CRTDemoView::OnInitialUpdate()
{
CView::OnInitialUpdate();
CRTDemoDoc* pDoc = GetDocument();
pDoc->pView = this;
if (!m_Graph.SetRange(0, 0, 100, 100))
{
m_Graph.m_bSetingFailed = true;
MessageBox("Setting Range failed");
return;
}
m_Graph.EnableMemoryDraw(pDoc->m_bMemDraw);
m_Graph.SetBackColor(pDoc->m_nBkColor);
if (!m_Graph.InitialSetting(CyclesPerSec, m_nStartTime, m_nTimeSpan, MaxSeconds, 6))
{
m_Graph.m_bSetingFailed = true;
return;
}
m_Graph.m_bSetingFailed = false;
RECT rect;
GetClientRect(&rect);
m_Graph.RecalcRects(rect);
m_Graph.AddALine(RGB(255, 0, 0), 10, 20, "Name 1");
m_Graph.AddALine(RGB( 0, 255, 0), 20, 30, "Name 2");
m_Graph.AddALine(RGB( 0, 0, 255), 30, 40, "Name 3");
m_Graph.AddALine(RGB(255, 0, 255), 40, 50, "Name 4");
m_Graph.AddALine(RGB(255, 255, 0), 50, 60, "Name 5");
m_Graph.AddALine(RGB( 0, 255, 255), 60, 70, "Name 6");
m_Graph.AddALine(RGB(128, 128, 128), 70, 80, "Name 7");
m_Graph.AddALine(RGB( 0, 0, 128), 80, 90, "Name 8");
//m_bCanSize = TRUE;
m_SliderTick.Create(WS_CHILD | WS_VISIBLE | TBS_AUTOTICKS,
m_Graph.TickBarSize(), this, SliderTickID);
m_SliderTick.SetRange(0, m_sTicks, TRUE);
m_SliderTick.SetPageSize(10);
m_SliderTick.SetPos(0);
m_SliderTick.EnableWindow(FALSE);
SetTimer(1, MillSeconds, NULL);
m_bTimerOn = TRUE;
}
BOOL CRTDemoView::OnEraseBkgnd(CDC* pDC)
{
if (!m_Graph.m_bMemoryDraw || m_Graph.m_bSetingFailed)
return CView::OnEraseBkgnd(pDC) ;
return TRUE;
}
void CRTDemoView::SetData(int i)
{
//"Rn.randm()" is much faster than "1.0 * rand() / RAND_MAX";
m_dY = m_Graph.m_LineArray[i].m_dScaleLow +
(m_Graph.m_LineArray[i].m_dScaleHigh -
m_Graph.m_LineArray[i].m_dScaleLow) * Rn.randm();
m_Graph.AddYValue(i, m_dY);
}
void CRTDemoView::TicksRanges()
{
if (CanTicks && m_Graph.m_nTimes / (m_nTimeSpan + 1) > m_nTicks &&
MaxSeconds >= m_Graph.m_nTimes + 1)
{
m_nTicks = m_Graph.m_nTimes / m_nTimeSpan;
if (m_nTicks >= m_Graph.m_nMaxPages)
CanTicks = FALSE;
else
{
ResetSlider(m_nTicks + 1);
m_Graph.m_nPage = m_nTicks + 1;
}
}
}
void CRTDemoView::OnTimer(UINT nIDEvent)
{
n = m_Graph.m_LineArray.GetSize();
for(i=0; i<n; i++)
SetData(i);
m_Graph.UpdateTimeRange(mSec);
mSec += (UINT)(0.5 + MillSeconds); //1000 / CyclesPerSec);
m_Graph.SetPrintTime(mSec - m_nStartTime, m_Graph.MaxTime); // Sim time : max time
n = m_Graph.GetCursorTimeAndIndex(CurrentTime);
m_Graph.SetPrintTime(CurrentTime - m_nStartTime, m_Graph.CursorTime); // cursor time
GetYValues(n);
TicksRanges();
if (m_bFlag)
{
if (m_Graph.m_bIsForwardDrawing)
{
if (m_Graph.m_nTick < m_Graph.m_nSTicks)
{
m_SliderTick.SetPos(m_Graph.m_nTick);
m_Graph.m_nTick ++;
}
else
{
m_SliderTick.SetPos(m_Graph.m_nTick);
m_SliderTick.EnableWindow(TRUE);
m_bFlag = FALSE;
}
}
else
{
m_SliderTick.SetPos(m_Graph.m_nSTicks);
m_Graph.m_nTick ++;
if (m_Graph.m_nTick == m_Graph.m_nSTicks)
{
m_SliderTick.EnableWindow(TRUE);
m_bFlag = FALSE;
}
}
}
m_Graph.Redraw(GetSafeHwnd());
CView::OnTimer(nIDEvent);
}
void CRTDemoView::OnDestroy()
{
if (!m_Graph.m_bSetingFailed)
KillTimer(1);
CView::OnDestroy();
}
void CRTDemoView::GetYValues(int Index)
{
m = m_Graph.m_LineArray.GetSize();
CRTForm* pForm = (CRTForm*)GetRTForm();
for(i = 0; i < m; i ++)
{
m_dValue = m_Graph.m_LineArray[i].m_pValues[Index].YValue;
m_dValue = m_Graph.m_LineArray[i].m_dMin + (m_dValue - m_Graph.m_LineArray[i].m_dScaleLow) *
(m_Graph.m_LineArray[i].m_dMax - m_Graph.m_LineArray[i].m_dMin) /
(m_Graph.m_LineArray[i].m_dScaleHigh - m_Graph.m_LineArray[i].m_dScaleLow);
m_sString.Format("%.4f", m_dValue);
pForm->m_RTGrid.SetTextMatrix(i + 1, 5, m_sString);
}
}
void CRTDemoView::RefreshGraph()
{
m = m_Graph.GetCursorTimeAndIndex(CurrentTime);
GetYValues(m);
m_Graph.Redraw(GetSafeHwnd());
}
void CRTDemoView::OnSize(UINT nType, int cx, int cy)
{
CView::OnSize(nType, cx, cy);
if(m_bCanSize)
{
RECT rect;
GetClientRect(&rect);
m_Graph.RecalcRects(rect);
if(m_SliderTick.m_hWnd)
m_SliderTick.MoveWindow(&m_Graph.TickBarSize());
}
}
RECT& CRTDemoView::GetGraphRect()
{
if (::IsWindow(m_hWnd))
return m_Graph.m_PlotRect;
else
{
static RECT rt;
rt.left = 0;
rt.top = 0;
rt.right = 0;
rt.bottom = 0;
return rt;
}
}
CWnd* CRTDemoView::GetRTForm()
{
CSplitterWnd* pWnd = (CSplitterWnd*)GetParent();
return pWnd->GetPane(1, 0);
}
void CRTDemoView::ResetSlider(int Ticks)
{
CRTForm* pForm = (CRTForm*)GetRTForm();
pForm->InitialSlider(0, Ticks - 1, 1);
}
void CRTDemoView::RTKillTimer()
{
KillTimer(1);
m_bTimerOn = FALSE;
}
void CRTDemoView::RTRestoreTimer()
{
SetTimer(1, MillSeconds, NULL);
m_bTimerOn = TRUE;
}
void CRTDemoView::RemoveALine(int Index)
{
if (!m_Graph.RemoveALine(Index))
return;
CRTForm* pForm = (CRTForm*)GetRTForm();
pForm->RedrawGrid();
}
BOOL CRTDemoView::InsertALine(int index, COLORREF color, double low, double high,
const char* name, const char* desc, const char* unit,
double min, double max, int style, int width)
{
if (m_Graph.InsertALine(index, color, low, high, name, desc,
unit, min, max, style, width))
{
CRTForm* pForm = (CRTForm*)GetRTForm();
pForm->RedrawGrid();
return TRUE;
}
else
return FALSE;
}
void CRTDemoView::SaveAModifiedLine()
{
RefreshGraph();
CRTForm* pForm = (CRTForm*)GetRTForm();
pForm->RedrawGrid();
}
void CRTDemoView::GetColorAndName(int index, COLORREF& cr, CString& name)
{
if(index < m_Graph.m_LineArray.GetSize())
{
cr = m_Graph.m_LineArray[index].m_nColor;
name = m_Graph.m_LineArray[index].m_sName.GetChar();
}
}
void CRTDemoView::OnContextMenu(CWnd*, CPoint point)
{
// CG: This block was added by the Pop-up Menu component
{
if (point.x == -1 && point.y == -1){
//keystroke invocation
CRect rect;
GetClientRect(rect);
ClientToScreen(rect);
point = rect.TopLeft();
point.Offset(5, 5);
}
CMenu menu;
VERIFY(menu.LoadMenu(CG_IDR_POPUP_RTDEMO_VIEW));
CMenu* pPopup = menu.GetSubMenu(0);
ASSERT(pPopup != NULL);
CWnd* pWndPopupOwner = this;
while (pWndPopupOwner->GetStyle() & WS_CHILD)
pWndPopupOwner = pWndPopupOwner->GetParent();
pPopup->TrackPopupMenu(TPM_LEFTALIGN | TPM_RIGHTBUTTON, point.x, point.y,
pWndPopupOwner);
}
}
void CRTDemoView::OnSpeedTimerspeed()
{
CTimerSpeed TSpeed(this);
TSpeed.m_nTimerSpeed = SpeedLevel;
if (TSpeed.DoModal() == IDOK)
{
if (SpeedLevel != TSpeed.m_nTimerSpeed)
{
RTKillTimer();
SpeedLevel = TSpeed.m_nTimerSpeed;
MillSeconds = m_Graph.m_SpeedLevel[SpeedLevel];
RTRestoreTimer();
}
}
}
void CRTDemoView::OnUpdateSpeedTimerspeed(CCmdUI* pCmdUI)
{
pCmdUI->Enable(!m_bRealTime);
}
void CRTDemoView::Redraw()
{
RECT rect;
GetClientRect(&rect);
m_Graph.RecalcRects(rect);
Invalidate();
}
| [
"haihai107@126.com"
] | haihai107@126.com |
66ec745144c9ebbc78c3e582dce17caeedd48e00 | 54046bb3f0b791876d91137b9bfbaebecc406b02 | /FairShipRun/shipdata/G__ShipDataDict.cxx | 96267a8ec85b70045727b04227b9bed03e847706 | [] | no_license | sashabaranov/ship-tutorial | 36fccfd77a85596d1795681cbd95d86675fed03c | c8326786ba4a406030864d28ad1f43a3b06f9b4b | refs/heads/master | 2021-01-16T21:23:19.775824 | 2015-10-08T10:32:08 | 2015-10-08T10:32:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 84,780 | cxx | //
// File generated by /opt/ocean/FairSoftInst/bin/rootcint at Thu Oct 8 06:24:34 2015
// Do NOT change. Changes will be lost next time file is generated
//
#define R__DICTIONARY_FILENAME dIinputdIFairShipRundIshipdatadIG__ShipDataDict
#include "RConfig.h" //rootcint 4834
#if !defined(R__ACCESS_IN_SYMBOL)
//Break the privacy of classes -- Disabled for the moment
#define private public
#define protected public
#endif
// Since CINT ignores the std namespace, we need to do so in this file.
namespace std {} using namespace std;
#include "G__ShipDataDict.h"
#include "TClass.h"
#include "TBuffer.h"
#include "TMemberInspector.h"
#include "TInterpreter.h"
#include "TVirtualMutex.h"
#include "TError.h"
#ifndef G__ROOT
#define G__ROOT
#endif
#include "RtypesImp.h"
#include "TIsAProxy.h"
#include "TFileMergeInfo.h"
// Direct notice to TROOT of the dictionary's loading.
namespace {
static struct DictInit {
DictInit() {
ROOT::RegisterModule();
}
} __TheDictionaryInitializer;
}
// START OF SHADOWS
namespace ROOTShadow {
namespace Shadow {
} // of namespace Shadow
} // of namespace ROOTShadow
// END OF SHADOWS
namespace ROOTDict {
void ShipStack_ShowMembers(void *obj, TMemberInspector &R__insp);
static void *new_ShipStack(void *p = 0);
static void *newArray_ShipStack(Long_t size, void *p);
static void delete_ShipStack(void *p);
static void deleteArray_ShipStack(void *p);
static void destruct_ShipStack(void *p);
// Function generating the singleton type initializer
static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::ShipStack*)
{
::ShipStack *ptr = 0;
static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::ShipStack >(0);
static ::ROOT::TGenericClassInfo
instance("ShipStack", ::ShipStack::Class_Version(), "/input/FairShip/shipdata/ShipStack.h", 47,
typeid(::ShipStack), ::ROOT::DefineBehavior(ptr, ptr),
&::ShipStack::Dictionary, isa_proxy, 4,
sizeof(::ShipStack) );
instance.SetNew(&new_ShipStack);
instance.SetNewArray(&newArray_ShipStack);
instance.SetDelete(&delete_ShipStack);
instance.SetDeleteArray(&deleteArray_ShipStack);
instance.SetDestructor(&destruct_ShipStack);
return &instance;
}
ROOT::TGenericClassInfo *GenerateInitInstance(const ::ShipStack*)
{
return GenerateInitInstanceLocal((::ShipStack*)0);
}
// Static variable to force the class initialization
static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::ShipStack*)0x0); R__UseDummy(_R__UNIQUE_(Init));
} // end of namespace ROOTDict
namespace ROOTDict {
void ShipMCTrack_ShowMembers(void *obj, TMemberInspector &R__insp);
static void *new_ShipMCTrack(void *p = 0);
static void *newArray_ShipMCTrack(Long_t size, void *p);
static void delete_ShipMCTrack(void *p);
static void deleteArray_ShipMCTrack(void *p);
static void destruct_ShipMCTrack(void *p);
// Function generating the singleton type initializer
static ROOT::TGenericClassInfo *GenerateInitInstanceLocal(const ::ShipMCTrack*)
{
::ShipMCTrack *ptr = 0;
static ::TVirtualIsAProxy* isa_proxy = new ::TInstrumentedIsAProxy< ::ShipMCTrack >(0);
static ::ROOT::TGenericClassInfo
instance("ShipMCTrack", ::ShipMCTrack::Class_Version(), "/input/FairShip/shipdata/ShipMCTrack.h", 26,
typeid(::ShipMCTrack), ::ROOT::DefineBehavior(ptr, ptr),
&::ShipMCTrack::Dictionary, isa_proxy, 4,
sizeof(::ShipMCTrack) );
instance.SetNew(&new_ShipMCTrack);
instance.SetNewArray(&newArray_ShipMCTrack);
instance.SetDelete(&delete_ShipMCTrack);
instance.SetDeleteArray(&deleteArray_ShipMCTrack);
instance.SetDestructor(&destruct_ShipMCTrack);
return &instance;
}
ROOT::TGenericClassInfo *GenerateInitInstance(const ::ShipMCTrack*)
{
return GenerateInitInstanceLocal((::ShipMCTrack*)0);
}
// Static variable to force the class initialization
static ::ROOT::TGenericClassInfo *_R__UNIQUE_(Init) = GenerateInitInstanceLocal((const ::ShipMCTrack*)0x0); R__UseDummy(_R__UNIQUE_(Init));
} // end of namespace ROOTDict
//______________________________________________________________________________
atomic_TClass_ptr ShipStack::fgIsA(0); // static to hold class pointer
//______________________________________________________________________________
const char *ShipStack::Class_Name()
{
return "ShipStack";
}
//______________________________________________________________________________
const char *ShipStack::ImplFileName()
{
return ::ROOTDict::GenerateInitInstanceLocal((const ::ShipStack*)0x0)->GetImplFileName();
}
//______________________________________________________________________________
int ShipStack::ImplFileLine()
{
return ::ROOTDict::GenerateInitInstanceLocal((const ::ShipStack*)0x0)->GetImplFileLine();
}
//______________________________________________________________________________
void ShipStack::Dictionary()
{
fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::ShipStack*)0x0)->GetClass();
}
//______________________________________________________________________________
TClass *ShipStack::Class()
{
if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::ShipStack*)0x0)->GetClass();} }
return fgIsA;
}
//______________________________________________________________________________
atomic_TClass_ptr ShipMCTrack::fgIsA(0); // static to hold class pointer
//______________________________________________________________________________
const char *ShipMCTrack::Class_Name()
{
return "ShipMCTrack";
}
//______________________________________________________________________________
const char *ShipMCTrack::ImplFileName()
{
return ::ROOTDict::GenerateInitInstanceLocal((const ::ShipMCTrack*)0x0)->GetImplFileName();
}
//______________________________________________________________________________
int ShipMCTrack::ImplFileLine()
{
return ::ROOTDict::GenerateInitInstanceLocal((const ::ShipMCTrack*)0x0)->GetImplFileLine();
}
//______________________________________________________________________________
void ShipMCTrack::Dictionary()
{
fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::ShipMCTrack*)0x0)->GetClass();
}
//______________________________________________________________________________
TClass *ShipMCTrack::Class()
{
if (!fgIsA) { R__LOCKGUARD2(gCINTMutex); if(!fgIsA) {fgIsA = ::ROOTDict::GenerateInitInstanceLocal((const ::ShipMCTrack*)0x0)->GetClass();} }
return fgIsA;
}
//______________________________________________________________________________
void ShipStack::Streamer(TBuffer &R__b)
{
// Stream an object of class ShipStack.
if (R__b.IsReading()) {
R__b.ReadClassBuffer(ShipStack::Class(),this);
} else {
R__b.WriteClassBuffer(ShipStack::Class(),this);
}
}
//______________________________________________________________________________
void ShipStack::ShowMembers(TMemberInspector &R__insp)
{
// Inspect the data members of an object of class ShipStack.
TClass *R__cl = ::ShipStack::IsA();
if (R__cl || R__insp.IsA()) { }
R__insp.Inspect(R__cl, R__insp.GetParent(), "*fLogger", &fLogger);
R__insp.Inspect(R__cl, R__insp.GetParent(), "fStack", (void*)&fStack);
R__insp.InspectMember("stack<TParticle*>", (void*)&fStack, "fStack.", true);
R__insp.Inspect(R__cl, R__insp.GetParent(), "*fParticles", &fParticles);
R__insp.Inspect(R__cl, R__insp.GetParent(), "*fTracks", &fTracks);
R__insp.Inspect(R__cl, R__insp.GetParent(), "fStoreMap", (void*)&fStoreMap);
R__insp.InspectMember("map<Int_t,Bool_t>", (void*)&fStoreMap, "fStoreMap.", true);
R__insp.Inspect(R__cl, R__insp.GetParent(), "fStoreIter", (void*)&fStoreIter);
R__insp.InspectMember("map<int,bool,less<int>,allocator<pair<const int,bool> > >::iterator", (void*)&fStoreIter, "fStoreIter.", true);
R__insp.Inspect(R__cl, R__insp.GetParent(), "fIndexMap", (void*)&fIndexMap);
R__insp.InspectMember("map<Int_t,Int_t>", (void*)&fIndexMap, "fIndexMap.", true);
R__insp.Inspect(R__cl, R__insp.GetParent(), "fIndexIter", (void*)&fIndexIter);
R__insp.InspectMember("map<int,int,less<int>,allocator<pair<const int,int> > >::iterator", (void*)&fIndexIter, "fIndexIter.", true);
R__insp.Inspect(R__cl, R__insp.GetParent(), "fPointsMap", (void*)&fPointsMap);
R__insp.InspectMember("map<std::pair<Int_t,Int_t>,Int_t>", (void*)&fPointsMap, "fPointsMap.", true);
R__insp.Inspect(R__cl, R__insp.GetParent(), "fCurrentTrack", &fCurrentTrack);
R__insp.Inspect(R__cl, R__insp.GetParent(), "fNPrimaries", &fNPrimaries);
R__insp.Inspect(R__cl, R__insp.GetParent(), "fNParticles", &fNParticles);
R__insp.Inspect(R__cl, R__insp.GetParent(), "fNTracks", &fNTracks);
R__insp.Inspect(R__cl, R__insp.GetParent(), "fIndex", &fIndex);
R__insp.Inspect(R__cl, R__insp.GetParent(), "fStoreSecondaries", &fStoreSecondaries);
R__insp.Inspect(R__cl, R__insp.GetParent(), "fMinPoints", &fMinPoints);
R__insp.Inspect(R__cl, R__insp.GetParent(), "fEnergyCut", &fEnergyCut);
R__insp.Inspect(R__cl, R__insp.GetParent(), "fStoreMothers", &fStoreMothers);
FairGenericStack::ShowMembers(R__insp);
}
namespace ROOTDict {
// Wrappers around operator new
static void *new_ShipStack(void *p) {
return p ? new(p) ::ShipStack : new ::ShipStack;
}
static void *newArray_ShipStack(Long_t nElements, void *p) {
return p ? new(p) ::ShipStack[nElements] : new ::ShipStack[nElements];
}
// Wrapper around operator delete
static void delete_ShipStack(void *p) {
delete ((::ShipStack*)p);
}
static void deleteArray_ShipStack(void *p) {
delete [] ((::ShipStack*)p);
}
static void destruct_ShipStack(void *p) {
typedef ::ShipStack current_t;
((current_t*)p)->~current_t();
}
} // end of namespace ROOTDict for class ::ShipStack
//______________________________________________________________________________
void ShipMCTrack::Streamer(TBuffer &R__b)
{
// Stream an object of class ShipMCTrack.
if (R__b.IsReading()) {
R__b.ReadClassBuffer(ShipMCTrack::Class(),this);
} else {
R__b.WriteClassBuffer(ShipMCTrack::Class(),this);
}
}
//______________________________________________________________________________
void ShipMCTrack::ShowMembers(TMemberInspector &R__insp)
{
// Inspect the data members of an object of class ShipMCTrack.
TClass *R__cl = ::ShipMCTrack::IsA();
if (R__cl || R__insp.IsA()) { }
R__insp.Inspect(R__cl, R__insp.GetParent(), "fPdgCode", &fPdgCode);
R__insp.Inspect(R__cl, R__insp.GetParent(), "fMotherId", &fMotherId);
R__insp.Inspect(R__cl, R__insp.GetParent(), "fPx", &fPx);
R__insp.Inspect(R__cl, R__insp.GetParent(), "fPy", &fPy);
R__insp.Inspect(R__cl, R__insp.GetParent(), "fPz", &fPz);
R__insp.Inspect(R__cl, R__insp.GetParent(), "fStartX", &fStartX);
R__insp.Inspect(R__cl, R__insp.GetParent(), "fStartY", &fStartY);
R__insp.Inspect(R__cl, R__insp.GetParent(), "fStartZ", &fStartZ);
R__insp.Inspect(R__cl, R__insp.GetParent(), "fStartT", &fStartT);
R__insp.Inspect(R__cl, R__insp.GetParent(), "fW", &fW);
R__insp.Inspect(R__cl, R__insp.GetParent(), "fNPoints", &fNPoints);
TObject::ShowMembers(R__insp);
}
namespace ROOTDict {
// Wrappers around operator new
static void *new_ShipMCTrack(void *p) {
return p ? new(p) ::ShipMCTrack : new ::ShipMCTrack;
}
static void *newArray_ShipMCTrack(Long_t nElements, void *p) {
return p ? new(p) ::ShipMCTrack[nElements] : new ::ShipMCTrack[nElements];
}
// Wrapper around operator delete
static void delete_ShipMCTrack(void *p) {
delete ((::ShipMCTrack*)p);
}
static void deleteArray_ShipMCTrack(void *p) {
delete [] ((::ShipMCTrack*)p);
}
static void destruct_ShipMCTrack(void *p) {
typedef ::ShipMCTrack current_t;
((current_t*)p)->~current_t();
}
} // end of namespace ROOTDict for class ::ShipMCTrack
/********************************************************
* /input/FairShipRun/shipdata/G__ShipDataDict.cxx
* CAUTION: DON'T CHANGE THIS FILE. THIS FILE IS AUTOMATICALLY GENERATED
* FROM HEADER FILES LISTED IN G__setup_cpp_environmentXXX().
* CHANGE THOSE HEADER FILES AND REGENERATE THIS FILE.
********************************************************/
#ifdef G__MEMTEST
#undef malloc
#undef free
#endif
#if defined(__GNUC__) && __GNUC__ >= 4 && ((__GNUC_MINOR__ == 2 && __GNUC_PATCHLEVEL__ >= 1) || (__GNUC_MINOR__ >= 3))
#pragma GCC diagnostic ignored "-Wstrict-aliasing"
#endif
extern "C" void G__cpp_reset_tagtableG__ShipDataDict();
extern "C" void G__set_cpp_environmentG__ShipDataDict() {
G__add_compiledheader("TObject.h");
G__add_compiledheader("TMemberInspector.h");
G__add_compiledheader("ShipStack.h");
G__add_compiledheader("ShipMCTrack.h");
G__cpp_reset_tagtableG__ShipDataDict();
}
#include <new>
extern "C" int G__cpp_dllrevG__ShipDataDict() { return(30051515); }
/*********************************************************
* Member function Interface Method
*********************************************************/
/* ShipStack */
static int G__G__ShipDataDict_463_0_1(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
ShipStack* p = NULL;
char* gvp = (char*) G__getgvp();
switch (libp->paran) {
case 1:
//m: 1
if ((gvp == (char*)G__PVOID) || (gvp == 0)) {
p = new ShipStack((Int_t) G__int(libp->para[0]));
} else {
p = new((void*) gvp) ShipStack((Int_t) G__int(libp->para[0]));
}
break;
case 0:
int n = G__getaryconstruct();
if (n) {
if ((gvp == (char*)G__PVOID) || (gvp == 0)) {
p = new ShipStack[n];
} else {
p = new((void*) gvp) ShipStack[n];
}
} else {
if ((gvp == (char*)G__PVOID) || (gvp == 0)) {
p = new ShipStack;
} else {
p = new((void*) gvp) ShipStack;
}
}
break;
}
result7->obj.i = (long) p;
result7->ref = (long) p;
G__set_tagnum(result7,G__get_linked_tagnum(&G__G__ShipDataDictLN_ShipStack));
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_463_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
switch (libp->paran) {
case 1:
((const ShipStack*) G__getstructoffset())->Print((Int_t) G__int(libp->para[0]));
G__setnull(result7);
break;
case 0:
((const ShipStack*) G__getstructoffset())->Print();
G__setnull(result7);
break;
}
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_463_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
switch (libp->paran) {
case 1:
((ShipStack*) G__getstructoffset())->StoreSecondaries((Bool_t) G__int(libp->para[0]));
G__setnull(result7);
break;
case 0:
((ShipStack*) G__getstructoffset())->StoreSecondaries();
G__setnull(result7);
break;
}
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_463_0_19(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
((ShipStack*) G__getstructoffset())->SetMinPoints((Int_t) G__int(libp->para[0]));
G__setnull(result7);
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_463_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
((ShipStack*) G__getstructoffset())->SetEnergyCut((Double_t) G__double(libp->para[0]));
G__setnull(result7);
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_463_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
switch (libp->paran) {
case 1:
((ShipStack*) G__getstructoffset())->StoreMothers((Bool_t) G__int(libp->para[0]));
G__setnull(result7);
break;
case 0:
((ShipStack*) G__getstructoffset())->StoreMothers();
G__setnull(result7);
break;
}
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_463_0_22(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
((ShipStack*) G__getstructoffset())->AddPoint((DetectorId) G__int(libp->para[0]));
G__setnull(result7);
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_463_0_23(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
((ShipStack*) G__getstructoffset())->AddPoint((DetectorId) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]));
G__setnull(result7);
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_463_0_29(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letint(result7, 85, (long) ShipStack::Class());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_463_0_30(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letint(result7, 67, (long) ShipStack::Class_Name());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_463_0_31(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letint(result7, 115, (long) ShipStack::Class_Version());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_463_0_32(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
ShipStack::Dictionary();
G__setnull(result7);
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_463_0_36(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
((ShipStack*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref);
G__setnull(result7);
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_463_0_37(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letint(result7, 67, (long) ShipStack::DeclFileName());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_463_0_38(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letint(result7, 105, (long) ShipStack::ImplFileLine());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_463_0_39(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letint(result7, 67, (long) ShipStack::ImplFileName());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_463_0_40(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letint(result7, 105, (long) ShipStack::DeclFileLine());
return(1 || funcname || hash || result7 || libp) ;
}
// automatic destructor
typedef ShipStack G__TShipStack;
static int G__G__ShipDataDict_463_0_41(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
char* gvp = (char*) G__getgvp();
long soff = G__getstructoffset();
int n = G__getaryconstruct();
//
//has_a_delete: 1
//has_own_delete1arg: 0
//has_own_delete2arg: 0
//
if (!soff) {
return(1);
}
if (n) {
if (gvp == (char*)G__PVOID) {
delete[] (ShipStack*) soff;
} else {
G__setgvp((long) G__PVOID);
for (int i = n - 1; i >= 0; --i) {
((ShipStack*) (soff+(sizeof(ShipStack)*i)))->~G__TShipStack();
}
G__setgvp((long)gvp);
}
} else {
if (gvp == (char*)G__PVOID) {
delete (ShipStack*) soff;
} else {
G__setgvp((long) G__PVOID);
((ShipStack*) (soff))->~G__TShipStack();
G__setgvp((long)gvp);
}
}
G__setnull(result7);
return(1 || funcname || hash || result7 || libp) ;
}
/* ShipMCTrack */
static int G__G__ShipDataDict_527_0_1(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
ShipMCTrack* p = NULL;
char* gvp = (char*) G__getgvp();
int n = G__getaryconstruct();
if (n) {
if ((gvp == (char*)G__PVOID) || (gvp == 0)) {
p = new ShipMCTrack[n];
} else {
p = new((void*) gvp) ShipMCTrack[n];
}
} else {
if ((gvp == (char*)G__PVOID) || (gvp == 0)) {
p = new ShipMCTrack;
} else {
p = new((void*) gvp) ShipMCTrack;
}
}
result7->obj.i = (long) p;
result7->ref = (long) p;
G__set_tagnum(result7,G__get_linked_tagnum(&G__G__ShipDataDictLN_ShipMCTrack));
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_2(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
ShipMCTrack* p = NULL;
char* gvp = (char*) G__getgvp();
//m: 11
if ((gvp == (char*)G__PVOID) || (gvp == 0)) {
p = new ShipMCTrack(
(Int_t) G__int(libp->para[0]), (Int_t) G__int(libp->para[1])
, (Double_t) G__double(libp->para[2]), (Double_t) G__double(libp->para[3])
, (Double_t) G__double(libp->para[4]), (Double_t) G__double(libp->para[5])
, (Double_t) G__double(libp->para[6]), (Double_t) G__double(libp->para[7])
, (Double_t) G__double(libp->para[8]), (Int_t) G__int(libp->para[9])
, (Double_t) G__double(libp->para[10]));
} else {
p = new((void*) gvp) ShipMCTrack(
(Int_t) G__int(libp->para[0]), (Int_t) G__int(libp->para[1])
, (Double_t) G__double(libp->para[2]), (Double_t) G__double(libp->para[3])
, (Double_t) G__double(libp->para[4]), (Double_t) G__double(libp->para[5])
, (Double_t) G__double(libp->para[6]), (Double_t) G__double(libp->para[7])
, (Double_t) G__double(libp->para[8]), (Int_t) G__int(libp->para[9])
, (Double_t) G__double(libp->para[10]));
}
result7->obj.i = (long) p;
result7->ref = (long) p;
G__set_tagnum(result7,G__get_linked_tagnum(&G__G__ShipDataDictLN_ShipMCTrack));
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_3(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
ShipMCTrack* p = NULL;
char* gvp = (char*) G__getgvp();
//m: 1
if ((gvp == (char*)G__PVOID) || (gvp == 0)) {
p = new ShipMCTrack(*(ShipMCTrack*) libp->para[0].ref);
} else {
p = new((void*) gvp) ShipMCTrack(*(ShipMCTrack*) libp->para[0].ref);
}
result7->obj.i = (long) p;
result7->ref = (long) p;
G__set_tagnum(result7,G__get_linked_tagnum(&G__G__ShipDataDictLN_ShipMCTrack));
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_4(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
ShipMCTrack* p = NULL;
char* gvp = (char*) G__getgvp();
//m: 1
if ((gvp == (char*)G__PVOID) || (gvp == 0)) {
p = new ShipMCTrack((TParticle*) G__int(libp->para[0]));
} else {
p = new((void*) gvp) ShipMCTrack((TParticle*) G__int(libp->para[0]));
}
result7->obj.i = (long) p;
result7->ref = (long) p;
G__set_tagnum(result7,G__get_linked_tagnum(&G__G__ShipDataDictLN_ShipMCTrack));
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_5(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
switch (libp->paran) {
case 1:
((const ShipMCTrack*) G__getstructoffset())->Print((Int_t) G__int(libp->para[0]));
G__setnull(result7);
break;
case 0:
((const ShipMCTrack*) G__getstructoffset())->Print();
G__setnull(result7);
break;
}
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_6(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letint(result7, 105, (long) ((const ShipMCTrack*) G__getstructoffset())->GetPdgCode());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_7(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letint(result7, 105, (long) ((const ShipMCTrack*) G__getstructoffset())->GetMotherId());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_8(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letdouble(result7, 100, (double) ((const ShipMCTrack*) G__getstructoffset())->GetPx());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_9(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letdouble(result7, 100, (double) ((const ShipMCTrack*) G__getstructoffset())->GetPy());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_10(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letdouble(result7, 100, (double) ((const ShipMCTrack*) G__getstructoffset())->GetPz());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_11(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letdouble(result7, 100, (double) ((const ShipMCTrack*) G__getstructoffset())->GetStartX());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_12(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letdouble(result7, 100, (double) ((const ShipMCTrack*) G__getstructoffset())->GetStartY());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_13(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letdouble(result7, 100, (double) ((const ShipMCTrack*) G__getstructoffset())->GetStartZ());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_14(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letdouble(result7, 100, (double) ((const ShipMCTrack*) G__getstructoffset())->GetStartT());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_15(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letdouble(result7, 100, (double) ((const ShipMCTrack*) G__getstructoffset())->GetMass());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_16(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letdouble(result7, 100, (double) ((const ShipMCTrack*) G__getstructoffset())->GetEnergy());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_17(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letdouble(result7, 100, (double) ((const ShipMCTrack*) G__getstructoffset())->GetPt());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_18(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letdouble(result7, 100, (double) ((const ShipMCTrack*) G__getstructoffset())->GetP());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_19(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letdouble(result7, 100, (double) ((const ShipMCTrack*) G__getstructoffset())->GetRapidity());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_20(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letdouble(result7, 100, (double) ((const ShipMCTrack*) G__getstructoffset())->GetWeight());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_21(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
((ShipMCTrack*) G__getstructoffset())->GetMomentum(*(TVector3*) libp->para[0].ref);
G__setnull(result7);
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_22(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
((ShipMCTrack*) G__getstructoffset())->Get4Momentum(*(TLorentzVector*) libp->para[0].ref);
G__setnull(result7);
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_23(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
((ShipMCTrack*) G__getstructoffset())->GetStartVertex(*(TVector3*) libp->para[0].ref);
G__setnull(result7);
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_24(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letint(result7, 105, (long) ((const ShipMCTrack*) G__getstructoffset())->GetNPoints((DetectorId) G__int(libp->para[0])));
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_25(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
((ShipMCTrack*) G__getstructoffset())->SetMotherId((Int_t) G__int(libp->para[0]));
G__setnull(result7);
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_26(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
((ShipMCTrack*) G__getstructoffset())->SetNPoints((Int_t) G__int(libp->para[0]), (Int_t) G__int(libp->para[1]));
G__setnull(result7);
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_27(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letint(result7, 85, (long) ShipMCTrack::Class());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_28(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letint(result7, 67, (long) ShipMCTrack::Class_Name());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_29(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letint(result7, 115, (long) ShipMCTrack::Class_Version());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_30(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
ShipMCTrack::Dictionary();
G__setnull(result7);
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_34(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
((ShipMCTrack*) G__getstructoffset())->StreamerNVirtual(*(TBuffer*) libp->para[0].ref);
G__setnull(result7);
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_35(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letint(result7, 67, (long) ShipMCTrack::DeclFileName());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_36(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letint(result7, 105, (long) ShipMCTrack::ImplFileLine());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_37(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letint(result7, 67, (long) ShipMCTrack::ImplFileName());
return(1 || funcname || hash || result7 || libp) ;
}
static int G__G__ShipDataDict_527_0_38(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
G__letint(result7, 105, (long) ShipMCTrack::DeclFileLine());
return(1 || funcname || hash || result7 || libp) ;
}
// automatic destructor
typedef ShipMCTrack G__TShipMCTrack;
static int G__G__ShipDataDict_527_0_39(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
char* gvp = (char*) G__getgvp();
long soff = G__getstructoffset();
int n = G__getaryconstruct();
//
//has_a_delete: 1
//has_own_delete1arg: 0
//has_own_delete2arg: 0
//
if (!soff) {
return(1);
}
if (n) {
if (gvp == (char*)G__PVOID) {
delete[] (ShipMCTrack*) soff;
} else {
G__setgvp((long) G__PVOID);
for (int i = n - 1; i >= 0; --i) {
((ShipMCTrack*) (soff+(sizeof(ShipMCTrack)*i)))->~G__TShipMCTrack();
}
G__setgvp((long)gvp);
}
} else {
if (gvp == (char*)G__PVOID) {
delete (ShipMCTrack*) soff;
} else {
G__setgvp((long) G__PVOID);
((ShipMCTrack*) (soff))->~G__TShipMCTrack();
G__setgvp((long)gvp);
}
}
G__setnull(result7);
return(1 || funcname || hash || result7 || libp) ;
}
// automatic assignment operator
static int G__G__ShipDataDict_527_0_40(G__value* result7, G__CONST char* funcname, struct G__param* libp, int hash)
{
ShipMCTrack* dest = (ShipMCTrack*) G__getstructoffset();
*dest = *(ShipMCTrack*) libp->para[0].ref;
const ShipMCTrack& obj = *dest;
result7->ref = (long) (&obj);
result7->obj.i = (long) (&obj);
return(1 || funcname || hash || result7 || libp) ;
}
/* Setting up global function */
/*********************************************************
* Member function Stub
*********************************************************/
/* ShipStack */
/* ShipMCTrack */
/*********************************************************
* Global function Stub
*********************************************************/
/*********************************************************
* Get size of pointer to member function
*********************************************************/
class G__Sizep2memfuncG__ShipDataDict {
public:
G__Sizep2memfuncG__ShipDataDict(): p(&G__Sizep2memfuncG__ShipDataDict::sizep2memfunc) {}
size_t sizep2memfunc() { return(sizeof(p)); }
private:
size_t (G__Sizep2memfuncG__ShipDataDict::*p)();
};
size_t G__get_sizep2memfuncG__ShipDataDict()
{
G__Sizep2memfuncG__ShipDataDict a;
G__setsizep2memfunc((int)a.sizep2memfunc());
return((size_t)a.sizep2memfunc());
}
/*********************************************************
* virtual base class offset calculation interface
*********************************************************/
/* Setting up class inheritance */
/*********************************************************
* Inheritance information setup/
*********************************************************/
extern "C" void G__cpp_setup_inheritanceG__ShipDataDict() {
/* Setting up class inheritance */
if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__G__ShipDataDictLN_ShipStack))) {
ShipStack *G__Lderived;
G__Lderived=(ShipStack*)0x1000;
{
FairGenericStack *G__Lpbase=(FairGenericStack*)G__Lderived;
G__inheritance_setup(G__get_linked_tagnum(&G__G__ShipDataDictLN_ShipStack),G__get_linked_tagnum(&G__G__ShipDataDictLN_FairGenericStack),(long)G__Lpbase-(long)G__Lderived,1,1);
}
{
TVirtualMCStack *G__Lpbase=(TVirtualMCStack*)G__Lderived;
G__inheritance_setup(G__get_linked_tagnum(&G__G__ShipDataDictLN_ShipStack),G__get_linked_tagnum(&G__G__ShipDataDictLN_TVirtualMCStack),(long)G__Lpbase-(long)G__Lderived,1,0);
}
{
TObject *G__Lpbase=(TObject*)G__Lderived;
G__inheritance_setup(G__get_linked_tagnum(&G__G__ShipDataDictLN_ShipStack),G__get_linked_tagnum(&G__G__ShipDataDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,0);
}
}
if(0==G__getnumbaseclass(G__get_linked_tagnum(&G__G__ShipDataDictLN_ShipMCTrack))) {
ShipMCTrack *G__Lderived;
G__Lderived=(ShipMCTrack*)0x1000;
{
TObject *G__Lpbase=(TObject*)G__Lderived;
G__inheritance_setup(G__get_linked_tagnum(&G__G__ShipDataDictLN_ShipMCTrack),G__get_linked_tagnum(&G__G__ShipDataDictLN_TObject),(long)G__Lpbase-(long)G__Lderived,1,1);
}
}
}
/*********************************************************
* typedef information setup/
*********************************************************/
extern "C" void G__cpp_setup_typetableG__ShipDataDict() {
/* Setting up typedef entry */
G__search_typename2("Int_t",105,-1,0,-1);
G__setnewtype(-1,"Signed integer 4 bytes (int)",0);
G__search_typename2("Double_t",100,-1,0,-1);
G__setnewtype(-1,"Double 8 bytes",0);
G__search_typename2("Bool_t",103,-1,0,-1);
G__setnewtype(-1,"Boolean (0=false, 1=true) (bool)",0);
G__search_typename2("Version_t",115,-1,0,-1);
G__setnewtype(-1,"Class version identifier (short)",0);
G__search_typename2("vector<ROOT::TSchemaHelper>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_vectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("reverse_iterator<const_iterator>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_reverse_iteratorlEvectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__G__ShipDataDictLN_vectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgR));
G__setnewtype(-1,NULL,0);
G__search_typename2("reverse_iterator<iterator>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_reverse_iteratorlEvectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__G__ShipDataDictLN_vectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgR));
G__setnewtype(-1,NULL,0);
G__search_typename2("vector<TVirtualArray*>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_vectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("reverse_iterator<const_iterator>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_reverse_iteratorlEvectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__G__ShipDataDictLN_vectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgR));
G__setnewtype(-1,NULL,0);
G__search_typename2("reverse_iterator<iterator>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_reverse_iteratorlEvectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgRcLcLiteratorgR),0,G__get_linked_tagnum(&G__G__ShipDataDictLN_vectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgR));
G__setnewtype(-1,NULL,0);
G__search_typename2("iterator<std::bidirectional_iterator_tag,TObject*,std::ptrdiff_t,const TObject**,const TObject*&>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_iteratorlEbidirectional_iterator_tagcOTObjectmUcOlongcOconstsPTObjectmUmUcOconstsPTObjectmUaNgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("iterator<bidirectional_iterator_tag,TObject*,std::ptrdiff_t,const TObject**,const TObject*&>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_iteratorlEbidirectional_iterator_tagcOTObjectmUcOlongcOconstsPTObjectmUmUcOconstsPTObjectmUaNgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("iterator<bidirectional_iterator_tag,TObject*>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_iteratorlEbidirectional_iterator_tagcOTObjectmUcOlongcOconstsPTObjectmUmUcOconstsPTObjectmUaNgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("iterator<bidirectional_iterator_tag,TObject*,long>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_iteratorlEbidirectional_iterator_tagcOTObjectmUcOlongcOconstsPTObjectmUmUcOconstsPTObjectmUaNgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("iterator<bidirectional_iterator_tag,TObject*,long,const TObject**>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_iteratorlEbidirectional_iterator_tagcOTObjectmUcOlongcOconstsPTObjectmUmUcOconstsPTObjectmUaNgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("deque<TParticle*>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_dequelETParticlemUcOallocatorlETParticlemUgRsPgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("stack<TParticle*>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_stacklETParticlemUcOdequelETParticlemUcOallocatorlETParticlemUgRsPgRsPgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("map<Int_t,Bool_t>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_maplEintcOboolcOlesslEintgRcOallocatorlEpairlEconstsPintcOboolgRsPgRsPgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("map<int,bool>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_maplEintcOboolcOlesslEintgRcOallocatorlEpairlEconstsPintcOboolgRsPgRsPgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("map<int,bool,less<int> >",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_maplEintcOboolcOlesslEintgRcOallocatorlEpairlEconstsPintcOboolgRsPgRsPgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("map<Int_t,Int_t>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_maplEintcOintcOlesslEintgRcOallocatorlEpairlEconstsPintcOintgRsPgRsPgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("pair<Int_t,Int_t>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_pairlEintcOintgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("map<std::pair<Int_t,Int_t>,Int_t>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_maplEpairlEintcOintgRcOintcOlesslEpairlEintcOintgRsPgRcOallocatorlEpairlEconstsPpairlEintcOintgRcOintgRsPgRsPgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("map<pair<Int_t,Int_t>,Int_t>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_maplEpairlEintcOintgRcOintcOlesslEpairlEintcOintgRsPgRcOallocatorlEpairlEconstsPpairlEintcOintgRcOintgRsPgRsPgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("map<pair<int,int>,int>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_maplEpairlEintcOintgRcOintcOlesslEpairlEintcOintgRsPgRcOallocatorlEpairlEconstsPpairlEintcOintgRcOintgRsPgRsPgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("map<pair<int,int>,int,less<pair<int,int> > >",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_maplEpairlEintcOintgRcOintcOlesslEpairlEintcOintgRsPgRcOallocatorlEpairlEconstsPpairlEintcOintgRcOintgRsPgRsPgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("TMatrixTBase<Float_t>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_TMatrixTBaselEfloatgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("TMatrixTBase<Double_t>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_TMatrixTBaselEdoublegR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("TVectorT<Float_t>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_TVectorTlEfloatgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("TVectorT<Double_t>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_TVectorTlEdoublegR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("TMatrixT<Float_t>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_TMatrixTlEfloatgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("TMatrixTRow_const<Float_t>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_TMatrixTRow_constlEfloatgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("TMatrixTColumn_const<Float_t>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_TMatrixTColumn_constlEfloatgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("TMatrixTDiag_const<Float_t>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_TMatrixTDiag_constlEfloatgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("TMatrixTFlat_const<Float_t>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_TMatrixTFlat_constlEfloatgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("TMatrixTSub_const<Float_t>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_TMatrixTSub_constlEfloatgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("TMatrixTSparseRow_const<Float_t>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_TMatrixTSparseRow_constlEfloatgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("TMatrixTSparseDiag_const<Float_t>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_TMatrixTSparseDiag_constlEfloatgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("TMatrixTRow<Float_t>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_TMatrixTRowlEfloatgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("TMatrixTColumn<Float_t>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_TMatrixTColumnlEfloatgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("TMatrixTDiag<Float_t>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_TMatrixTDiaglEfloatgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("TMatrixTFlat<Float_t>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_TMatrixTFlatlEfloatgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("TMatrixTSub<Float_t>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_TMatrixTSublEfloatgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("TMatrixTSparseRow<Float_t>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_TMatrixTSparseRowlEfloatgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("TMatrixTSparseDiag<Float_t>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_TMatrixTSparseDiaglEfloatgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("TElementActionT<Float_t>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_TElementActionTlEfloatgR),0,-1);
G__setnewtype(-1,NULL,0);
G__search_typename2("TElementPosActionT<Float_t>",117,G__get_linked_tagnum(&G__G__ShipDataDictLN_TElementPosActionTlEfloatgR),0,-1);
G__setnewtype(-1,NULL,0);
}
/*********************************************************
* Data Member information setup/
*********************************************************/
/* Setting up class,struct,union tag member variable */
/* ShipStack */
static void G__setup_memvarShipStack(void) {
G__tag_memvar_setup(G__get_linked_tagnum(&G__G__ShipDataDictLN_ShipStack));
{ ShipStack *p; p=(ShipStack*)0x1000; if (p) { }
G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__G__ShipDataDictLN_FairLogger),-1,-1,4,"fLogger=",0,"! don't make it persistent, magic ROOT command");
G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__G__ShipDataDictLN_stacklETParticlemUcOdequelETParticlemUcOallocatorlETParticlemUgRsPgRsPgR),G__defined_typename("stack<TParticle*>"),-1,4,"fStack=",0,"!");
G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__G__ShipDataDictLN_TClonesArray),-1,-1,4,"fParticles=",0,"!");
G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__G__ShipDataDictLN_TClonesArray),-1,-1,4,"fTracks=",0,(char*)NULL);
G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__G__ShipDataDictLN_maplEintcOboolcOlesslEintgRcOallocatorlEpairlEconstsPintcOboolgRsPgRsPgR),G__defined_typename("map<Int_t,Bool_t>"),-1,4,"fStoreMap=",0,"!");
G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__G__ShipDataDictLN_maplEintcOboolcOlesslEintgRcOallocatorlEpairlEconstsPintcOboolgRsPgRsPgRcLcLiterator),-1,-1,4,"fStoreIter=",0,"!");
G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__G__ShipDataDictLN_maplEintcOintcOlesslEintgRcOallocatorlEpairlEconstsPintcOintgRsPgRsPgR),G__defined_typename("map<Int_t,Int_t>"),-1,4,"fIndexMap=",0,"!");
G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__G__ShipDataDictLN_maplEintcOintcOlesslEintgRcOallocatorlEpairlEconstsPintcOintgRsPgRsPgRcLcLiterator),-1,-1,4,"fIndexIter=",0,"!");
G__memvar_setup((void*)0,117,0,0,G__get_linked_tagnum(&G__G__ShipDataDictLN_maplEpairlEintcOintgRcOintcOlesslEpairlEintcOintgRsPgRcOallocatorlEpairlEconstsPpairlEintcOintgRcOintgRsPgRsPgR),G__defined_typename("map<std::pair<Int_t,Int_t>,Int_t>"),-1,4,"fPointsMap=",0,"!");
G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,4,"fCurrentTrack=",0,"! Index of current track");
G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,4,"fNPrimaries=",0,"! Number of primary particles");
G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,4,"fNParticles=",0,"! Number of entries in fParticles");
G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,4,"fNTracks=",0,"! Number of entries in fTracks");
G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,4,"fIndex=",0,"! Used for merging");
G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,4,"fStoreSecondaries=",0,(char*)NULL);
G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,4,"fMinPoints=",0,(char*)NULL);
G__memvar_setup((void*)0,100,0,0,-1,G__defined_typename("Double32_t"),-1,4,"fEnergyCut=",0,(char*)NULL);
G__memvar_setup((void*)0,103,0,0,-1,G__defined_typename("Bool_t"),-1,4,"fStoreMothers=",0,(char*)NULL);
G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__G__ShipDataDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL);
}
G__tag_memvar_reset();
}
/* ShipMCTrack */
static void G__setup_memvarShipMCTrack(void) {
G__tag_memvar_setup(G__get_linked_tagnum(&G__G__ShipDataDictLN_ShipMCTrack));
{ ShipMCTrack *p; p=(ShipMCTrack*)0x1000; if (p) { }
G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,4,"fPdgCode=",0,(char*)NULL);
G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,4,"fMotherId=",0,(char*)NULL);
G__memvar_setup((void*)0,100,0,0,-1,G__defined_typename("Double32_t"),-1,4,"fPx=",0,(char*)NULL);
G__memvar_setup((void*)0,100,0,0,-1,G__defined_typename("Double32_t"),-1,4,"fPy=",0,(char*)NULL);
G__memvar_setup((void*)0,100,0,0,-1,G__defined_typename("Double32_t"),-1,4,"fPz=",0,(char*)NULL);
G__memvar_setup((void*)0,100,0,0,-1,G__defined_typename("Double32_t"),-1,4,"fStartX=",0,(char*)NULL);
G__memvar_setup((void*)0,100,0,0,-1,G__defined_typename("Double32_t"),-1,4,"fStartY=",0,(char*)NULL);
G__memvar_setup((void*)0,100,0,0,-1,G__defined_typename("Double32_t"),-1,4,"fStartZ=",0,(char*)NULL);
G__memvar_setup((void*)0,100,0,0,-1,G__defined_typename("Double32_t"),-1,4,"fStartT=",0,(char*)NULL);
G__memvar_setup((void*)0,100,0,0,-1,G__defined_typename("Double32_t"),-1,4,"fW=",0,(char*)NULL);
G__memvar_setup((void*)0,105,0,0,-1,G__defined_typename("Int_t"),-1,4,"fNPoints=",0,(char*)NULL);
G__memvar_setup((void*)0,85,0,0,G__get_linked_tagnum(&G__G__ShipDataDictLN_TClass),G__defined_typename("atomic_TClass_ptr"),-2,4,"fgIsA=",0,(char*)NULL);
}
G__tag_memvar_reset();
}
extern "C" void G__cpp_setup_memvarG__ShipDataDict() {
}
/***********************************************************
************************************************************
************************************************************
************************************************************
************************************************************
************************************************************
************************************************************
***********************************************************/
/*********************************************************
* Member function information setup for each class
*********************************************************/
static void G__setup_memfuncShipStack(void) {
/* ShipStack */
G__tag_memfunc_setup(G__get_linked_tagnum(&G__G__ShipDataDictLN_ShipStack));
G__memfunc_setup("ShipStack",906,G__G__ShipDataDict_463_0_1, 105, G__get_linked_tagnum(&G__G__ShipDataDictLN_ShipStack), -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 '100' size", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("PushTrack",917,(G__InterfaceMethod) NULL,121, -1, -1, 0, 18, 1, 1, 0,
"i - 'Int_t' 0 - toBeDone i - 'Int_t' 0 - parentID "
"i - 'Int_t' 0 - pdgCode d - 'Double_t' 0 - px "
"d - 'Double_t' 0 - py d - 'Double_t' 0 - pz "
"d - 'Double_t' 0 - e d - 'Double_t' 0 - vx "
"d - 'Double_t' 0 - vy d - 'Double_t' 0 - vz "
"d - 'Double_t' 0 - time d - 'Double_t' 0 - polx "
"d - 'Double_t' 0 - poly d - 'Double_t' 0 - polz "
"i 'TMCProcess' - 0 - proc i - 'Int_t' 1 - ntr "
"d - 'Double_t' 0 - weight i - 'Int_t' 0 - is", (char*)NULL, (void*) NULL, 1);
G__memfunc_setup("PushTrack",917,(G__InterfaceMethod) NULL,121, -1, -1, 0, 19, 1, 1, 0,
"i - 'Int_t' 0 - toBeDone i - 'Int_t' 0 - parentID "
"i - 'Int_t' 0 - pdgCode d - 'Double_t' 0 - px "
"d - 'Double_t' 0 - py d - 'Double_t' 0 - pz "
"d - 'Double_t' 0 - e d - 'Double_t' 0 - vx "
"d - 'Double_t' 0 - vy d - 'Double_t' 0 - vz "
"d - 'Double_t' 0 - time d - 'Double_t' 0 - polx "
"d - 'Double_t' 0 - poly d - 'Double_t' 0 - polz "
"i 'TMCProcess' - 0 - proc i - 'Int_t' 1 - ntr "
"d - 'Double_t' 0 - weight i - 'Int_t' 0 - is "
"i - 'Int_t' 0 - secondParentId", (char*)NULL, (void*) NULL, 1);
G__memfunc_setup("PopNextTrack",1219,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__G__ShipDataDictLN_TParticle), -1, 0, 1, 1, 1, 0, "i - 'Int_t' 1 - iTrack", (char*)NULL, (void*) NULL, 1);
G__memfunc_setup("PopPrimaryForTracking",2157,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__G__ShipDataDictLN_TParticle), -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - iPrim", (char*)NULL, (void*) NULL, 1);
G__memfunc_setup("SetCurrentTrack",1540,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - iTrack", (char*)NULL, (void*) NULL, 1);
G__memfunc_setup("GetNtrack",899,(G__InterfaceMethod) NULL,105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1);
G__memfunc_setup("GetNprimary",1138,(G__InterfaceMethod) NULL,105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1);
G__memfunc_setup("GetCurrentTrack",1528,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__G__ShipDataDictLN_TParticle), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1);
G__memfunc_setup("GetCurrentTrackNumber",2145,(G__InterfaceMethod) NULL,105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1);
G__memfunc_setup("GetCurrentParentTrackNumber",2763,(G__InterfaceMethod) NULL,105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1);
G__memfunc_setup("AddParticle",1085,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "U 'TParticle' - 0 - part", (char*)NULL, (void*) NULL, 1);
G__memfunc_setup("FillTrackArray",1403,(G__InterfaceMethod) NULL,121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1);
G__memfunc_setup("UpdateTrackIndex",1616,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "U 'TRefArray' - 0 '0' detArray", (char*)NULL, (void*) NULL, 1);
G__memfunc_setup("Reset",515,(G__InterfaceMethod) NULL,121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1);
G__memfunc_setup("Register",837,(G__InterfaceMethod) NULL,121, -1, -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1);
G__memfunc_setup("Print",525,G__G__ShipDataDict_463_0_17, 121, -1, -1, 0, 1, 1, 1, 8, "i - 'Int_t' 0 '0' iVerbose", (char*)NULL, (void*) NULL, 1);
G__memfunc_setup("StoreSecondaries",1661,G__G__ShipDataDict_463_0_18, 121, -1, -1, 0, 1, 1, 1, 0, "g - 'Bool_t' 0 'kTRUE' choice", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("SetMinPoints",1229,G__G__ShipDataDict_463_0_19, 121, -1, -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - min", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("SetEnergyCut",1218,G__G__ShipDataDict_463_0_20, 121, -1, -1, 0, 1, 1, 1, 0, "d - 'Double_t' 0 - eMin", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("StoreMothers",1263,G__G__ShipDataDict_463_0_21, 121, -1, -1, 0, 1, 1, 1, 0, "g - 'Bool_t' 0 'kTRUE' choice", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("AddPoint",787,G__G__ShipDataDict_463_0_22, 121, -1, -1, 0, 1, 1, 1, 0, "i 'DetectorId' - 0 - iDet", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("AddPoint",787,G__G__ShipDataDict_463_0_23, 121, -1, -1, 0, 2, 1, 1, 0,
"i 'DetectorId' - 0 - iDet i - 'Int_t' 0 - iTrack", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("GetParticle",1108,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__G__ShipDataDictLN_TParticle), -1, 0, 1, 1, 1, 8, "i - 'Int_t' 0 - trackId", (char*)NULL, (void*) NULL, 1);
G__memfunc_setup("GetListOfParticles",1816,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__G__ShipDataDictLN_TClonesArray), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 1);
G__memfunc_setup("SelectTracks",1224,(G__InterfaceMethod) NULL, 121, -1, -1, 0, 0, 1, 4, 0, "", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("ShipStack",906,(G__InterfaceMethod) NULL, 105, G__get_linked_tagnum(&G__G__ShipDataDictLN_ShipStack), -1, 0, 1, 1, 4, 0, "u 'ShipStack' - 11 - -", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("operator=",937,(G__InterfaceMethod) NULL, 117, G__get_linked_tagnum(&G__G__ShipDataDictLN_ShipStack), -1, 1, 1, 1, 4, 0, "u 'ShipStack' - 11 - -", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("Class",502,G__G__ShipDataDict_463_0_29, 85, G__get_linked_tagnum(&G__G__ShipDataDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&ShipStack::Class) ), 0);
G__memfunc_setup("Class_Name",982,G__G__ShipDataDict_463_0_30, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&ShipStack::Class_Name) ), 0);
G__memfunc_setup("Class_Version",1339,G__G__ShipDataDict_463_0_31, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&ShipStack::Class_Version) ), 0);
G__memfunc_setup("Dictionary",1046,G__G__ShipDataDict_463_0_32, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&ShipStack::Dictionary) ), 0);
G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__G__ShipDataDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1);
G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1);
G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1);
G__memfunc_setup("StreamerNVirtual",1656,G__G__ShipDataDict_463_0_36, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("DeclFileName",1145,G__G__ShipDataDict_463_0_37, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&ShipStack::DeclFileName) ), 0);
G__memfunc_setup("ImplFileLine",1178,G__G__ShipDataDict_463_0_38, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&ShipStack::ImplFileLine) ), 0);
G__memfunc_setup("ImplFileName",1171,G__G__ShipDataDict_463_0_39, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&ShipStack::ImplFileName) ), 0);
G__memfunc_setup("DeclFileLine",1152,G__G__ShipDataDict_463_0_40, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&ShipStack::DeclFileLine) ), 0);
// automatic destructor
G__memfunc_setup("~ShipStack", 1032, G__G__ShipDataDict_463_0_41, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1);
G__tag_memfunc_reset();
}
static void G__setup_memfuncShipMCTrack(void) {
/* ShipMCTrack */
G__tag_memfunc_setup(G__get_linked_tagnum(&G__G__ShipDataDictLN_ShipMCTrack));
G__memfunc_setup("ShipMCTrack",1049,G__G__ShipDataDict_527_0_1, 105, G__get_linked_tagnum(&G__G__ShipDataDictLN_ShipMCTrack), -1, 0, 0, 1, 1, 0, "", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("ShipMCTrack",1049,G__G__ShipDataDict_527_0_2, 105, G__get_linked_tagnum(&G__G__ShipDataDictLN_ShipMCTrack), -1, 0, 11, 1, 1, 0,
"i - 'Int_t' 0 - pdgCode i - 'Int_t' 0 - motherID "
"d - 'Double_t' 0 - px d - 'Double_t' 0 - py "
"d - 'Double_t' 0 - pz d - 'Double_t' 0 - x "
"d - 'Double_t' 0 - y d - 'Double_t' 0 - z "
"d - 'Double_t' 0 - t i - 'Int_t' 0 - nPoints "
"d - 'Double_t' 0 - w", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("ShipMCTrack",1049,G__G__ShipDataDict_527_0_3, 105, G__get_linked_tagnum(&G__G__ShipDataDictLN_ShipMCTrack), -1, 0, 1, 1, 1, 0, "u 'ShipMCTrack' - 11 - track", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("ShipMCTrack",1049,G__G__ShipDataDict_527_0_4, 105, G__get_linked_tagnum(&G__G__ShipDataDictLN_ShipMCTrack), -1, 0, 1, 1, 1, 0, "U 'TParticle' - 0 - particle", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("Print",525,G__G__ShipDataDict_527_0_5, 121, -1, -1, 0, 1, 1, 1, 8, "i - 'Int_t' 0 '0' iTrack", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("GetPdgCode",950,G__G__ShipDataDict_527_0_6, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("GetMotherId",1084,G__G__ShipDataDict_527_0_7, 105, -1, G__defined_typename("Int_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("GetPx",488,G__G__ShipDataDict_527_0_8, 100, -1, G__defined_typename("Double_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("GetPy",489,G__G__ShipDataDict_527_0_9, 100, -1, G__defined_typename("Double_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("GetPz",490,G__G__ShipDataDict_527_0_10, 100, -1, G__defined_typename("Double_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("GetStartX",902,G__G__ShipDataDict_527_0_11, 100, -1, G__defined_typename("Double_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("GetStartY",903,G__G__ShipDataDict_527_0_12, 100, -1, G__defined_typename("Double_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("GetStartZ",904,G__G__ShipDataDict_527_0_13, 100, -1, G__defined_typename("Double_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("GetStartT",898,G__G__ShipDataDict_527_0_14, 100, -1, G__defined_typename("Double_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("GetMass",692,G__G__ShipDataDict_527_0_15, 100, -1, G__defined_typename("Double_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("GetEnergy",906,G__G__ShipDataDict_527_0_16, 100, -1, G__defined_typename("Double_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("GetPt",484,G__G__ShipDataDict_527_0_17, 100, -1, G__defined_typename("Double_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("GetP",368,G__G__ShipDataDict_527_0_18, 100, -1, G__defined_typename("Double_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("GetRapidity",1126,G__G__ShipDataDict_527_0_19, 100, -1, G__defined_typename("Double_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("GetWeight",904,G__G__ShipDataDict_527_0_20, 100, -1, G__defined_typename("Double_t"), 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("GetMomentum",1138,G__G__ShipDataDict_527_0_21, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TVector3' - 1 - momentum", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("Get4Momentum",1190,G__G__ShipDataDict_527_0_22, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TLorentzVector' - 1 - momentum", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("GetStartVertex",1452,G__G__ShipDataDict_527_0_23, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TVector3' - 1 - vertex", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("GetNPoints",1003,G__G__ShipDataDict_527_0_24, 105, -1, G__defined_typename("Int_t"), 0, 1, 1, 1, 8, "i 'DetectorId' - 0 - detId", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("SetMotherId",1096,G__G__ShipDataDict_527_0_25, 121, -1, -1, 0, 1, 1, 1, 0, "i - 'Int_t' 0 - id", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("SetNPoints",1015,G__G__ShipDataDict_527_0_26, 121, -1, -1, 0, 2, 1, 1, 0,
"i - 'Int_t' 0 - iDet i - 'Int_t' 0 - np", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("Class",502,G__G__ShipDataDict_527_0_27, 85, G__get_linked_tagnum(&G__G__ShipDataDictLN_TClass), -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (TClass* (*)())(&ShipMCTrack::Class) ), 0);
G__memfunc_setup("Class_Name",982,G__G__ShipDataDict_527_0_28, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&ShipMCTrack::Class_Name) ), 0);
G__memfunc_setup("Class_Version",1339,G__G__ShipDataDict_527_0_29, 115, -1, G__defined_typename("Version_t"), 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (Version_t (*)())(&ShipMCTrack::Class_Version) ), 0);
G__memfunc_setup("Dictionary",1046,G__G__ShipDataDict_527_0_30, 121, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (void (*)())(&ShipMCTrack::Dictionary) ), 0);
G__memfunc_setup("IsA",253,(G__InterfaceMethod) NULL,85, G__get_linked_tagnum(&G__G__ShipDataDictLN_TClass), -1, 0, 0, 1, 1, 8, "", (char*)NULL, (void*) NULL, 1);
G__memfunc_setup("ShowMembers",1132,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TMemberInspector' - 1 - -", (char*)NULL, (void*) NULL, 1);
G__memfunc_setup("Streamer",835,(G__InterfaceMethod) NULL,121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - -", (char*)NULL, (void*) NULL, 1);
G__memfunc_setup("StreamerNVirtual",1656,G__G__ShipDataDict_527_0_34, 121, -1, -1, 0, 1, 1, 1, 0, "u 'TBuffer' - 1 - ClassDef_StreamerNVirtual_b", (char*)NULL, (void*) NULL, 0);
G__memfunc_setup("DeclFileName",1145,G__G__ShipDataDict_527_0_35, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&ShipMCTrack::DeclFileName) ), 0);
G__memfunc_setup("ImplFileLine",1178,G__G__ShipDataDict_527_0_36, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&ShipMCTrack::ImplFileLine) ), 0);
G__memfunc_setup("ImplFileName",1171,G__G__ShipDataDict_527_0_37, 67, -1, -1, 0, 0, 3, 1, 1, "", (char*)NULL, (void*) G__func2void( (const char* (*)())(&ShipMCTrack::ImplFileName) ), 0);
G__memfunc_setup("DeclFileLine",1152,G__G__ShipDataDict_527_0_38, 105, -1, -1, 0, 0, 3, 1, 0, "", (char*)NULL, (void*) G__func2void( (int (*)())(&ShipMCTrack::DeclFileLine) ), 0);
// automatic destructor
G__memfunc_setup("~ShipMCTrack", 1175, G__G__ShipDataDict_527_0_39, (int) ('y'), -1, -1, 0, 0, 1, 1, 0, "", (char*) NULL, (void*) NULL, 1);
// automatic assignment operator
G__memfunc_setup("operator=", 937, G__G__ShipDataDict_527_0_40, (int) ('u'), G__get_linked_tagnum(&G__G__ShipDataDictLN_ShipMCTrack), -1, 1, 1, 1, 1, 0, "u 'ShipMCTrack' - 11 - -", (char*) NULL, (void*) NULL, 0);
G__tag_memfunc_reset();
}
/*********************************************************
* Member function information setup
*********************************************************/
extern "C" void G__cpp_setup_memfuncG__ShipDataDict() {
}
/*********************************************************
* Global variable information setup for each class
*********************************************************/
static void G__cpp_setup_global0() {
/* Setting up global variables */
G__resetplocal();
}
static void G__cpp_setup_global1() {
}
static void G__cpp_setup_global2() {
}
static void G__cpp_setup_global3() {
G__resetglobalenv();
}
extern "C" void G__cpp_setup_globalG__ShipDataDict() {
G__cpp_setup_global0();
G__cpp_setup_global1();
G__cpp_setup_global2();
G__cpp_setup_global3();
}
/*********************************************************
* Global function information setup for each class
*********************************************************/
static void G__cpp_setup_func0() {
G__lastifuncposition();
}
static void G__cpp_setup_func1() {
}
static void G__cpp_setup_func2() {
}
static void G__cpp_setup_func3() {
}
static void G__cpp_setup_func4() {
}
static void G__cpp_setup_func5() {
}
static void G__cpp_setup_func6() {
}
static void G__cpp_setup_func7() {
}
static void G__cpp_setup_func8() {
}
static void G__cpp_setup_func9() {
}
static void G__cpp_setup_func10() {
}
static void G__cpp_setup_func11() {
}
static void G__cpp_setup_func12() {
}
static void G__cpp_setup_func13() {
}
static void G__cpp_setup_func14() {
}
static void G__cpp_setup_func15() {
}
static void G__cpp_setup_func16() {
}
static void G__cpp_setup_func17() {
}
static void G__cpp_setup_func18() {
}
static void G__cpp_setup_func19() {
}
static void G__cpp_setup_func20() {
}
static void G__cpp_setup_func21() {
}
static void G__cpp_setup_func22() {
}
static void G__cpp_setup_func23() {
}
static void G__cpp_setup_func24() {
}
static void G__cpp_setup_func25() {
}
static void G__cpp_setup_func26() {
G__resetifuncposition();
}
extern "C" void G__cpp_setup_funcG__ShipDataDict() {
G__cpp_setup_func0();
G__cpp_setup_func1();
G__cpp_setup_func2();
G__cpp_setup_func3();
G__cpp_setup_func4();
G__cpp_setup_func5();
G__cpp_setup_func6();
G__cpp_setup_func7();
G__cpp_setup_func8();
G__cpp_setup_func9();
G__cpp_setup_func10();
G__cpp_setup_func11();
G__cpp_setup_func12();
G__cpp_setup_func13();
G__cpp_setup_func14();
G__cpp_setup_func15();
G__cpp_setup_func16();
G__cpp_setup_func17();
G__cpp_setup_func18();
G__cpp_setup_func19();
G__cpp_setup_func20();
G__cpp_setup_func21();
G__cpp_setup_func22();
G__cpp_setup_func23();
G__cpp_setup_func24();
G__cpp_setup_func25();
G__cpp_setup_func26();
}
/*********************************************************
* Class,struct,union,enum tag information setup
*********************************************************/
/* Setup class/struct taginfo */
G__linked_taginfo G__G__ShipDataDictLN_TClass = { "TClass" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TBuffer = { "TBuffer" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TMemberInspector = { "TMemberInspector" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TObject = { "TObject" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_vectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgR = { "vector<ROOT::TSchemaHelper,allocator<ROOT::TSchemaHelper> >" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_reverse_iteratorlEvectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgRcLcLiteratorgR = { "reverse_iterator<vector<ROOT::TSchemaHelper,allocator<ROOT::TSchemaHelper> >::iterator>" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TClonesArray = { "TClonesArray" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_vectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgR = { "vector<TVirtualArray*,allocator<TVirtualArray*> >" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_reverse_iteratorlEvectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgRcLcLiteratorgR = { "reverse_iterator<vector<TVirtualArray*,allocator<TVirtualArray*> >::iterator>" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_iteratorlEbidirectional_iterator_tagcOTObjectmUcOlongcOconstsPTObjectmUmUcOconstsPTObjectmUaNgR = { "iterator<bidirectional_iterator_tag,TObject*,long,const TObject**,const TObject*&>" , 115 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TMCProcess = { "TMCProcess" , 101 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TParticle = { "TParticle" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TVirtualMCStack = { "TVirtualMCStack" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_FairLogger = { "FairLogger" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TRefArray = { "TRefArray" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_FairGenericStack = { "FairGenericStack" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_DetectorId = { "DetectorId" , 101 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_maplEintcOintcOlesslEintgRcOallocatorlEpairlEconstsPintcOintgRsPgRsPgR = { "map<int,int,less<int>,allocator<pair<const int,int> > >" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_pairlEintcOintgR = { "pair<int,int>" , 115 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_maplEintcOintcOlesslEintgRcOallocatorlEpairlEconstsPintcOintgRsPgRsPgRcLcLiterator = { "map<int,int,less<int>,allocator<pair<const int,int> > >::iterator" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_ShipStack = { "ShipStack" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_dequelETParticlemUcOallocatorlETParticlemUgRsPgR = { "deque<TParticle*,allocator<TParticle*> >" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_stacklETParticlemUcOdequelETParticlemUcOallocatorlETParticlemUgRsPgRsPgR = { "stack<TParticle*,deque<TParticle*,allocator<TParticle*> > >" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_maplEintcOboolcOlesslEintgRcOallocatorlEpairlEconstsPintcOboolgRsPgRsPgR = { "map<int,bool,less<int>,allocator<pair<const int,bool> > >" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_maplEintcOboolcOlesslEintgRcOallocatorlEpairlEconstsPintcOboolgRsPgRsPgRcLcLiterator = { "map<int,bool,less<int>,allocator<pair<const int,bool> > >::iterator" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_maplEpairlEintcOintgRcOintcOlesslEpairlEintcOintgRsPgRcOallocatorlEpairlEconstsPpairlEintcOintgRcOintgRsPgRsPgR = { "map<pair<int,int>,int,less<pair<int,int> >,allocator<pair<const pair<int,int>,int> > >" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TMatrixTBaselEfloatgR = { "TMatrixTBase<float>" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TMatrixTBaselEdoublegR = { "TMatrixTBase<double>" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TVectorTlEfloatgR = { "TVectorT<float>" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TVectorTlEdoublegR = { "TVectorT<double>" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TElementActionTlEfloatgR = { "TElementActionT<float>" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TElementPosActionTlEfloatgR = { "TElementPosActionT<float>" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TMatrixTlEfloatgR = { "TMatrixT<float>" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TMatrixTRow_constlEfloatgR = { "TMatrixTRow_const<float>" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TMatrixTRowlEfloatgR = { "TMatrixTRow<float>" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TMatrixTDiag_constlEfloatgR = { "TMatrixTDiag_const<float>" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TMatrixTColumn_constlEfloatgR = { "TMatrixTColumn_const<float>" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TMatrixTFlat_constlEfloatgR = { "TMatrixTFlat_const<float>" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TMatrixTSub_constlEfloatgR = { "TMatrixTSub_const<float>" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TMatrixTSparseRow_constlEfloatgR = { "TMatrixTSparseRow_const<float>" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TMatrixTSparseDiag_constlEfloatgR = { "TMatrixTSparseDiag_const<float>" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TMatrixTColumnlEfloatgR = { "TMatrixTColumn<float>" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TMatrixTDiaglEfloatgR = { "TMatrixTDiag<float>" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TMatrixTFlatlEfloatgR = { "TMatrixTFlat<float>" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TMatrixTSublEfloatgR = { "TMatrixTSub<float>" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TMatrixTSparseRowlEfloatgR = { "TMatrixTSparseRow<float>" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TMatrixTSparseDiaglEfloatgR = { "TMatrixTSparseDiag<float>" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TVector3 = { "TVector3" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_TLorentzVector = { "TLorentzVector" , 99 , -1 };
G__linked_taginfo G__G__ShipDataDictLN_ShipMCTrack = { "ShipMCTrack" , 99 , -1 };
/* Reset class/struct taginfo */
extern "C" void G__cpp_reset_tagtableG__ShipDataDict() {
G__G__ShipDataDictLN_TClass.tagnum = -1 ;
G__G__ShipDataDictLN_TBuffer.tagnum = -1 ;
G__G__ShipDataDictLN_TMemberInspector.tagnum = -1 ;
G__G__ShipDataDictLN_TObject.tagnum = -1 ;
G__G__ShipDataDictLN_vectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgR.tagnum = -1 ;
G__G__ShipDataDictLN_reverse_iteratorlEvectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgRcLcLiteratorgR.tagnum = -1 ;
G__G__ShipDataDictLN_TClonesArray.tagnum = -1 ;
G__G__ShipDataDictLN_vectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgR.tagnum = -1 ;
G__G__ShipDataDictLN_reverse_iteratorlEvectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgRcLcLiteratorgR.tagnum = -1 ;
G__G__ShipDataDictLN_iteratorlEbidirectional_iterator_tagcOTObjectmUcOlongcOconstsPTObjectmUmUcOconstsPTObjectmUaNgR.tagnum = -1 ;
G__G__ShipDataDictLN_TMCProcess.tagnum = -1 ;
G__G__ShipDataDictLN_TParticle.tagnum = -1 ;
G__G__ShipDataDictLN_TVirtualMCStack.tagnum = -1 ;
G__G__ShipDataDictLN_FairLogger.tagnum = -1 ;
G__G__ShipDataDictLN_TRefArray.tagnum = -1 ;
G__G__ShipDataDictLN_FairGenericStack.tagnum = -1 ;
G__G__ShipDataDictLN_DetectorId.tagnum = -1 ;
G__G__ShipDataDictLN_maplEintcOintcOlesslEintgRcOallocatorlEpairlEconstsPintcOintgRsPgRsPgR.tagnum = -1 ;
G__G__ShipDataDictLN_pairlEintcOintgR.tagnum = -1 ;
G__G__ShipDataDictLN_maplEintcOintcOlesslEintgRcOallocatorlEpairlEconstsPintcOintgRsPgRsPgRcLcLiterator.tagnum = -1 ;
G__G__ShipDataDictLN_ShipStack.tagnum = -1 ;
G__G__ShipDataDictLN_dequelETParticlemUcOallocatorlETParticlemUgRsPgR.tagnum = -1 ;
G__G__ShipDataDictLN_stacklETParticlemUcOdequelETParticlemUcOallocatorlETParticlemUgRsPgRsPgR.tagnum = -1 ;
G__G__ShipDataDictLN_maplEintcOboolcOlesslEintgRcOallocatorlEpairlEconstsPintcOboolgRsPgRsPgR.tagnum = -1 ;
G__G__ShipDataDictLN_maplEintcOboolcOlesslEintgRcOallocatorlEpairlEconstsPintcOboolgRsPgRsPgRcLcLiterator.tagnum = -1 ;
G__G__ShipDataDictLN_maplEpairlEintcOintgRcOintcOlesslEpairlEintcOintgRsPgRcOallocatorlEpairlEconstsPpairlEintcOintgRcOintgRsPgRsPgR.tagnum = -1 ;
G__G__ShipDataDictLN_TMatrixTBaselEfloatgR.tagnum = -1 ;
G__G__ShipDataDictLN_TMatrixTBaselEdoublegR.tagnum = -1 ;
G__G__ShipDataDictLN_TVectorTlEfloatgR.tagnum = -1 ;
G__G__ShipDataDictLN_TVectorTlEdoublegR.tagnum = -1 ;
G__G__ShipDataDictLN_TElementActionTlEfloatgR.tagnum = -1 ;
G__G__ShipDataDictLN_TElementPosActionTlEfloatgR.tagnum = -1 ;
G__G__ShipDataDictLN_TMatrixTlEfloatgR.tagnum = -1 ;
G__G__ShipDataDictLN_TMatrixTRow_constlEfloatgR.tagnum = -1 ;
G__G__ShipDataDictLN_TMatrixTRowlEfloatgR.tagnum = -1 ;
G__G__ShipDataDictLN_TMatrixTDiag_constlEfloatgR.tagnum = -1 ;
G__G__ShipDataDictLN_TMatrixTColumn_constlEfloatgR.tagnum = -1 ;
G__G__ShipDataDictLN_TMatrixTFlat_constlEfloatgR.tagnum = -1 ;
G__G__ShipDataDictLN_TMatrixTSub_constlEfloatgR.tagnum = -1 ;
G__G__ShipDataDictLN_TMatrixTSparseRow_constlEfloatgR.tagnum = -1 ;
G__G__ShipDataDictLN_TMatrixTSparseDiag_constlEfloatgR.tagnum = -1 ;
G__G__ShipDataDictLN_TMatrixTColumnlEfloatgR.tagnum = -1 ;
G__G__ShipDataDictLN_TMatrixTDiaglEfloatgR.tagnum = -1 ;
G__G__ShipDataDictLN_TMatrixTFlatlEfloatgR.tagnum = -1 ;
G__G__ShipDataDictLN_TMatrixTSublEfloatgR.tagnum = -1 ;
G__G__ShipDataDictLN_TMatrixTSparseRowlEfloatgR.tagnum = -1 ;
G__G__ShipDataDictLN_TMatrixTSparseDiaglEfloatgR.tagnum = -1 ;
G__G__ShipDataDictLN_TVector3.tagnum = -1 ;
G__G__ShipDataDictLN_TLorentzVector.tagnum = -1 ;
G__G__ShipDataDictLN_ShipMCTrack.tagnum = -1 ;
}
extern "C" void G__cpp_setup_tagtableG__ShipDataDict() {
/* Setting up class,struct,union tag entry */
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TClass);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TBuffer);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TMemberInspector);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TObject);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_vectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_reverse_iteratorlEvectorlEROOTcLcLTSchemaHelpercOallocatorlEROOTcLcLTSchemaHelpergRsPgRcLcLiteratorgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TClonesArray);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_vectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_reverse_iteratorlEvectorlETVirtualArraymUcOallocatorlETVirtualArraymUgRsPgRcLcLiteratorgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_iteratorlEbidirectional_iterator_tagcOTObjectmUcOlongcOconstsPTObjectmUmUcOconstsPTObjectmUaNgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TMCProcess);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TParticle);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TVirtualMCStack);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_FairLogger);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TRefArray);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_FairGenericStack);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_DetectorId);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_maplEintcOintcOlesslEintgRcOallocatorlEpairlEconstsPintcOintgRsPgRsPgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_pairlEintcOintgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_maplEintcOintcOlesslEintgRcOallocatorlEpairlEconstsPintcOintgRsPgRsPgRcLcLiterator);
G__tagtable_setup(G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_ShipStack),sizeof(ShipStack),-1,327424,(char*)NULL,G__setup_memvarShipStack,G__setup_memfuncShipStack);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_dequelETParticlemUcOallocatorlETParticlemUgRsPgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_stacklETParticlemUcOdequelETParticlemUcOallocatorlETParticlemUgRsPgRsPgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_maplEintcOboolcOlesslEintgRcOallocatorlEpairlEconstsPintcOboolgRsPgRsPgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_maplEintcOboolcOlesslEintgRcOallocatorlEpairlEconstsPintcOboolgRsPgRsPgRcLcLiterator);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_maplEpairlEintcOintgRcOintcOlesslEpairlEintcOintgRsPgRcOallocatorlEpairlEconstsPpairlEintcOintgRcOintgRsPgRsPgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TMatrixTBaselEfloatgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TMatrixTBaselEdoublegR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TVectorTlEfloatgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TVectorTlEdoublegR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TElementActionTlEfloatgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TElementPosActionTlEfloatgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TMatrixTlEfloatgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TMatrixTRow_constlEfloatgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TMatrixTRowlEfloatgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TMatrixTDiag_constlEfloatgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TMatrixTColumn_constlEfloatgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TMatrixTFlat_constlEfloatgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TMatrixTSub_constlEfloatgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TMatrixTSparseRow_constlEfloatgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TMatrixTSparseDiag_constlEfloatgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TMatrixTColumnlEfloatgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TMatrixTDiaglEfloatgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TMatrixTFlatlEfloatgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TMatrixTSublEfloatgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TMatrixTSparseRowlEfloatgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TMatrixTSparseDiaglEfloatgR);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TVector3);
G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_TLorentzVector);
G__tagtable_setup(G__get_linked_tagnum_fwd(&G__G__ShipDataDictLN_ShipMCTrack),sizeof(ShipMCTrack),-1,325376,(char*)NULL,G__setup_memvarShipMCTrack,G__setup_memfuncShipMCTrack);
}
extern "C" void G__cpp_setupG__ShipDataDict(void) {
G__check_setup_version(30051515,"G__cpp_setupG__ShipDataDict()");
G__set_cpp_environmentG__ShipDataDict();
G__cpp_setup_tagtableG__ShipDataDict();
G__cpp_setup_inheritanceG__ShipDataDict();
G__cpp_setup_typetableG__ShipDataDict();
G__cpp_setup_memvarG__ShipDataDict();
G__cpp_setup_memfuncG__ShipDataDict();
G__cpp_setup_globalG__ShipDataDict();
G__cpp_setup_funcG__ShipDataDict();
if(0==G__getsizep2memfunc()) G__get_sizep2memfuncG__ShipDataDict();
return;
}
class G__cpp_setup_initG__ShipDataDict {
public:
G__cpp_setup_initG__ShipDataDict() { G__add_setup_func("G__ShipDataDict",(G__incsetup)(&G__cpp_setupG__ShipDataDict)); G__call_setup_funcs(); }
~G__cpp_setup_initG__ShipDataDict() { G__remove_setup_func("G__ShipDataDict"); }
};
G__cpp_setup_initG__ShipDataDict G__cpp_setup_initializerG__ShipDataDict;
| [
"sashab1@yandex-team.ru"
] | sashab1@yandex-team.ru |
a5ad94b0b3c95889ac01479ad57cd7923e87b282 | 5a6e95ea550c1ab70933db273782c79c520ac2ec | /SDK/Include/ActivScp.h | 8cdcde07e22fba906a96bfdca30c53adaaa92e05 | [] | no_license | 15831944/Longhorn_SDK_And_DDK_4074 | ffa9ce6c99345a6c43a414dab9458e4c29f9eb2a | c07d26bb49ecfa056d00b1dffd8981f50e11c553 | refs/heads/master | 2023-03-21T09:27:53.770894 | 2020-10-10T03:34:29 | 2020-10-10T03:34:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 110,589 | h |
/* this ALWAYS GENERATED file contains the definitions for the interfaces */
/* File created by MIDL compiler version 7.00.0408 */
/* Compiler settings for activscp.idl:
Oicf, W1, Zp8, env=Win32 (32b run)
protocol : dce , ms_ext, c_ext, robust
error checks: allocation ref bounds_check enum stub_data
VC __declspec() decoration level:
__declspec(uuid()), __declspec(selectany), __declspec(novtable)
DECLSPEC_UUID(), MIDL_INTERFACE()
*/
//@@MIDL_FILE_HEADING( )
#pragma warning( disable: 4049 ) /* more than 64k source lines */
/* verify that the <rpcndr.h> version is high enough to compile this file*/
#ifndef __REQUIRED_RPCNDR_H_VERSION__
#define __REQUIRED_RPCNDR_H_VERSION__ 475
#endif
#include "rpc.h"
#include "rpcndr.h"
#ifndef __RPCNDR_H_VERSION__
#error this stub requires an updated version of <rpcndr.h>
#endif // __RPCNDR_H_VERSION__
#ifndef COM_NO_WINDOWS_H
#include "windows.h"
#include "ole2.h"
#endif /*COM_NO_WINDOWS_H*/
#ifndef __activscp_h__
#define __activscp_h__
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
#pragma once
#endif
/* Forward Declarations */
#ifndef __IActiveScriptSite_FWD_DEFINED__
#define __IActiveScriptSite_FWD_DEFINED__
typedef interface IActiveScriptSite IActiveScriptSite;
#endif /* __IActiveScriptSite_FWD_DEFINED__ */
#ifndef __IActiveScriptError_FWD_DEFINED__
#define __IActiveScriptError_FWD_DEFINED__
typedef interface IActiveScriptError IActiveScriptError;
#endif /* __IActiveScriptError_FWD_DEFINED__ */
#ifndef __IActiveScriptError64_FWD_DEFINED__
#define __IActiveScriptError64_FWD_DEFINED__
typedef interface IActiveScriptError64 IActiveScriptError64;
#endif /* __IActiveScriptError64_FWD_DEFINED__ */
#ifndef __IActiveScriptSiteWindow_FWD_DEFINED__
#define __IActiveScriptSiteWindow_FWD_DEFINED__
typedef interface IActiveScriptSiteWindow IActiveScriptSiteWindow;
#endif /* __IActiveScriptSiteWindow_FWD_DEFINED__ */
#ifndef __IActiveScriptSiteInterruptPoll_FWD_DEFINED__
#define __IActiveScriptSiteInterruptPoll_FWD_DEFINED__
typedef interface IActiveScriptSiteInterruptPoll IActiveScriptSiteInterruptPoll;
#endif /* __IActiveScriptSiteInterruptPoll_FWD_DEFINED__ */
#ifndef __IActiveScript_FWD_DEFINED__
#define __IActiveScript_FWD_DEFINED__
typedef interface IActiveScript IActiveScript;
#endif /* __IActiveScript_FWD_DEFINED__ */
#ifndef __IActiveScriptParse32_FWD_DEFINED__
#define __IActiveScriptParse32_FWD_DEFINED__
typedef interface IActiveScriptParse32 IActiveScriptParse32;
#endif /* __IActiveScriptParse32_FWD_DEFINED__ */
#ifndef __IActiveScriptParse64_FWD_DEFINED__
#define __IActiveScriptParse64_FWD_DEFINED__
typedef interface IActiveScriptParse64 IActiveScriptParse64;
#endif /* __IActiveScriptParse64_FWD_DEFINED__ */
#ifndef __IActiveScriptParseProcedureOld32_FWD_DEFINED__
#define __IActiveScriptParseProcedureOld32_FWD_DEFINED__
typedef interface IActiveScriptParseProcedureOld32 IActiveScriptParseProcedureOld32;
#endif /* __IActiveScriptParseProcedureOld32_FWD_DEFINED__ */
#ifndef __IActiveScriptParseProcedureOld64_FWD_DEFINED__
#define __IActiveScriptParseProcedureOld64_FWD_DEFINED__
typedef interface IActiveScriptParseProcedureOld64 IActiveScriptParseProcedureOld64;
#endif /* __IActiveScriptParseProcedureOld64_FWD_DEFINED__ */
#ifndef __IActiveScriptParseProcedure32_FWD_DEFINED__
#define __IActiveScriptParseProcedure32_FWD_DEFINED__
typedef interface IActiveScriptParseProcedure32 IActiveScriptParseProcedure32;
#endif /* __IActiveScriptParseProcedure32_FWD_DEFINED__ */
#ifndef __IActiveScriptParseProcedure64_FWD_DEFINED__
#define __IActiveScriptParseProcedure64_FWD_DEFINED__
typedef interface IActiveScriptParseProcedure64 IActiveScriptParseProcedure64;
#endif /* __IActiveScriptParseProcedure64_FWD_DEFINED__ */
#ifndef __IActiveScriptParseProcedure2_32_FWD_DEFINED__
#define __IActiveScriptParseProcedure2_32_FWD_DEFINED__
typedef interface IActiveScriptParseProcedure2_32 IActiveScriptParseProcedure2_32;
#endif /* __IActiveScriptParseProcedure2_32_FWD_DEFINED__ */
#ifndef __IActiveScriptParseProcedure2_64_FWD_DEFINED__
#define __IActiveScriptParseProcedure2_64_FWD_DEFINED__
typedef interface IActiveScriptParseProcedure2_64 IActiveScriptParseProcedure2_64;
#endif /* __IActiveScriptParseProcedure2_64_FWD_DEFINED__ */
#ifndef __IActiveScriptEncode_FWD_DEFINED__
#define __IActiveScriptEncode_FWD_DEFINED__
typedef interface IActiveScriptEncode IActiveScriptEncode;
#endif /* __IActiveScriptEncode_FWD_DEFINED__ */
#ifndef __IActiveScriptHostEncode_FWD_DEFINED__
#define __IActiveScriptHostEncode_FWD_DEFINED__
typedef interface IActiveScriptHostEncode IActiveScriptHostEncode;
#endif /* __IActiveScriptHostEncode_FWD_DEFINED__ */
#ifndef __IBindEventHandler_FWD_DEFINED__
#define __IBindEventHandler_FWD_DEFINED__
typedef interface IBindEventHandler IBindEventHandler;
#endif /* __IBindEventHandler_FWD_DEFINED__ */
#ifndef __IActiveScriptStats_FWD_DEFINED__
#define __IActiveScriptStats_FWD_DEFINED__
typedef interface IActiveScriptStats IActiveScriptStats;
#endif /* __IActiveScriptStats_FWD_DEFINED__ */
#ifndef __IActiveScriptProperty_FWD_DEFINED__
#define __IActiveScriptProperty_FWD_DEFINED__
typedef interface IActiveScriptProperty IActiveScriptProperty;
#endif /* __IActiveScriptProperty_FWD_DEFINED__ */
#ifndef __ITridentEventSink_FWD_DEFINED__
#define __ITridentEventSink_FWD_DEFINED__
typedef interface ITridentEventSink ITridentEventSink;
#endif /* __ITridentEventSink_FWD_DEFINED__ */
#ifndef __IActiveScriptGarbageCollector_FWD_DEFINED__
#define __IActiveScriptGarbageCollector_FWD_DEFINED__
typedef interface IActiveScriptGarbageCollector IActiveScriptGarbageCollector;
#endif /* __IActiveScriptGarbageCollector_FWD_DEFINED__ */
#ifndef __IActiveScriptSIPInfo_FWD_DEFINED__
#define __IActiveScriptSIPInfo_FWD_DEFINED__
typedef interface IActiveScriptSIPInfo IActiveScriptSIPInfo;
#endif /* __IActiveScriptSIPInfo_FWD_DEFINED__ */
/* header files for imported files */
#include "ocidl.h"
#ifdef __cplusplus
extern "C"{
#endif
void * __RPC_USER MIDL_user_allocate(size_t);
void __RPC_USER MIDL_user_free( void * );
/* interface __MIDL_itf_activscp_0000 */
/* [local] */
//=--------------------------------------------------------------------------=
// ActivScp.h
//=--------------------------------------------------------------------------=
// (C) Copyright 2000 Microsoft Corporation. All Rights Reserved.
//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
//=--------------------------------------------------------------------------=
//
#pragma comment(lib,"uuid.lib")
//
// Declarations for ActiveX Scripting host applications and script engines.
//
#ifndef __ActivScp_h
#define __ActivScp_h
/* GUIDs
********/
#ifndef _NO_SCRIPT_GUIDS
// {F0B7A1A1-9847-11cf-8F20-00805F2CD064}
DEFINE_GUID(CATID_ActiveScript, 0xf0b7a1a1, 0x9847, 0x11cf, 0x8f, 0x20, 0x00, 0x80, 0x5f, 0x2c, 0xd0, 0x64);
// {F0B7A1A2-9847-11cf-8F20-00805F2CD064}
DEFINE_GUID(CATID_ActiveScriptParse, 0xf0b7a1a2, 0x9847, 0x11cf, 0x8f, 0x20, 0x00, 0x80, 0x5f, 0x2c, 0xd0, 0x64);
// {F0B7A1A3-9847-11cf-8F20-00805F2CD064}
DEFINE_GUID(CATID_ActiveScriptEncode, 0xf0b7a1a3, 0x9847, 0x11cf, 0x8f, 0x20, 0x00, 0x80, 0x5f, 0x2c, 0xd0, 0x64);
// {BB1A2AE1-A4F9-11cf-8F20-00805F2CD064}
DEFINE_GUID(IID_IActiveScript, 0xbb1a2ae1, 0xa4f9, 0x11cf, 0x8f, 0x20, 0x00, 0x80, 0x5f, 0x2c, 0xd0, 0x64);
// {BB1A2AE2-A4F9-11cf-8F20-00805F2CD064}
DEFINE_GUID(IID_IActiveScriptParse32, 0xbb1a2ae2, 0xa4f9, 0x11cf, 0x8f, 0x20, 0x00, 0x80, 0x5f, 0x2c, 0xd0, 0x64);
// {C7EF7658-E1EE-480E-97EA-D52CB4D76D17}
DEFINE_GUID(IID_IActiveScriptParse64, 0xc7ef7658, 0xe1ee, 0x480e, 0x97, 0xea, 0xd5, 0x2c, 0xb4, 0xd7, 0x6d, 0x17);
// {BB1A2AE3-A4F9-11cf-8F20-00805F2CD064}
DEFINE_GUID(IID_IActiveScriptEncode, 0xbb1a2ae3, 0xa4f9, 0x11cf, 0x8f, 0x20, 0x00, 0x80, 0x5f, 0x2c, 0xd0, 0x64);
// {BEE9B76E-CFE3-11d1-B747-00C04FC2B085}
DEFINE_GUID(IID_IActiveScriptHostEncode, 0xbee9b76e, 0xcfe3, 0x11d1, 0xb7, 0x47, 0x00, 0xc0, 0x4f, 0xc2, 0xb0, 0x85);
// {1CFF0050-6FDD-11d0-9328-00A0C90DCAA9}
DEFINE_GUID(IID_IActiveScriptParseProcedureOld32, 0x1cff0050, 0x6fdd, 0x11d0, 0x93, 0x28, 0x00, 0xa0, 0xc9, 0x0d, 0xca, 0xa9);
// {21F57128-08C9-4638-BA12-22D15D88DC5C}
DEFINE_GUID(IID_IActiveScriptParseProcedureOld64, 0x21f57128, 0x08c9, 0x4638, 0xba, 0x12, 0x22, 0xd1, 0x5d, 0x88, 0xdc, 0x5c);
// {AA5B6A80-B834-11d0-932F-00A0C90DCAA9}
DEFINE_GUID(IID_IActiveScriptParseProcedure32, 0xaa5b6a80, 0xb834, 0x11d0, 0x93, 0x2f, 0x00, 0xa0, 0xc9, 0x0d, 0xca, 0xa9);
// {C64713B6-E029-4CC5-9200-438B72890B6A}
DEFINE_GUID(IID_IActiveScriptParseProcedure64, 0xc64713b6, 0xe029, 0x4cc5, 0x92, 0x00, 0x43, 0x8b, 0x72, 0x89, 0x0b, 0x6a);
// {71EE5B20-FB04-11d1-B3A8-00A0C911E8B2}
DEFINE_GUID(IID_IActiveScriptParseProcedure2_32, 0x71ee5b20, 0xfb04, 0x11d1, 0xb3, 0xa8, 0x00, 0xa0, 0xc9, 0x11, 0xe8, 0xb2);
// {FE7C4271-210C-448D-9F54-76DAB7047B28}
DEFINE_GUID(IID_IActiveScriptParseProcedure2_64, 0xfe7c4271, 0x210c, 0x448d, 0x9f, 0x54, 0x76, 0xda, 0xb7, 0x04, 0x7b, 0x28);
// {DB01A1E3-A42B-11cf-8F20-00805F2CD064}
DEFINE_GUID(IID_IActiveScriptSite, 0xdb01a1e3, 0xa42b, 0x11cf, 0x8f, 0x20, 0x00, 0x80, 0x5f, 0x2c, 0xd0, 0x64);
// {D10F6761-83E9-11cf-8F20-00805F2CD064}
DEFINE_GUID(IID_IActiveScriptSiteWindow, 0xd10f6761, 0x83e9, 0x11cf, 0x8f, 0x20, 0x00, 0x80, 0x5f, 0x2c, 0xd0, 0x64);
// {539698A0-CDCA-11CF-A5EB-00AA0047A063}
DEFINE_GUID(IID_IActiveScriptSiteInterruptPoll, 0x539698a0, 0xcdca, 0x11cf, 0xa5, 0xeb, 0x00, 0xaa, 0x00, 0x47, 0xa0, 0x63);
// {EAE1BA61-A4ED-11cf-8F20-00805F2CD064}
DEFINE_GUID(IID_IActiveScriptError, 0xeae1ba61, 0xa4ed, 0x11cf, 0x8f, 0x20, 0x00, 0x80, 0x5f, 0x2c, 0xd0, 0x64);
// {B21FB2A1-5B8F-4963-8C21-21450F84ED7F}
DEFINE_GUID(IID_IActiveScriptError64, 0xb21fb2a1, 0x5b8f, 0x4963, 0x8c, 0x21, 0x21, 0x45, 0x0f, 0x84, 0xed, 0x7f);
// {63CDBCB0-C1B1-11d0-9336-00A0C90DCAA9}
DEFINE_GUID(IID_IBindEventHandler, 0x63cdbcb0, 0xc1b1, 0x11d0, 0x93, 0x36, 0x00, 0xa0, 0xc9, 0x0d, 0xca, 0xa9);
// {B8DA6310-E19B-11d0-933C-00A0C90DCAA9}
DEFINE_GUID(IID_IActiveScriptStats, 0xb8da6310, 0xe19b, 0x11d0, 0x93, 0x3c, 0x00, 0xa0, 0xc9, 0x0d, 0xca, 0xa9);
// {4954E0D0-FBC7-11D1-8410-006008C3FBFC}
DEFINE_GUID(IID_IActiveScriptProperty, 0x4954E0D0, 0xFBC7, 0x11D1, 0x84, 0x10, 0x00, 0x60, 0x08, 0xC3, 0xFB, 0xFC);
// {1DC9CA50-06EF-11d2-8415-006008C3FBFC}
DEFINE_GUID(IID_ITridentEventSink, 0x1dc9ca50, 0x6ef, 0x11d2, 0x84, 0x15, 0x00, 0x60, 0x08, 0xc3, 0xfb, 0xfc);
// {6AA2C4A0-2B53-11d4-A2A0-00104BD35090}
DEFINE_GUID(IID_IActiveScriptGarbageCollector, 0x6aa2c4a0, 0x2b53, 0x11d4, 0xa2, 0xa0, 0x00, 0x10, 0x4b, 0xd3, 0x50, 0x90);
// {764651D0-38DE-11d4-A2A3-00104BD35090}
DEFINE_GUID(IID_IActiveScriptSIPInfo, 0x764651d0, 0x38de, 0x11d4, 0xa2, 0xa3, 0x00, 0x10, 0x4b, 0xd3, 0x50, 0x90);
// {1629F04E-2799-4db5-8FE5-ACE10F17EBAB}
DEFINE_GUID(OID_VBSSIP, 0x1629f04e, 0x2799, 0x4db5, 0x8f, 0xe5, 0xac, 0xe1, 0x0f, 0x17, 0xeb, 0xab);
// {06C9E010-38CE-11d4-A2A3-00104BD35090}
DEFINE_GUID(OID_JSSIP, 0x6c9e010, 0x38ce, 0x11d4, 0xa2, 0xa3, 0x00, 0x10, 0x4b, 0xd3, 0x50, 0x90);
// {1A610570-38CE-11d4-A2A3-00104BD35090}
DEFINE_GUID(OID_WSFSIP, 0x1a610570, 0x38ce, 0x11d4, 0xa2, 0xa3, 0x00, 0x10, 0x4b, 0xd3, 0x50, 0x90);
#endif // _NO_SCRIPT_GUIDS
// Constants used by ActiveX Scripting:
//
/* IActiveScript::AddNamedItem() input flags */
#define SCRIPTITEM_ISVISIBLE 0x00000002
#define SCRIPTITEM_ISSOURCE 0x00000004
#define SCRIPTITEM_GLOBALMEMBERS 0x00000008
#define SCRIPTITEM_ISPERSISTENT 0x00000040
#define SCRIPTITEM_CODEONLY 0x00000200
#define SCRIPTITEM_NOCODE 0x00000400
#define SCRIPTITEM_ALL_FLAGS (SCRIPTITEM_ISSOURCE | \
SCRIPTITEM_ISVISIBLE | \
SCRIPTITEM_ISPERSISTENT | \
SCRIPTITEM_GLOBALMEMBERS | \
SCRIPTITEM_NOCODE | \
SCRIPTITEM_CODEONLY)
/* IActiveScript::AddTypeLib() input flags */
#define SCRIPTTYPELIB_ISCONTROL 0x00000010
#define SCRIPTTYPELIB_ISPERSISTENT 0x00000040
#define SCRIPTTYPELIB_ALL_FLAGS (SCRIPTTYPELIB_ISCONTROL | SCRIPTTYPELIB_ISPERSISTENT)
/* IActiveScriptParse::AddScriptlet() and IActiveScriptParse::ParseScriptText() input flags */
#define SCRIPTTEXT_DELAYEXECUTION 0x00000001
#define SCRIPTTEXT_ISVISIBLE 0x00000002
#define SCRIPTTEXT_ISEXPRESSION 0x00000020
#define SCRIPTTEXT_ISPERSISTENT 0x00000040
#define SCRIPTTEXT_HOSTMANAGESSOURCE 0x00000080
#define SCRIPTTEXT_ALL_FLAGS (SCRIPTTEXT_DELAYEXECUTION | \
SCRIPTTEXT_ISVISIBLE | \
SCRIPTTEXT_ISEXPRESSION | \
SCRIPTTEXT_ISPERSISTENT | \
SCRIPTTEXT_HOSTMANAGESSOURCE)
/* IActiveScriptParseProcedure::ParseProcedureText() input flags */
#define SCRIPTPROC_ISEXPRESSION 0x00000020
#define SCRIPTPROC_HOSTMANAGESSOURCE 0x00000080
#define SCRIPTPROC_IMPLICIT_THIS 0x00000100
#define SCRIPTPROC_IMPLICIT_PARENTS 0x00000200
#define SCRIPTPROC_ALL_FLAGS (SCRIPTPROC_HOSTMANAGESSOURCE | \
SCRIPTPROC_ISEXPRESSION | \
SCRIPTPROC_IMPLICIT_THIS | \
SCRIPTPROC_IMPLICIT_PARENTS)
/* IActiveScriptSite::GetItemInfo() input flags */
#define SCRIPTINFO_IUNKNOWN 0x00000001
#define SCRIPTINFO_ITYPEINFO 0x00000002
#define SCRIPTINFO_ALL_FLAGS (SCRIPTINFO_IUNKNOWN | \
SCRIPTINFO_ITYPEINFO)
/* IActiveScript::Interrupt() Flags */
#define SCRIPTINTERRUPT_DEBUG 0x00000001
#define SCRIPTINTERRUPT_RAISEEXCEPTION 0x00000002
#define SCRIPTINTERRUPT_ALL_FLAGS (SCRIPTINTERRUPT_DEBUG | \
SCRIPTINTERRUPT_RAISEEXCEPTION)
/* IActiveScriptStats::GetStat() values */
#define SCRIPTSTAT_STATEMENT_COUNT 1
#define SCRIPTSTAT_INSTRUCTION_COUNT 2
#define SCRIPTSTAT_INTSTRUCTION_TIME 3
#define SCRIPTSTAT_TOTAL_TIME 4
/* IActiveScriptEncode::AddSection() input flags */
#define SCRIPT_ENCODE_SECTION 0x00000001
#define SCRIPT_ENCODE_DEFAULT_LANGUAGE 0x00000001
#define SCRIPT_ENCODE_NO_ASP_LANGUAGE 0x00000002
/* Properties for IActiveScriptProperty */
#define SCRIPTPROP_NAME 0x00000000
#define SCRIPTPROP_MAJORVERSION 0x00000001
#define SCRIPTPROP_MINORVERSION 0x00000002
#define SCRIPTPROP_BUILDNUMBER 0x00000003
#define SCRIPTPROP_DELAYEDEVENTSINKING 0x00001000
#define SCRIPTPROP_CATCHEXCEPTION 0x00001001
#define SCRIPTPROP_CONVERSIONLCID 0x00001002
#define SCRIPTPROP_HOSTSTACKREQUIRED 0x00001003
#define SCRIPTPROP_DEBUGGER 0x00001100
#define SCRIPTPROP_JITDEBUG 0x00001101
// These properties are defined and available, but are not
// officially supported.
#define SCRIPTPROP_HACK_FIBERSUPPORT 0x70000000
#define SCRIPTPROP_HACK_TRIDENTEVENTSINK 0x70000001
typedef
enum tagSCRIPTSTATE
{ SCRIPTSTATE_UNINITIALIZED = 0,
SCRIPTSTATE_INITIALIZED = 5,
SCRIPTSTATE_STARTED = 1,
SCRIPTSTATE_CONNECTED = 2,
SCRIPTSTATE_DISCONNECTED = 3,
SCRIPTSTATE_CLOSED = 4
} SCRIPTSTATE;
/* script thread state values */
typedef
enum tagSCRIPTTHREADSTATE
{ SCRIPTTHREADSTATE_NOTINSCRIPT = 0,
SCRIPTTHREADSTATE_RUNNING = 1
} SCRIPTTHREADSTATE;
/* IActiveScriptCollectGarbage constants */
typedef
enum tagSCRIPTGCTYPE
{ SCRIPTGCTYPE_NORMAL = 0,
SCRIPTGCTYPE_EXHAUSTIVE = 1
} SCRIPTGCTYPE;
/* Thread IDs */
typedef DWORD SCRIPTTHREADID;
#define SCRIPTTHREADID_CURRENT ((SCRIPTTHREADID)-1)
#define SCRIPTTHREADID_BASE ((SCRIPTTHREADID)-2)
#define SCRIPTTHREADID_ALL ((SCRIPTTHREADID)-3)
/* Structures */
/* Interfaces
*************/
extern RPC_IF_HANDLE __MIDL_itf_activscp_0000_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_activscp_0000_v0_0_s_ifspec;
#ifndef __IActiveScriptSite_INTERFACE_DEFINED__
#define __IActiveScriptSite_INTERFACE_DEFINED__
/* interface IActiveScriptSite */
/* [unique][uuid][object] */
EXTERN_C const IID IID_IActiveScriptSite;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("DB01A1E3-A42B-11cf-8F20-00805F2CD064")
IActiveScriptSite : public IUnknown
{
public:
virtual HRESULT STDMETHODCALLTYPE GetLCID(
/* [out] */ LCID *plcid) = 0;
virtual HRESULT STDMETHODCALLTYPE GetItemInfo(
/* [in] */ LPCOLESTR pstrName,
/* [in] */ DWORD dwReturnMask,
/* [out] */ IUnknown **ppiunkItem,
/* [out] */ ITypeInfo **ppti) = 0;
virtual HRESULT STDMETHODCALLTYPE GetDocVersionString(
/* [out] */ BSTR *pbstrVersion) = 0;
virtual HRESULT STDMETHODCALLTYPE OnScriptTerminate(
/* [in] */ const VARIANT *pvarResult,
/* [in] */ const EXCEPINFO *pexcepinfo) = 0;
virtual HRESULT STDMETHODCALLTYPE OnStateChange(
/* [in] */ SCRIPTSTATE ssScriptState) = 0;
virtual HRESULT STDMETHODCALLTYPE OnScriptError(
/* [in] */ IActiveScriptError *pscripterror) = 0;
virtual HRESULT STDMETHODCALLTYPE OnEnterScript( void) = 0;
virtual HRESULT STDMETHODCALLTYPE OnLeaveScript( void) = 0;
};
#else /* C style interface */
typedef struct IActiveScriptSiteVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IActiveScriptSite * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IActiveScriptSite * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IActiveScriptSite * This);
HRESULT ( STDMETHODCALLTYPE *GetLCID )(
IActiveScriptSite * This,
/* [out] */ LCID *plcid);
HRESULT ( STDMETHODCALLTYPE *GetItemInfo )(
IActiveScriptSite * This,
/* [in] */ LPCOLESTR pstrName,
/* [in] */ DWORD dwReturnMask,
/* [out] */ IUnknown **ppiunkItem,
/* [out] */ ITypeInfo **ppti);
HRESULT ( STDMETHODCALLTYPE *GetDocVersionString )(
IActiveScriptSite * This,
/* [out] */ BSTR *pbstrVersion);
HRESULT ( STDMETHODCALLTYPE *OnScriptTerminate )(
IActiveScriptSite * This,
/* [in] */ const VARIANT *pvarResult,
/* [in] */ const EXCEPINFO *pexcepinfo);
HRESULT ( STDMETHODCALLTYPE *OnStateChange )(
IActiveScriptSite * This,
/* [in] */ SCRIPTSTATE ssScriptState);
HRESULT ( STDMETHODCALLTYPE *OnScriptError )(
IActiveScriptSite * This,
/* [in] */ IActiveScriptError *pscripterror);
HRESULT ( STDMETHODCALLTYPE *OnEnterScript )(
IActiveScriptSite * This);
HRESULT ( STDMETHODCALLTYPE *OnLeaveScript )(
IActiveScriptSite * This);
END_INTERFACE
} IActiveScriptSiteVtbl;
interface IActiveScriptSite
{
CONST_VTBL struct IActiveScriptSiteVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IActiveScriptSite_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define IActiveScriptSite_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define IActiveScriptSite_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define IActiveScriptSite_GetLCID(This,plcid) \
( (This)->lpVtbl -> GetLCID(This,plcid) )
#define IActiveScriptSite_GetItemInfo(This,pstrName,dwReturnMask,ppiunkItem,ppti) \
( (This)->lpVtbl -> GetItemInfo(This,pstrName,dwReturnMask,ppiunkItem,ppti) )
#define IActiveScriptSite_GetDocVersionString(This,pbstrVersion) \
( (This)->lpVtbl -> GetDocVersionString(This,pbstrVersion) )
#define IActiveScriptSite_OnScriptTerminate(This,pvarResult,pexcepinfo) \
( (This)->lpVtbl -> OnScriptTerminate(This,pvarResult,pexcepinfo) )
#define IActiveScriptSite_OnStateChange(This,ssScriptState) \
( (This)->lpVtbl -> OnStateChange(This,ssScriptState) )
#define IActiveScriptSite_OnScriptError(This,pscripterror) \
( (This)->lpVtbl -> OnScriptError(This,pscripterror) )
#define IActiveScriptSite_OnEnterScript(This) \
( (This)->lpVtbl -> OnEnterScript(This) )
#define IActiveScriptSite_OnLeaveScript(This) \
( (This)->lpVtbl -> OnLeaveScript(This) )
#endif /* COBJMACROS */
#endif /* C style interface */
HRESULT STDMETHODCALLTYPE IActiveScriptSite_GetLCID_Proxy(
IActiveScriptSite * This,
/* [out] */ LCID *plcid);
void __RPC_STUB IActiveScriptSite_GetLCID_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScriptSite_GetItemInfo_Proxy(
IActiveScriptSite * This,
/* [in] */ LPCOLESTR pstrName,
/* [in] */ DWORD dwReturnMask,
/* [out] */ IUnknown **ppiunkItem,
/* [out] */ ITypeInfo **ppti);
void __RPC_STUB IActiveScriptSite_GetItemInfo_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScriptSite_GetDocVersionString_Proxy(
IActiveScriptSite * This,
/* [out] */ BSTR *pbstrVersion);
void __RPC_STUB IActiveScriptSite_GetDocVersionString_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScriptSite_OnScriptTerminate_Proxy(
IActiveScriptSite * This,
/* [in] */ const VARIANT *pvarResult,
/* [in] */ const EXCEPINFO *pexcepinfo);
void __RPC_STUB IActiveScriptSite_OnScriptTerminate_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScriptSite_OnStateChange_Proxy(
IActiveScriptSite * This,
/* [in] */ SCRIPTSTATE ssScriptState);
void __RPC_STUB IActiveScriptSite_OnStateChange_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScriptSite_OnScriptError_Proxy(
IActiveScriptSite * This,
/* [in] */ IActiveScriptError *pscripterror);
void __RPC_STUB IActiveScriptSite_OnScriptError_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScriptSite_OnEnterScript_Proxy(
IActiveScriptSite * This);
void __RPC_STUB IActiveScriptSite_OnEnterScript_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScriptSite_OnLeaveScript_Proxy(
IActiveScriptSite * This);
void __RPC_STUB IActiveScriptSite_OnLeaveScript_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IActiveScriptSite_INTERFACE_DEFINED__ */
#ifndef __IActiveScriptError_INTERFACE_DEFINED__
#define __IActiveScriptError_INTERFACE_DEFINED__
/* interface IActiveScriptError */
/* [unique][uuid][object] */
EXTERN_C const IID IID_IActiveScriptError;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("EAE1BA61-A4ED-11cf-8F20-00805F2CD064")
IActiveScriptError : public IUnknown
{
public:
virtual /* [local] */ HRESULT STDMETHODCALLTYPE GetExceptionInfo(
/* [out] */ EXCEPINFO *pexcepinfo) = 0;
virtual HRESULT STDMETHODCALLTYPE GetSourcePosition(
/* [out] */ DWORD *pdwSourceContext,
/* [out] */ ULONG *pulLineNumber,
/* [out] */ LONG *plCharacterPosition) = 0;
virtual HRESULT STDMETHODCALLTYPE GetSourceLineText(
/* [out] */ BSTR *pbstrSourceLine) = 0;
};
#else /* C style interface */
typedef struct IActiveScriptErrorVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IActiveScriptError * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IActiveScriptError * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IActiveScriptError * This);
/* [local] */ HRESULT ( STDMETHODCALLTYPE *GetExceptionInfo )(
IActiveScriptError * This,
/* [out] */ EXCEPINFO *pexcepinfo);
HRESULT ( STDMETHODCALLTYPE *GetSourcePosition )(
IActiveScriptError * This,
/* [out] */ DWORD *pdwSourceContext,
/* [out] */ ULONG *pulLineNumber,
/* [out] */ LONG *plCharacterPosition);
HRESULT ( STDMETHODCALLTYPE *GetSourceLineText )(
IActiveScriptError * This,
/* [out] */ BSTR *pbstrSourceLine);
END_INTERFACE
} IActiveScriptErrorVtbl;
interface IActiveScriptError
{
CONST_VTBL struct IActiveScriptErrorVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IActiveScriptError_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define IActiveScriptError_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define IActiveScriptError_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define IActiveScriptError_GetExceptionInfo(This,pexcepinfo) \
( (This)->lpVtbl -> GetExceptionInfo(This,pexcepinfo) )
#define IActiveScriptError_GetSourcePosition(This,pdwSourceContext,pulLineNumber,plCharacterPosition) \
( (This)->lpVtbl -> GetSourcePosition(This,pdwSourceContext,pulLineNumber,plCharacterPosition) )
#define IActiveScriptError_GetSourceLineText(This,pbstrSourceLine) \
( (This)->lpVtbl -> GetSourceLineText(This,pbstrSourceLine) )
#endif /* COBJMACROS */
#endif /* C style interface */
/* [call_as] */ HRESULT STDMETHODCALLTYPE IActiveScriptError_RemoteGetExceptionInfo_Proxy(
IActiveScriptError * This,
/* [out] */ EXCEPINFO *pexcepinfo);
void __RPC_STUB IActiveScriptError_RemoteGetExceptionInfo_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScriptError_GetSourcePosition_Proxy(
IActiveScriptError * This,
/* [out] */ DWORD *pdwSourceContext,
/* [out] */ ULONG *pulLineNumber,
/* [out] */ LONG *plCharacterPosition);
void __RPC_STUB IActiveScriptError_GetSourcePosition_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScriptError_GetSourceLineText_Proxy(
IActiveScriptError * This,
/* [out] */ BSTR *pbstrSourceLine);
void __RPC_STUB IActiveScriptError_GetSourceLineText_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IActiveScriptError_INTERFACE_DEFINED__ */
#ifndef __IActiveScriptError64_INTERFACE_DEFINED__
#define __IActiveScriptError64_INTERFACE_DEFINED__
/* interface IActiveScriptError64 */
/* [unique][uuid][object] */
EXTERN_C const IID IID_IActiveScriptError64;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("B21FB2A1-5B8F-4963-8C21-21450F84ED7F")
IActiveScriptError64 : public IActiveScriptError
{
public:
virtual HRESULT STDMETHODCALLTYPE GetSourcePosition64(
/* [out] */ DWORDLONG *pdwSourceContext,
/* [out] */ ULONG *pulLineNumber,
/* [out] */ LONG *plCharacterPosition) = 0;
};
#else /* C style interface */
typedef struct IActiveScriptError64Vtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IActiveScriptError64 * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IActiveScriptError64 * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IActiveScriptError64 * This);
/* [local] */ HRESULT ( STDMETHODCALLTYPE *GetExceptionInfo )(
IActiveScriptError64 * This,
/* [out] */ EXCEPINFO *pexcepinfo);
HRESULT ( STDMETHODCALLTYPE *GetSourcePosition )(
IActiveScriptError64 * This,
/* [out] */ DWORD *pdwSourceContext,
/* [out] */ ULONG *pulLineNumber,
/* [out] */ LONG *plCharacterPosition);
HRESULT ( STDMETHODCALLTYPE *GetSourceLineText )(
IActiveScriptError64 * This,
/* [out] */ BSTR *pbstrSourceLine);
HRESULT ( STDMETHODCALLTYPE *GetSourcePosition64 )(
IActiveScriptError64 * This,
/* [out] */ DWORDLONG *pdwSourceContext,
/* [out] */ ULONG *pulLineNumber,
/* [out] */ LONG *plCharacterPosition);
END_INTERFACE
} IActiveScriptError64Vtbl;
interface IActiveScriptError64
{
CONST_VTBL struct IActiveScriptError64Vtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IActiveScriptError64_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define IActiveScriptError64_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define IActiveScriptError64_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define IActiveScriptError64_GetExceptionInfo(This,pexcepinfo) \
( (This)->lpVtbl -> GetExceptionInfo(This,pexcepinfo) )
#define IActiveScriptError64_GetSourcePosition(This,pdwSourceContext,pulLineNumber,plCharacterPosition) \
( (This)->lpVtbl -> GetSourcePosition(This,pdwSourceContext,pulLineNumber,plCharacterPosition) )
#define IActiveScriptError64_GetSourceLineText(This,pbstrSourceLine) \
( (This)->lpVtbl -> GetSourceLineText(This,pbstrSourceLine) )
#define IActiveScriptError64_GetSourcePosition64(This,pdwSourceContext,pulLineNumber,plCharacterPosition) \
( (This)->lpVtbl -> GetSourcePosition64(This,pdwSourceContext,pulLineNumber,plCharacterPosition) )
#endif /* COBJMACROS */
#endif /* C style interface */
HRESULT STDMETHODCALLTYPE IActiveScriptError64_GetSourcePosition64_Proxy(
IActiveScriptError64 * This,
/* [out] */ DWORDLONG *pdwSourceContext,
/* [out] */ ULONG *pulLineNumber,
/* [out] */ LONG *plCharacterPosition);
void __RPC_STUB IActiveScriptError64_GetSourcePosition64_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IActiveScriptError64_INTERFACE_DEFINED__ */
#ifndef __IActiveScriptSiteWindow_INTERFACE_DEFINED__
#define __IActiveScriptSiteWindow_INTERFACE_DEFINED__
/* interface IActiveScriptSiteWindow */
/* [unique][uuid][object] */
EXTERN_C const IID IID_IActiveScriptSiteWindow;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("D10F6761-83E9-11cf-8F20-00805F2CD064")
IActiveScriptSiteWindow : public IUnknown
{
public:
virtual HRESULT STDMETHODCALLTYPE GetWindow(
/* [out] */ HWND *phwnd) = 0;
virtual HRESULT STDMETHODCALLTYPE EnableModeless(
/* [in] */ BOOL fEnable) = 0;
};
#else /* C style interface */
typedef struct IActiveScriptSiteWindowVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IActiveScriptSiteWindow * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IActiveScriptSiteWindow * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IActiveScriptSiteWindow * This);
HRESULT ( STDMETHODCALLTYPE *GetWindow )(
IActiveScriptSiteWindow * This,
/* [out] */ HWND *phwnd);
HRESULT ( STDMETHODCALLTYPE *EnableModeless )(
IActiveScriptSiteWindow * This,
/* [in] */ BOOL fEnable);
END_INTERFACE
} IActiveScriptSiteWindowVtbl;
interface IActiveScriptSiteWindow
{
CONST_VTBL struct IActiveScriptSiteWindowVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IActiveScriptSiteWindow_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define IActiveScriptSiteWindow_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define IActiveScriptSiteWindow_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define IActiveScriptSiteWindow_GetWindow(This,phwnd) \
( (This)->lpVtbl -> GetWindow(This,phwnd) )
#define IActiveScriptSiteWindow_EnableModeless(This,fEnable) \
( (This)->lpVtbl -> EnableModeless(This,fEnable) )
#endif /* COBJMACROS */
#endif /* C style interface */
HRESULT STDMETHODCALLTYPE IActiveScriptSiteWindow_GetWindow_Proxy(
IActiveScriptSiteWindow * This,
/* [out] */ HWND *phwnd);
void __RPC_STUB IActiveScriptSiteWindow_GetWindow_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScriptSiteWindow_EnableModeless_Proxy(
IActiveScriptSiteWindow * This,
/* [in] */ BOOL fEnable);
void __RPC_STUB IActiveScriptSiteWindow_EnableModeless_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IActiveScriptSiteWindow_INTERFACE_DEFINED__ */
#ifndef __IActiveScriptSiteInterruptPoll_INTERFACE_DEFINED__
#define __IActiveScriptSiteInterruptPoll_INTERFACE_DEFINED__
/* interface IActiveScriptSiteInterruptPoll */
/* [unique][uuid][object] */
EXTERN_C const IID IID_IActiveScriptSiteInterruptPoll;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("539698A0-CDCA-11CF-A5EB-00AA0047A063")
IActiveScriptSiteInterruptPoll : public IUnknown
{
public:
virtual HRESULT STDMETHODCALLTYPE QueryContinue( void) = 0;
};
#else /* C style interface */
typedef struct IActiveScriptSiteInterruptPollVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IActiveScriptSiteInterruptPoll * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IActiveScriptSiteInterruptPoll * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IActiveScriptSiteInterruptPoll * This);
HRESULT ( STDMETHODCALLTYPE *QueryContinue )(
IActiveScriptSiteInterruptPoll * This);
END_INTERFACE
} IActiveScriptSiteInterruptPollVtbl;
interface IActiveScriptSiteInterruptPoll
{
CONST_VTBL struct IActiveScriptSiteInterruptPollVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IActiveScriptSiteInterruptPoll_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define IActiveScriptSiteInterruptPoll_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define IActiveScriptSiteInterruptPoll_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define IActiveScriptSiteInterruptPoll_QueryContinue(This) \
( (This)->lpVtbl -> QueryContinue(This) )
#endif /* COBJMACROS */
#endif /* C style interface */
HRESULT STDMETHODCALLTYPE IActiveScriptSiteInterruptPoll_QueryContinue_Proxy(
IActiveScriptSiteInterruptPoll * This);
void __RPC_STUB IActiveScriptSiteInterruptPoll_QueryContinue_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IActiveScriptSiteInterruptPoll_INTERFACE_DEFINED__ */
#ifndef __IActiveScript_INTERFACE_DEFINED__
#define __IActiveScript_INTERFACE_DEFINED__
/* interface IActiveScript */
/* [unique][uuid][object] */
EXTERN_C const IID IID_IActiveScript;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("BB1A2AE1-A4F9-11cf-8F20-00805F2CD064")
IActiveScript : public IUnknown
{
public:
virtual HRESULT STDMETHODCALLTYPE SetScriptSite(
/* [in] */ IActiveScriptSite *pass) = 0;
virtual HRESULT STDMETHODCALLTYPE GetScriptSite(
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject) = 0;
virtual HRESULT STDMETHODCALLTYPE SetScriptState(
/* [in] */ SCRIPTSTATE ss) = 0;
virtual HRESULT STDMETHODCALLTYPE GetScriptState(
/* [out] */ SCRIPTSTATE *pssState) = 0;
virtual HRESULT STDMETHODCALLTYPE Close( void) = 0;
virtual HRESULT STDMETHODCALLTYPE AddNamedItem(
/* [in] */ LPCOLESTR pstrName,
/* [in] */ DWORD dwFlags) = 0;
virtual HRESULT STDMETHODCALLTYPE AddTypeLib(
/* [in] */ REFGUID rguidTypeLib,
/* [in] */ DWORD dwMajor,
/* [in] */ DWORD dwMinor,
/* [in] */ DWORD dwFlags) = 0;
virtual HRESULT STDMETHODCALLTYPE GetScriptDispatch(
/* [in] */ LPCOLESTR pstrItemName,
/* [out] */ IDispatch **ppdisp) = 0;
virtual HRESULT STDMETHODCALLTYPE GetCurrentScriptThreadID(
/* [out] */ SCRIPTTHREADID *pstidThread) = 0;
virtual HRESULT STDMETHODCALLTYPE GetScriptThreadID(
/* [in] */ DWORD dwWin32ThreadId,
/* [out] */ SCRIPTTHREADID *pstidThread) = 0;
virtual HRESULT STDMETHODCALLTYPE GetScriptThreadState(
/* [in] */ SCRIPTTHREADID stidThread,
/* [out] */ SCRIPTTHREADSTATE *pstsState) = 0;
virtual HRESULT STDMETHODCALLTYPE InterruptScriptThread(
/* [in] */ SCRIPTTHREADID stidThread,
/* [in] */ const EXCEPINFO *pexcepinfo,
/* [in] */ DWORD dwFlags) = 0;
virtual HRESULT STDMETHODCALLTYPE Clone(
/* [out] */ IActiveScript **ppscript) = 0;
};
#else /* C style interface */
typedef struct IActiveScriptVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IActiveScript * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IActiveScript * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IActiveScript * This);
HRESULT ( STDMETHODCALLTYPE *SetScriptSite )(
IActiveScript * This,
/* [in] */ IActiveScriptSite *pass);
HRESULT ( STDMETHODCALLTYPE *GetScriptSite )(
IActiveScript * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
HRESULT ( STDMETHODCALLTYPE *SetScriptState )(
IActiveScript * This,
/* [in] */ SCRIPTSTATE ss);
HRESULT ( STDMETHODCALLTYPE *GetScriptState )(
IActiveScript * This,
/* [out] */ SCRIPTSTATE *pssState);
HRESULT ( STDMETHODCALLTYPE *Close )(
IActiveScript * This);
HRESULT ( STDMETHODCALLTYPE *AddNamedItem )(
IActiveScript * This,
/* [in] */ LPCOLESTR pstrName,
/* [in] */ DWORD dwFlags);
HRESULT ( STDMETHODCALLTYPE *AddTypeLib )(
IActiveScript * This,
/* [in] */ REFGUID rguidTypeLib,
/* [in] */ DWORD dwMajor,
/* [in] */ DWORD dwMinor,
/* [in] */ DWORD dwFlags);
HRESULT ( STDMETHODCALLTYPE *GetScriptDispatch )(
IActiveScript * This,
/* [in] */ LPCOLESTR pstrItemName,
/* [out] */ IDispatch **ppdisp);
HRESULT ( STDMETHODCALLTYPE *GetCurrentScriptThreadID )(
IActiveScript * This,
/* [out] */ SCRIPTTHREADID *pstidThread);
HRESULT ( STDMETHODCALLTYPE *GetScriptThreadID )(
IActiveScript * This,
/* [in] */ DWORD dwWin32ThreadId,
/* [out] */ SCRIPTTHREADID *pstidThread);
HRESULT ( STDMETHODCALLTYPE *GetScriptThreadState )(
IActiveScript * This,
/* [in] */ SCRIPTTHREADID stidThread,
/* [out] */ SCRIPTTHREADSTATE *pstsState);
HRESULT ( STDMETHODCALLTYPE *InterruptScriptThread )(
IActiveScript * This,
/* [in] */ SCRIPTTHREADID stidThread,
/* [in] */ const EXCEPINFO *pexcepinfo,
/* [in] */ DWORD dwFlags);
HRESULT ( STDMETHODCALLTYPE *Clone )(
IActiveScript * This,
/* [out] */ IActiveScript **ppscript);
END_INTERFACE
} IActiveScriptVtbl;
interface IActiveScript
{
CONST_VTBL struct IActiveScriptVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IActiveScript_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define IActiveScript_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define IActiveScript_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define IActiveScript_SetScriptSite(This,pass) \
( (This)->lpVtbl -> SetScriptSite(This,pass) )
#define IActiveScript_GetScriptSite(This,riid,ppvObject) \
( (This)->lpVtbl -> GetScriptSite(This,riid,ppvObject) )
#define IActiveScript_SetScriptState(This,ss) \
( (This)->lpVtbl -> SetScriptState(This,ss) )
#define IActiveScript_GetScriptState(This,pssState) \
( (This)->lpVtbl -> GetScriptState(This,pssState) )
#define IActiveScript_Close(This) \
( (This)->lpVtbl -> Close(This) )
#define IActiveScript_AddNamedItem(This,pstrName,dwFlags) \
( (This)->lpVtbl -> AddNamedItem(This,pstrName,dwFlags) )
#define IActiveScript_AddTypeLib(This,rguidTypeLib,dwMajor,dwMinor,dwFlags) \
( (This)->lpVtbl -> AddTypeLib(This,rguidTypeLib,dwMajor,dwMinor,dwFlags) )
#define IActiveScript_GetScriptDispatch(This,pstrItemName,ppdisp) \
( (This)->lpVtbl -> GetScriptDispatch(This,pstrItemName,ppdisp) )
#define IActiveScript_GetCurrentScriptThreadID(This,pstidThread) \
( (This)->lpVtbl -> GetCurrentScriptThreadID(This,pstidThread) )
#define IActiveScript_GetScriptThreadID(This,dwWin32ThreadId,pstidThread) \
( (This)->lpVtbl -> GetScriptThreadID(This,dwWin32ThreadId,pstidThread) )
#define IActiveScript_GetScriptThreadState(This,stidThread,pstsState) \
( (This)->lpVtbl -> GetScriptThreadState(This,stidThread,pstsState) )
#define IActiveScript_InterruptScriptThread(This,stidThread,pexcepinfo,dwFlags) \
( (This)->lpVtbl -> InterruptScriptThread(This,stidThread,pexcepinfo,dwFlags) )
#define IActiveScript_Clone(This,ppscript) \
( (This)->lpVtbl -> Clone(This,ppscript) )
#endif /* COBJMACROS */
#endif /* C style interface */
HRESULT STDMETHODCALLTYPE IActiveScript_SetScriptSite_Proxy(
IActiveScript * This,
/* [in] */ IActiveScriptSite *pass);
void __RPC_STUB IActiveScript_SetScriptSite_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScript_GetScriptSite_Proxy(
IActiveScript * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
void __RPC_STUB IActiveScript_GetScriptSite_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScript_SetScriptState_Proxy(
IActiveScript * This,
/* [in] */ SCRIPTSTATE ss);
void __RPC_STUB IActiveScript_SetScriptState_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScript_GetScriptState_Proxy(
IActiveScript * This,
/* [out] */ SCRIPTSTATE *pssState);
void __RPC_STUB IActiveScript_GetScriptState_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScript_Close_Proxy(
IActiveScript * This);
void __RPC_STUB IActiveScript_Close_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScript_AddNamedItem_Proxy(
IActiveScript * This,
/* [in] */ LPCOLESTR pstrName,
/* [in] */ DWORD dwFlags);
void __RPC_STUB IActiveScript_AddNamedItem_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScript_AddTypeLib_Proxy(
IActiveScript * This,
/* [in] */ REFGUID rguidTypeLib,
/* [in] */ DWORD dwMajor,
/* [in] */ DWORD dwMinor,
/* [in] */ DWORD dwFlags);
void __RPC_STUB IActiveScript_AddTypeLib_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScript_GetScriptDispatch_Proxy(
IActiveScript * This,
/* [in] */ LPCOLESTR pstrItemName,
/* [out] */ IDispatch **ppdisp);
void __RPC_STUB IActiveScript_GetScriptDispatch_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScript_GetCurrentScriptThreadID_Proxy(
IActiveScript * This,
/* [out] */ SCRIPTTHREADID *pstidThread);
void __RPC_STUB IActiveScript_GetCurrentScriptThreadID_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScript_GetScriptThreadID_Proxy(
IActiveScript * This,
/* [in] */ DWORD dwWin32ThreadId,
/* [out] */ SCRIPTTHREADID *pstidThread);
void __RPC_STUB IActiveScript_GetScriptThreadID_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScript_GetScriptThreadState_Proxy(
IActiveScript * This,
/* [in] */ SCRIPTTHREADID stidThread,
/* [out] */ SCRIPTTHREADSTATE *pstsState);
void __RPC_STUB IActiveScript_GetScriptThreadState_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScript_InterruptScriptThread_Proxy(
IActiveScript * This,
/* [in] */ SCRIPTTHREADID stidThread,
/* [in] */ const EXCEPINFO *pexcepinfo,
/* [in] */ DWORD dwFlags);
void __RPC_STUB IActiveScript_InterruptScriptThread_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScript_Clone_Proxy(
IActiveScript * This,
/* [out] */ IActiveScript **ppscript);
void __RPC_STUB IActiveScript_Clone_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IActiveScript_INTERFACE_DEFINED__ */
#ifndef __IActiveScriptParse32_INTERFACE_DEFINED__
#define __IActiveScriptParse32_INTERFACE_DEFINED__
/* interface IActiveScriptParse32 */
/* [unique][uuid][object] */
EXTERN_C const IID IID_IActiveScriptParse32;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("BB1A2AE2-A4F9-11cf-8F20-00805F2CD064")
IActiveScriptParse32 : public IUnknown
{
public:
virtual HRESULT STDMETHODCALLTYPE InitNew( void) = 0;
virtual HRESULT STDMETHODCALLTYPE AddScriptlet(
/* [in] */ LPCOLESTR pstrDefaultName,
/* [in] */ LPCOLESTR pstrCode,
/* [in] */ LPCOLESTR pstrItemName,
/* [in] */ LPCOLESTR pstrSubItemName,
/* [in] */ LPCOLESTR pstrEventName,
/* [in] */ LPCOLESTR pstrDelimiter,
/* [in] */ DWORD dwSourceContextCookie,
/* [in] */ ULONG ulStartingLineNumber,
/* [in] */ DWORD dwFlags,
/* [out] */ BSTR *pbstrName,
/* [out] */ EXCEPINFO *pexcepinfo) = 0;
virtual HRESULT STDMETHODCALLTYPE ParseScriptText(
/* [in] */ LPCOLESTR pstrCode,
/* [in] */ LPCOLESTR pstrItemName,
/* [in] */ IUnknown *punkContext,
/* [in] */ LPCOLESTR pstrDelimiter,
/* [in] */ DWORD dwSourceContextCookie,
/* [in] */ ULONG ulStartingLineNumber,
/* [in] */ DWORD dwFlags,
/* [out] */ VARIANT *pvarResult,
/* [out] */ EXCEPINFO *pexcepinfo) = 0;
};
#else /* C style interface */
typedef struct IActiveScriptParse32Vtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IActiveScriptParse32 * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IActiveScriptParse32 * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IActiveScriptParse32 * This);
HRESULT ( STDMETHODCALLTYPE *InitNew )(
IActiveScriptParse32 * This);
HRESULT ( STDMETHODCALLTYPE *AddScriptlet )(
IActiveScriptParse32 * This,
/* [in] */ LPCOLESTR pstrDefaultName,
/* [in] */ LPCOLESTR pstrCode,
/* [in] */ LPCOLESTR pstrItemName,
/* [in] */ LPCOLESTR pstrSubItemName,
/* [in] */ LPCOLESTR pstrEventName,
/* [in] */ LPCOLESTR pstrDelimiter,
/* [in] */ DWORD dwSourceContextCookie,
/* [in] */ ULONG ulStartingLineNumber,
/* [in] */ DWORD dwFlags,
/* [out] */ BSTR *pbstrName,
/* [out] */ EXCEPINFO *pexcepinfo);
HRESULT ( STDMETHODCALLTYPE *ParseScriptText )(
IActiveScriptParse32 * This,
/* [in] */ LPCOLESTR pstrCode,
/* [in] */ LPCOLESTR pstrItemName,
/* [in] */ IUnknown *punkContext,
/* [in] */ LPCOLESTR pstrDelimiter,
/* [in] */ DWORD dwSourceContextCookie,
/* [in] */ ULONG ulStartingLineNumber,
/* [in] */ DWORD dwFlags,
/* [out] */ VARIANT *pvarResult,
/* [out] */ EXCEPINFO *pexcepinfo);
END_INTERFACE
} IActiveScriptParse32Vtbl;
interface IActiveScriptParse32
{
CONST_VTBL struct IActiveScriptParse32Vtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IActiveScriptParse32_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define IActiveScriptParse32_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define IActiveScriptParse32_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define IActiveScriptParse32_InitNew(This) \
( (This)->lpVtbl -> InitNew(This) )
#define IActiveScriptParse32_AddScriptlet(This,pstrDefaultName,pstrCode,pstrItemName,pstrSubItemName,pstrEventName,pstrDelimiter,dwSourceContextCookie,ulStartingLineNumber,dwFlags,pbstrName,pexcepinfo) \
( (This)->lpVtbl -> AddScriptlet(This,pstrDefaultName,pstrCode,pstrItemName,pstrSubItemName,pstrEventName,pstrDelimiter,dwSourceContextCookie,ulStartingLineNumber,dwFlags,pbstrName,pexcepinfo) )
#define IActiveScriptParse32_ParseScriptText(This,pstrCode,pstrItemName,punkContext,pstrDelimiter,dwSourceContextCookie,ulStartingLineNumber,dwFlags,pvarResult,pexcepinfo) \
( (This)->lpVtbl -> ParseScriptText(This,pstrCode,pstrItemName,punkContext,pstrDelimiter,dwSourceContextCookie,ulStartingLineNumber,dwFlags,pvarResult,pexcepinfo) )
#endif /* COBJMACROS */
#endif /* C style interface */
HRESULT STDMETHODCALLTYPE IActiveScriptParse32_InitNew_Proxy(
IActiveScriptParse32 * This);
void __RPC_STUB IActiveScriptParse32_InitNew_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScriptParse32_AddScriptlet_Proxy(
IActiveScriptParse32 * This,
/* [in] */ LPCOLESTR pstrDefaultName,
/* [in] */ LPCOLESTR pstrCode,
/* [in] */ LPCOLESTR pstrItemName,
/* [in] */ LPCOLESTR pstrSubItemName,
/* [in] */ LPCOLESTR pstrEventName,
/* [in] */ LPCOLESTR pstrDelimiter,
/* [in] */ DWORD dwSourceContextCookie,
/* [in] */ ULONG ulStartingLineNumber,
/* [in] */ DWORD dwFlags,
/* [out] */ BSTR *pbstrName,
/* [out] */ EXCEPINFO *pexcepinfo);
void __RPC_STUB IActiveScriptParse32_AddScriptlet_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScriptParse32_ParseScriptText_Proxy(
IActiveScriptParse32 * This,
/* [in] */ LPCOLESTR pstrCode,
/* [in] */ LPCOLESTR pstrItemName,
/* [in] */ IUnknown *punkContext,
/* [in] */ LPCOLESTR pstrDelimiter,
/* [in] */ DWORD dwSourceContextCookie,
/* [in] */ ULONG ulStartingLineNumber,
/* [in] */ DWORD dwFlags,
/* [out] */ VARIANT *pvarResult,
/* [out] */ EXCEPINFO *pexcepinfo);
void __RPC_STUB IActiveScriptParse32_ParseScriptText_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IActiveScriptParse32_INTERFACE_DEFINED__ */
#ifndef __IActiveScriptParse64_INTERFACE_DEFINED__
#define __IActiveScriptParse64_INTERFACE_DEFINED__
/* interface IActiveScriptParse64 */
/* [unique][uuid][object] */
EXTERN_C const IID IID_IActiveScriptParse64;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("C7EF7658-E1EE-480E-97EA-D52CB4D76D17")
IActiveScriptParse64 : public IUnknown
{
public:
virtual HRESULT STDMETHODCALLTYPE InitNew( void) = 0;
virtual HRESULT STDMETHODCALLTYPE AddScriptlet(
/* [in] */ LPCOLESTR pstrDefaultName,
/* [in] */ LPCOLESTR pstrCode,
/* [in] */ LPCOLESTR pstrItemName,
/* [in] */ LPCOLESTR pstrSubItemName,
/* [in] */ LPCOLESTR pstrEventName,
/* [in] */ LPCOLESTR pstrDelimiter,
/* [in] */ DWORDLONG dwSourceContextCookie,
/* [in] */ ULONG ulStartingLineNumber,
/* [in] */ DWORD dwFlags,
/* [out] */ BSTR *pbstrName,
/* [out] */ EXCEPINFO *pexcepinfo) = 0;
virtual HRESULT STDMETHODCALLTYPE ParseScriptText(
/* [in] */ LPCOLESTR pstrCode,
/* [in] */ LPCOLESTR pstrItemName,
/* [in] */ IUnknown *punkContext,
/* [in] */ LPCOLESTR pstrDelimiter,
/* [in] */ DWORDLONG dwSourceContextCookie,
/* [in] */ ULONG ulStartingLineNumber,
/* [in] */ DWORD dwFlags,
/* [out] */ VARIANT *pvarResult,
/* [out] */ EXCEPINFO *pexcepinfo) = 0;
};
#else /* C style interface */
typedef struct IActiveScriptParse64Vtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IActiveScriptParse64 * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IActiveScriptParse64 * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IActiveScriptParse64 * This);
HRESULT ( STDMETHODCALLTYPE *InitNew )(
IActiveScriptParse64 * This);
HRESULT ( STDMETHODCALLTYPE *AddScriptlet )(
IActiveScriptParse64 * This,
/* [in] */ LPCOLESTR pstrDefaultName,
/* [in] */ LPCOLESTR pstrCode,
/* [in] */ LPCOLESTR pstrItemName,
/* [in] */ LPCOLESTR pstrSubItemName,
/* [in] */ LPCOLESTR pstrEventName,
/* [in] */ LPCOLESTR pstrDelimiter,
/* [in] */ DWORDLONG dwSourceContextCookie,
/* [in] */ ULONG ulStartingLineNumber,
/* [in] */ DWORD dwFlags,
/* [out] */ BSTR *pbstrName,
/* [out] */ EXCEPINFO *pexcepinfo);
HRESULT ( STDMETHODCALLTYPE *ParseScriptText )(
IActiveScriptParse64 * This,
/* [in] */ LPCOLESTR pstrCode,
/* [in] */ LPCOLESTR pstrItemName,
/* [in] */ IUnknown *punkContext,
/* [in] */ LPCOLESTR pstrDelimiter,
/* [in] */ DWORDLONG dwSourceContextCookie,
/* [in] */ ULONG ulStartingLineNumber,
/* [in] */ DWORD dwFlags,
/* [out] */ VARIANT *pvarResult,
/* [out] */ EXCEPINFO *pexcepinfo);
END_INTERFACE
} IActiveScriptParse64Vtbl;
interface IActiveScriptParse64
{
CONST_VTBL struct IActiveScriptParse64Vtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IActiveScriptParse64_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define IActiveScriptParse64_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define IActiveScriptParse64_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define IActiveScriptParse64_InitNew(This) \
( (This)->lpVtbl -> InitNew(This) )
#define IActiveScriptParse64_AddScriptlet(This,pstrDefaultName,pstrCode,pstrItemName,pstrSubItemName,pstrEventName,pstrDelimiter,dwSourceContextCookie,ulStartingLineNumber,dwFlags,pbstrName,pexcepinfo) \
( (This)->lpVtbl -> AddScriptlet(This,pstrDefaultName,pstrCode,pstrItemName,pstrSubItemName,pstrEventName,pstrDelimiter,dwSourceContextCookie,ulStartingLineNumber,dwFlags,pbstrName,pexcepinfo) )
#define IActiveScriptParse64_ParseScriptText(This,pstrCode,pstrItemName,punkContext,pstrDelimiter,dwSourceContextCookie,ulStartingLineNumber,dwFlags,pvarResult,pexcepinfo) \
( (This)->lpVtbl -> ParseScriptText(This,pstrCode,pstrItemName,punkContext,pstrDelimiter,dwSourceContextCookie,ulStartingLineNumber,dwFlags,pvarResult,pexcepinfo) )
#endif /* COBJMACROS */
#endif /* C style interface */
HRESULT STDMETHODCALLTYPE IActiveScriptParse64_InitNew_Proxy(
IActiveScriptParse64 * This);
void __RPC_STUB IActiveScriptParse64_InitNew_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScriptParse64_AddScriptlet_Proxy(
IActiveScriptParse64 * This,
/* [in] */ LPCOLESTR pstrDefaultName,
/* [in] */ LPCOLESTR pstrCode,
/* [in] */ LPCOLESTR pstrItemName,
/* [in] */ LPCOLESTR pstrSubItemName,
/* [in] */ LPCOLESTR pstrEventName,
/* [in] */ LPCOLESTR pstrDelimiter,
/* [in] */ DWORDLONG dwSourceContextCookie,
/* [in] */ ULONG ulStartingLineNumber,
/* [in] */ DWORD dwFlags,
/* [out] */ BSTR *pbstrName,
/* [out] */ EXCEPINFO *pexcepinfo);
void __RPC_STUB IActiveScriptParse64_AddScriptlet_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScriptParse64_ParseScriptText_Proxy(
IActiveScriptParse64 * This,
/* [in] */ LPCOLESTR pstrCode,
/* [in] */ LPCOLESTR pstrItemName,
/* [in] */ IUnknown *punkContext,
/* [in] */ LPCOLESTR pstrDelimiter,
/* [in] */ DWORDLONG dwSourceContextCookie,
/* [in] */ ULONG ulStartingLineNumber,
/* [in] */ DWORD dwFlags,
/* [out] */ VARIANT *pvarResult,
/* [out] */ EXCEPINFO *pexcepinfo);
void __RPC_STUB IActiveScriptParse64_ParseScriptText_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IActiveScriptParse64_INTERFACE_DEFINED__ */
/* interface __MIDL_itf_activscp_0267 */
/* [local] */
#ifdef _WIN64
#define IActiveScriptParse IActiveScriptParse64
#define IID_IActiveScriptParse IID_IActiveScriptParse64
#else
#define IActiveScriptParse IActiveScriptParse32
#define IID_IActiveScriptParse IID_IActiveScriptParse32
#endif
typedef IActiveScriptParse *PIActiveScriptParse;
extern RPC_IF_HANDLE __MIDL_itf_activscp_0267_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_activscp_0267_v0_0_s_ifspec;
#ifndef __IActiveScriptParseProcedureOld32_INTERFACE_DEFINED__
#define __IActiveScriptParseProcedureOld32_INTERFACE_DEFINED__
/* interface IActiveScriptParseProcedureOld32 */
/* [unique][uuid][object] */
EXTERN_C const IID IID_IActiveScriptParseProcedureOld32;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("1CFF0050-6FDD-11d0-9328-00A0C90DCAA9")
IActiveScriptParseProcedureOld32 : public IUnknown
{
public:
virtual HRESULT STDMETHODCALLTYPE ParseProcedureText(
/* [in] */ LPCOLESTR pstrCode,
/* [in] */ LPCOLESTR pstrFormalParams,
/* [in] */ LPCOLESTR pstrItemName,
/* [in] */ IUnknown *punkContext,
/* [in] */ LPCOLESTR pstrDelimiter,
/* [in] */ DWORD dwSourceContextCookie,
/* [in] */ ULONG ulStartingLineNumber,
/* [in] */ DWORD dwFlags,
/* [out] */ IDispatch **ppdisp) = 0;
};
#else /* C style interface */
typedef struct IActiveScriptParseProcedureOld32Vtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IActiveScriptParseProcedureOld32 * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IActiveScriptParseProcedureOld32 * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IActiveScriptParseProcedureOld32 * This);
HRESULT ( STDMETHODCALLTYPE *ParseProcedureText )(
IActiveScriptParseProcedureOld32 * This,
/* [in] */ LPCOLESTR pstrCode,
/* [in] */ LPCOLESTR pstrFormalParams,
/* [in] */ LPCOLESTR pstrItemName,
/* [in] */ IUnknown *punkContext,
/* [in] */ LPCOLESTR pstrDelimiter,
/* [in] */ DWORD dwSourceContextCookie,
/* [in] */ ULONG ulStartingLineNumber,
/* [in] */ DWORD dwFlags,
/* [out] */ IDispatch **ppdisp);
END_INTERFACE
} IActiveScriptParseProcedureOld32Vtbl;
interface IActiveScriptParseProcedureOld32
{
CONST_VTBL struct IActiveScriptParseProcedureOld32Vtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IActiveScriptParseProcedureOld32_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define IActiveScriptParseProcedureOld32_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define IActiveScriptParseProcedureOld32_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define IActiveScriptParseProcedureOld32_ParseProcedureText(This,pstrCode,pstrFormalParams,pstrItemName,punkContext,pstrDelimiter,dwSourceContextCookie,ulStartingLineNumber,dwFlags,ppdisp) \
( (This)->lpVtbl -> ParseProcedureText(This,pstrCode,pstrFormalParams,pstrItemName,punkContext,pstrDelimiter,dwSourceContextCookie,ulStartingLineNumber,dwFlags,ppdisp) )
#endif /* COBJMACROS */
#endif /* C style interface */
HRESULT STDMETHODCALLTYPE IActiveScriptParseProcedureOld32_ParseProcedureText_Proxy(
IActiveScriptParseProcedureOld32 * This,
/* [in] */ LPCOLESTR pstrCode,
/* [in] */ LPCOLESTR pstrFormalParams,
/* [in] */ LPCOLESTR pstrItemName,
/* [in] */ IUnknown *punkContext,
/* [in] */ LPCOLESTR pstrDelimiter,
/* [in] */ DWORD dwSourceContextCookie,
/* [in] */ ULONG ulStartingLineNumber,
/* [in] */ DWORD dwFlags,
/* [out] */ IDispatch **ppdisp);
void __RPC_STUB IActiveScriptParseProcedureOld32_ParseProcedureText_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IActiveScriptParseProcedureOld32_INTERFACE_DEFINED__ */
#ifndef __IActiveScriptParseProcedureOld64_INTERFACE_DEFINED__
#define __IActiveScriptParseProcedureOld64_INTERFACE_DEFINED__
/* interface IActiveScriptParseProcedureOld64 */
/* [unique][uuid][object] */
EXTERN_C const IID IID_IActiveScriptParseProcedureOld64;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("21F57128-08C9-4638-BA12-22D15D88DC5C")
IActiveScriptParseProcedureOld64 : public IUnknown
{
public:
virtual HRESULT STDMETHODCALLTYPE ParseProcedureText(
/* [in] */ LPCOLESTR pstrCode,
/* [in] */ LPCOLESTR pstrFormalParams,
/* [in] */ LPCOLESTR pstrItemName,
/* [in] */ IUnknown *punkContext,
/* [in] */ LPCOLESTR pstrDelimiter,
/* [in] */ DWORDLONG dwSourceContextCookie,
/* [in] */ ULONG ulStartingLineNumber,
/* [in] */ DWORD dwFlags,
/* [out] */ IDispatch **ppdisp) = 0;
};
#else /* C style interface */
typedef struct IActiveScriptParseProcedureOld64Vtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IActiveScriptParseProcedureOld64 * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IActiveScriptParseProcedureOld64 * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IActiveScriptParseProcedureOld64 * This);
HRESULT ( STDMETHODCALLTYPE *ParseProcedureText )(
IActiveScriptParseProcedureOld64 * This,
/* [in] */ LPCOLESTR pstrCode,
/* [in] */ LPCOLESTR pstrFormalParams,
/* [in] */ LPCOLESTR pstrItemName,
/* [in] */ IUnknown *punkContext,
/* [in] */ LPCOLESTR pstrDelimiter,
/* [in] */ DWORDLONG dwSourceContextCookie,
/* [in] */ ULONG ulStartingLineNumber,
/* [in] */ DWORD dwFlags,
/* [out] */ IDispatch **ppdisp);
END_INTERFACE
} IActiveScriptParseProcedureOld64Vtbl;
interface IActiveScriptParseProcedureOld64
{
CONST_VTBL struct IActiveScriptParseProcedureOld64Vtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IActiveScriptParseProcedureOld64_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define IActiveScriptParseProcedureOld64_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define IActiveScriptParseProcedureOld64_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define IActiveScriptParseProcedureOld64_ParseProcedureText(This,pstrCode,pstrFormalParams,pstrItemName,punkContext,pstrDelimiter,dwSourceContextCookie,ulStartingLineNumber,dwFlags,ppdisp) \
( (This)->lpVtbl -> ParseProcedureText(This,pstrCode,pstrFormalParams,pstrItemName,punkContext,pstrDelimiter,dwSourceContextCookie,ulStartingLineNumber,dwFlags,ppdisp) )
#endif /* COBJMACROS */
#endif /* C style interface */
HRESULT STDMETHODCALLTYPE IActiveScriptParseProcedureOld64_ParseProcedureText_Proxy(
IActiveScriptParseProcedureOld64 * This,
/* [in] */ LPCOLESTR pstrCode,
/* [in] */ LPCOLESTR pstrFormalParams,
/* [in] */ LPCOLESTR pstrItemName,
/* [in] */ IUnknown *punkContext,
/* [in] */ LPCOLESTR pstrDelimiter,
/* [in] */ DWORDLONG dwSourceContextCookie,
/* [in] */ ULONG ulStartingLineNumber,
/* [in] */ DWORD dwFlags,
/* [out] */ IDispatch **ppdisp);
void __RPC_STUB IActiveScriptParseProcedureOld64_ParseProcedureText_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IActiveScriptParseProcedureOld64_INTERFACE_DEFINED__ */
/* interface __MIDL_itf_activscp_0269 */
/* [local] */
#ifdef _WIN64
#define IActiveScriptParseProcedureOld IActiveScriptParseProcedureOld64
#define IID_IActiveScriptParseProcedureOld IID_IActiveScriptParseProcedureOld64
#else
#define IActiveScriptParseProcedureOld IActiveScriptParseProcedureOld32
#define IID_IActiveScriptParseProcedureOld IID_IActiveScriptParseProcedureOld32
#endif
typedef IActiveScriptParseProcedureOld *PIActiveScriptParseProcedureOld;
extern RPC_IF_HANDLE __MIDL_itf_activscp_0269_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_activscp_0269_v0_0_s_ifspec;
#ifndef __IActiveScriptParseProcedure32_INTERFACE_DEFINED__
#define __IActiveScriptParseProcedure32_INTERFACE_DEFINED__
/* interface IActiveScriptParseProcedure32 */
/* [unique][uuid][object] */
EXTERN_C const IID IID_IActiveScriptParseProcedure32;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("AA5B6A80-B834-11d0-932F-00A0C90DCAA9")
IActiveScriptParseProcedure32 : public IUnknown
{
public:
virtual HRESULT STDMETHODCALLTYPE ParseProcedureText(
/* [in] */ LPCOLESTR pstrCode,
/* [in] */ LPCOLESTR pstrFormalParams,
/* [in] */ LPCOLESTR pstrProcedureName,
/* [in] */ LPCOLESTR pstrItemName,
/* [in] */ IUnknown *punkContext,
/* [in] */ LPCOLESTR pstrDelimiter,
/* [in] */ DWORD dwSourceContextCookie,
/* [in] */ ULONG ulStartingLineNumber,
/* [in] */ DWORD dwFlags,
/* [out] */ IDispatch **ppdisp) = 0;
};
#else /* C style interface */
typedef struct IActiveScriptParseProcedure32Vtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IActiveScriptParseProcedure32 * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IActiveScriptParseProcedure32 * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IActiveScriptParseProcedure32 * This);
HRESULT ( STDMETHODCALLTYPE *ParseProcedureText )(
IActiveScriptParseProcedure32 * This,
/* [in] */ LPCOLESTR pstrCode,
/* [in] */ LPCOLESTR pstrFormalParams,
/* [in] */ LPCOLESTR pstrProcedureName,
/* [in] */ LPCOLESTR pstrItemName,
/* [in] */ IUnknown *punkContext,
/* [in] */ LPCOLESTR pstrDelimiter,
/* [in] */ DWORD dwSourceContextCookie,
/* [in] */ ULONG ulStartingLineNumber,
/* [in] */ DWORD dwFlags,
/* [out] */ IDispatch **ppdisp);
END_INTERFACE
} IActiveScriptParseProcedure32Vtbl;
interface IActiveScriptParseProcedure32
{
CONST_VTBL struct IActiveScriptParseProcedure32Vtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IActiveScriptParseProcedure32_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define IActiveScriptParseProcedure32_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define IActiveScriptParseProcedure32_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define IActiveScriptParseProcedure32_ParseProcedureText(This,pstrCode,pstrFormalParams,pstrProcedureName,pstrItemName,punkContext,pstrDelimiter,dwSourceContextCookie,ulStartingLineNumber,dwFlags,ppdisp) \
( (This)->lpVtbl -> ParseProcedureText(This,pstrCode,pstrFormalParams,pstrProcedureName,pstrItemName,punkContext,pstrDelimiter,dwSourceContextCookie,ulStartingLineNumber,dwFlags,ppdisp) )
#endif /* COBJMACROS */
#endif /* C style interface */
HRESULT STDMETHODCALLTYPE IActiveScriptParseProcedure32_ParseProcedureText_Proxy(
IActiveScriptParseProcedure32 * This,
/* [in] */ LPCOLESTR pstrCode,
/* [in] */ LPCOLESTR pstrFormalParams,
/* [in] */ LPCOLESTR pstrProcedureName,
/* [in] */ LPCOLESTR pstrItemName,
/* [in] */ IUnknown *punkContext,
/* [in] */ LPCOLESTR pstrDelimiter,
/* [in] */ DWORD dwSourceContextCookie,
/* [in] */ ULONG ulStartingLineNumber,
/* [in] */ DWORD dwFlags,
/* [out] */ IDispatch **ppdisp);
void __RPC_STUB IActiveScriptParseProcedure32_ParseProcedureText_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IActiveScriptParseProcedure32_INTERFACE_DEFINED__ */
#ifndef __IActiveScriptParseProcedure64_INTERFACE_DEFINED__
#define __IActiveScriptParseProcedure64_INTERFACE_DEFINED__
/* interface IActiveScriptParseProcedure64 */
/* [unique][uuid][object] */
EXTERN_C const IID IID_IActiveScriptParseProcedure64;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("C64713B6-E029-4CC5-9200-438B72890B6A")
IActiveScriptParseProcedure64 : public IUnknown
{
public:
virtual HRESULT STDMETHODCALLTYPE ParseProcedureText(
/* [in] */ LPCOLESTR pstrCode,
/* [in] */ LPCOLESTR pstrFormalParams,
/* [in] */ LPCOLESTR pstrProcedureName,
/* [in] */ LPCOLESTR pstrItemName,
/* [in] */ IUnknown *punkContext,
/* [in] */ LPCOLESTR pstrDelimiter,
/* [in] */ DWORDLONG dwSourceContextCookie,
/* [in] */ ULONG ulStartingLineNumber,
/* [in] */ DWORD dwFlags,
/* [out] */ IDispatch **ppdisp) = 0;
};
#else /* C style interface */
typedef struct IActiveScriptParseProcedure64Vtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IActiveScriptParseProcedure64 * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IActiveScriptParseProcedure64 * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IActiveScriptParseProcedure64 * This);
HRESULT ( STDMETHODCALLTYPE *ParseProcedureText )(
IActiveScriptParseProcedure64 * This,
/* [in] */ LPCOLESTR pstrCode,
/* [in] */ LPCOLESTR pstrFormalParams,
/* [in] */ LPCOLESTR pstrProcedureName,
/* [in] */ LPCOLESTR pstrItemName,
/* [in] */ IUnknown *punkContext,
/* [in] */ LPCOLESTR pstrDelimiter,
/* [in] */ DWORDLONG dwSourceContextCookie,
/* [in] */ ULONG ulStartingLineNumber,
/* [in] */ DWORD dwFlags,
/* [out] */ IDispatch **ppdisp);
END_INTERFACE
} IActiveScriptParseProcedure64Vtbl;
interface IActiveScriptParseProcedure64
{
CONST_VTBL struct IActiveScriptParseProcedure64Vtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IActiveScriptParseProcedure64_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define IActiveScriptParseProcedure64_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define IActiveScriptParseProcedure64_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define IActiveScriptParseProcedure64_ParseProcedureText(This,pstrCode,pstrFormalParams,pstrProcedureName,pstrItemName,punkContext,pstrDelimiter,dwSourceContextCookie,ulStartingLineNumber,dwFlags,ppdisp) \
( (This)->lpVtbl -> ParseProcedureText(This,pstrCode,pstrFormalParams,pstrProcedureName,pstrItemName,punkContext,pstrDelimiter,dwSourceContextCookie,ulStartingLineNumber,dwFlags,ppdisp) )
#endif /* COBJMACROS */
#endif /* C style interface */
HRESULT STDMETHODCALLTYPE IActiveScriptParseProcedure64_ParseProcedureText_Proxy(
IActiveScriptParseProcedure64 * This,
/* [in] */ LPCOLESTR pstrCode,
/* [in] */ LPCOLESTR pstrFormalParams,
/* [in] */ LPCOLESTR pstrProcedureName,
/* [in] */ LPCOLESTR pstrItemName,
/* [in] */ IUnknown *punkContext,
/* [in] */ LPCOLESTR pstrDelimiter,
/* [in] */ DWORDLONG dwSourceContextCookie,
/* [in] */ ULONG ulStartingLineNumber,
/* [in] */ DWORD dwFlags,
/* [out] */ IDispatch **ppdisp);
void __RPC_STUB IActiveScriptParseProcedure64_ParseProcedureText_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IActiveScriptParseProcedure64_INTERFACE_DEFINED__ */
/* interface __MIDL_itf_activscp_0271 */
/* [local] */
#ifdef _WIN64
#define IActiveScriptParseProcedure IActiveScriptParseProcedure64
#define IID_IActiveScriptParseProcedure IID_IActiveScriptParseProcedure64
#else
#define IActiveScriptParseProcedure IActiveScriptParseProcedure32
#define IID_IActiveScriptParseProcedure IID_IActiveScriptParseProcedure32
#endif
typedef IActiveScriptParseProcedure *PIActiveScriptParseProcedure;
extern RPC_IF_HANDLE __MIDL_itf_activscp_0271_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_activscp_0271_v0_0_s_ifspec;
#ifndef __IActiveScriptParseProcedure2_32_INTERFACE_DEFINED__
#define __IActiveScriptParseProcedure2_32_INTERFACE_DEFINED__
/* interface IActiveScriptParseProcedure2_32 */
/* [unique][uuid][object] */
EXTERN_C const IID IID_IActiveScriptParseProcedure2_32;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("71EE5B20-FB04-11d1-B3A8-00A0C911E8B2")
IActiveScriptParseProcedure2_32 : public IActiveScriptParseProcedure32
{
public:
};
#else /* C style interface */
typedef struct IActiveScriptParseProcedure2_32Vtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IActiveScriptParseProcedure2_32 * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IActiveScriptParseProcedure2_32 * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IActiveScriptParseProcedure2_32 * This);
HRESULT ( STDMETHODCALLTYPE *ParseProcedureText )(
IActiveScriptParseProcedure2_32 * This,
/* [in] */ LPCOLESTR pstrCode,
/* [in] */ LPCOLESTR pstrFormalParams,
/* [in] */ LPCOLESTR pstrProcedureName,
/* [in] */ LPCOLESTR pstrItemName,
/* [in] */ IUnknown *punkContext,
/* [in] */ LPCOLESTR pstrDelimiter,
/* [in] */ DWORD dwSourceContextCookie,
/* [in] */ ULONG ulStartingLineNumber,
/* [in] */ DWORD dwFlags,
/* [out] */ IDispatch **ppdisp);
END_INTERFACE
} IActiveScriptParseProcedure2_32Vtbl;
interface IActiveScriptParseProcedure2_32
{
CONST_VTBL struct IActiveScriptParseProcedure2_32Vtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IActiveScriptParseProcedure2_32_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define IActiveScriptParseProcedure2_32_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define IActiveScriptParseProcedure2_32_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define IActiveScriptParseProcedure2_32_ParseProcedureText(This,pstrCode,pstrFormalParams,pstrProcedureName,pstrItemName,punkContext,pstrDelimiter,dwSourceContextCookie,ulStartingLineNumber,dwFlags,ppdisp) \
( (This)->lpVtbl -> ParseProcedureText(This,pstrCode,pstrFormalParams,pstrProcedureName,pstrItemName,punkContext,pstrDelimiter,dwSourceContextCookie,ulStartingLineNumber,dwFlags,ppdisp) )
#endif /* COBJMACROS */
#endif /* C style interface */
#endif /* __IActiveScriptParseProcedure2_32_INTERFACE_DEFINED__ */
#ifndef __IActiveScriptParseProcedure2_64_INTERFACE_DEFINED__
#define __IActiveScriptParseProcedure2_64_INTERFACE_DEFINED__
/* interface IActiveScriptParseProcedure2_64 */
/* [unique][uuid][object] */
EXTERN_C const IID IID_IActiveScriptParseProcedure2_64;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("FE7C4271-210C-448D-9F54-76DAB7047B28")
IActiveScriptParseProcedure2_64 : public IActiveScriptParseProcedure64
{
public:
};
#else /* C style interface */
typedef struct IActiveScriptParseProcedure2_64Vtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IActiveScriptParseProcedure2_64 * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IActiveScriptParseProcedure2_64 * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IActiveScriptParseProcedure2_64 * This);
HRESULT ( STDMETHODCALLTYPE *ParseProcedureText )(
IActiveScriptParseProcedure2_64 * This,
/* [in] */ LPCOLESTR pstrCode,
/* [in] */ LPCOLESTR pstrFormalParams,
/* [in] */ LPCOLESTR pstrProcedureName,
/* [in] */ LPCOLESTR pstrItemName,
/* [in] */ IUnknown *punkContext,
/* [in] */ LPCOLESTR pstrDelimiter,
/* [in] */ DWORDLONG dwSourceContextCookie,
/* [in] */ ULONG ulStartingLineNumber,
/* [in] */ DWORD dwFlags,
/* [out] */ IDispatch **ppdisp);
END_INTERFACE
} IActiveScriptParseProcedure2_64Vtbl;
interface IActiveScriptParseProcedure2_64
{
CONST_VTBL struct IActiveScriptParseProcedure2_64Vtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IActiveScriptParseProcedure2_64_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define IActiveScriptParseProcedure2_64_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define IActiveScriptParseProcedure2_64_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define IActiveScriptParseProcedure2_64_ParseProcedureText(This,pstrCode,pstrFormalParams,pstrProcedureName,pstrItemName,punkContext,pstrDelimiter,dwSourceContextCookie,ulStartingLineNumber,dwFlags,ppdisp) \
( (This)->lpVtbl -> ParseProcedureText(This,pstrCode,pstrFormalParams,pstrProcedureName,pstrItemName,punkContext,pstrDelimiter,dwSourceContextCookie,ulStartingLineNumber,dwFlags,ppdisp) )
#endif /* COBJMACROS */
#endif /* C style interface */
#endif /* __IActiveScriptParseProcedure2_64_INTERFACE_DEFINED__ */
/* interface __MIDL_itf_activscp_0273 */
/* [local] */
#ifdef _WIN64
#define IActiveScriptParseProcedure2 IActiveScriptParseProcedure2_64
#define IID_IActiveScriptParseProcedure2 IID_IActiveScriptParseProcedure2_64
#else
#define IActiveScriptParseProcedure2 IActiveScriptParseProcedure2_32
#define IID_IActiveScriptParseProcedure2 IID_IActiveScriptParseProcedure2_32
#endif
typedef IActiveScriptParseProcedure2 *PIActiveScriptParseProcedure2;
extern RPC_IF_HANDLE __MIDL_itf_activscp_0273_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_activscp_0273_v0_0_s_ifspec;
#ifndef __IActiveScriptEncode_INTERFACE_DEFINED__
#define __IActiveScriptEncode_INTERFACE_DEFINED__
/* interface IActiveScriptEncode */
/* [unique][uuid][object] */
EXTERN_C const IID IID_IActiveScriptEncode;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("BB1A2AE3-A4F9-11cf-8F20-00805F2CD064")
IActiveScriptEncode : public IUnknown
{
public:
virtual HRESULT STDMETHODCALLTYPE EncodeSection(
/* [in] */ LPCOLESTR pchIn,
/* [in] */ DWORD cchIn,
/* [out][in] */ LPOLESTR pchOut,
/* [in] */ DWORD cchOut,
/* [out][in] */ DWORD *pcchRet) = 0;
virtual HRESULT STDMETHODCALLTYPE DecodeScript(
/* [in] */ LPCOLESTR pchIn,
/* [in] */ DWORD cchIn,
/* [out][in] */ LPOLESTR pchOut,
/* [in] */ DWORD cchOut,
/* [out][in] */ DWORD *pcchRet) = 0;
virtual HRESULT STDMETHODCALLTYPE GetEncodeProgId(
/* [out][in] */ BSTR *pbstrOut) = 0;
};
#else /* C style interface */
typedef struct IActiveScriptEncodeVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IActiveScriptEncode * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IActiveScriptEncode * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IActiveScriptEncode * This);
HRESULT ( STDMETHODCALLTYPE *EncodeSection )(
IActiveScriptEncode * This,
/* [in] */ LPCOLESTR pchIn,
/* [in] */ DWORD cchIn,
/* [out][in] */ LPOLESTR pchOut,
/* [in] */ DWORD cchOut,
/* [out][in] */ DWORD *pcchRet);
HRESULT ( STDMETHODCALLTYPE *DecodeScript )(
IActiveScriptEncode * This,
/* [in] */ LPCOLESTR pchIn,
/* [in] */ DWORD cchIn,
/* [out][in] */ LPOLESTR pchOut,
/* [in] */ DWORD cchOut,
/* [out][in] */ DWORD *pcchRet);
HRESULT ( STDMETHODCALLTYPE *GetEncodeProgId )(
IActiveScriptEncode * This,
/* [out][in] */ BSTR *pbstrOut);
END_INTERFACE
} IActiveScriptEncodeVtbl;
interface IActiveScriptEncode
{
CONST_VTBL struct IActiveScriptEncodeVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IActiveScriptEncode_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define IActiveScriptEncode_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define IActiveScriptEncode_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define IActiveScriptEncode_EncodeSection(This,pchIn,cchIn,pchOut,cchOut,pcchRet) \
( (This)->lpVtbl -> EncodeSection(This,pchIn,cchIn,pchOut,cchOut,pcchRet) )
#define IActiveScriptEncode_DecodeScript(This,pchIn,cchIn,pchOut,cchOut,pcchRet) \
( (This)->lpVtbl -> DecodeScript(This,pchIn,cchIn,pchOut,cchOut,pcchRet) )
#define IActiveScriptEncode_GetEncodeProgId(This,pbstrOut) \
( (This)->lpVtbl -> GetEncodeProgId(This,pbstrOut) )
#endif /* COBJMACROS */
#endif /* C style interface */
HRESULT STDMETHODCALLTYPE IActiveScriptEncode_EncodeSection_Proxy(
IActiveScriptEncode * This,
/* [in] */ LPCOLESTR pchIn,
/* [in] */ DWORD cchIn,
/* [out][in] */ LPOLESTR pchOut,
/* [in] */ DWORD cchOut,
/* [out][in] */ DWORD *pcchRet);
void __RPC_STUB IActiveScriptEncode_EncodeSection_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScriptEncode_DecodeScript_Proxy(
IActiveScriptEncode * This,
/* [in] */ LPCOLESTR pchIn,
/* [in] */ DWORD cchIn,
/* [out][in] */ LPOLESTR pchOut,
/* [in] */ DWORD cchOut,
/* [out][in] */ DWORD *pcchRet);
void __RPC_STUB IActiveScriptEncode_DecodeScript_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScriptEncode_GetEncodeProgId_Proxy(
IActiveScriptEncode * This,
/* [out][in] */ BSTR *pbstrOut);
void __RPC_STUB IActiveScriptEncode_GetEncodeProgId_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IActiveScriptEncode_INTERFACE_DEFINED__ */
#ifndef __IActiveScriptHostEncode_INTERFACE_DEFINED__
#define __IActiveScriptHostEncode_INTERFACE_DEFINED__
/* interface IActiveScriptHostEncode */
/* [unique][uuid][object] */
EXTERN_C const IID IID_IActiveScriptHostEncode;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("BEE9B76E-CFE3-11d1-B747-00C04FC2B085")
IActiveScriptHostEncode : public IUnknown
{
public:
virtual HRESULT STDMETHODCALLTYPE EncodeScriptHostFile(
/* [in] */ BSTR bstrInFile,
/* [out][in] */ BSTR *pbstrOutFile,
/* [in] */ unsigned long cFlags,
/* [in] */ BSTR bstrDefaultLang) = 0;
};
#else /* C style interface */
typedef struct IActiveScriptHostEncodeVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IActiveScriptHostEncode * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IActiveScriptHostEncode * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IActiveScriptHostEncode * This);
HRESULT ( STDMETHODCALLTYPE *EncodeScriptHostFile )(
IActiveScriptHostEncode * This,
/* [in] */ BSTR bstrInFile,
/* [out][in] */ BSTR *pbstrOutFile,
/* [in] */ unsigned long cFlags,
/* [in] */ BSTR bstrDefaultLang);
END_INTERFACE
} IActiveScriptHostEncodeVtbl;
interface IActiveScriptHostEncode
{
CONST_VTBL struct IActiveScriptHostEncodeVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IActiveScriptHostEncode_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define IActiveScriptHostEncode_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define IActiveScriptHostEncode_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define IActiveScriptHostEncode_EncodeScriptHostFile(This,bstrInFile,pbstrOutFile,cFlags,bstrDefaultLang) \
( (This)->lpVtbl -> EncodeScriptHostFile(This,bstrInFile,pbstrOutFile,cFlags,bstrDefaultLang) )
#endif /* COBJMACROS */
#endif /* C style interface */
HRESULT STDMETHODCALLTYPE IActiveScriptHostEncode_EncodeScriptHostFile_Proxy(
IActiveScriptHostEncode * This,
/* [in] */ BSTR bstrInFile,
/* [out][in] */ BSTR *pbstrOutFile,
/* [in] */ unsigned long cFlags,
/* [in] */ BSTR bstrDefaultLang);
void __RPC_STUB IActiveScriptHostEncode_EncodeScriptHostFile_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IActiveScriptHostEncode_INTERFACE_DEFINED__ */
#ifndef __IBindEventHandler_INTERFACE_DEFINED__
#define __IBindEventHandler_INTERFACE_DEFINED__
/* interface IBindEventHandler */
/* [unique][uuid][object] */
EXTERN_C const IID IID_IBindEventHandler;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("63CDBCB0-C1B1-11d0-9336-00A0C90DCAA9")
IBindEventHandler : public IUnknown
{
public:
virtual HRESULT STDMETHODCALLTYPE BindHandler(
/* [in] */ LPCOLESTR pstrEvent,
/* [in] */ IDispatch *pdisp) = 0;
};
#else /* C style interface */
typedef struct IBindEventHandlerVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IBindEventHandler * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IBindEventHandler * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IBindEventHandler * This);
HRESULT ( STDMETHODCALLTYPE *BindHandler )(
IBindEventHandler * This,
/* [in] */ LPCOLESTR pstrEvent,
/* [in] */ IDispatch *pdisp);
END_INTERFACE
} IBindEventHandlerVtbl;
interface IBindEventHandler
{
CONST_VTBL struct IBindEventHandlerVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IBindEventHandler_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define IBindEventHandler_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define IBindEventHandler_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define IBindEventHandler_BindHandler(This,pstrEvent,pdisp) \
( (This)->lpVtbl -> BindHandler(This,pstrEvent,pdisp) )
#endif /* COBJMACROS */
#endif /* C style interface */
HRESULT STDMETHODCALLTYPE IBindEventHandler_BindHandler_Proxy(
IBindEventHandler * This,
/* [in] */ LPCOLESTR pstrEvent,
/* [in] */ IDispatch *pdisp);
void __RPC_STUB IBindEventHandler_BindHandler_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IBindEventHandler_INTERFACE_DEFINED__ */
#ifndef __IActiveScriptStats_INTERFACE_DEFINED__
#define __IActiveScriptStats_INTERFACE_DEFINED__
/* interface IActiveScriptStats */
/* [unique][uuid][object] */
EXTERN_C const IID IID_IActiveScriptStats;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("B8DA6310-E19B-11d0-933C-00A0C90DCAA9")
IActiveScriptStats : public IUnknown
{
public:
virtual HRESULT STDMETHODCALLTYPE GetStat(
/* [in] */ DWORD stid,
/* [out] */ ULONG *pluHi,
/* [out] */ ULONG *pluLo) = 0;
virtual HRESULT STDMETHODCALLTYPE GetStatEx(
/* [in] */ REFGUID guid,
/* [out] */ ULONG *pluHi,
/* [out] */ ULONG *pluLo) = 0;
virtual HRESULT STDMETHODCALLTYPE ResetStats( void) = 0;
};
#else /* C style interface */
typedef struct IActiveScriptStatsVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IActiveScriptStats * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IActiveScriptStats * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IActiveScriptStats * This);
HRESULT ( STDMETHODCALLTYPE *GetStat )(
IActiveScriptStats * This,
/* [in] */ DWORD stid,
/* [out] */ ULONG *pluHi,
/* [out] */ ULONG *pluLo);
HRESULT ( STDMETHODCALLTYPE *GetStatEx )(
IActiveScriptStats * This,
/* [in] */ REFGUID guid,
/* [out] */ ULONG *pluHi,
/* [out] */ ULONG *pluLo);
HRESULT ( STDMETHODCALLTYPE *ResetStats )(
IActiveScriptStats * This);
END_INTERFACE
} IActiveScriptStatsVtbl;
interface IActiveScriptStats
{
CONST_VTBL struct IActiveScriptStatsVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IActiveScriptStats_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define IActiveScriptStats_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define IActiveScriptStats_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define IActiveScriptStats_GetStat(This,stid,pluHi,pluLo) \
( (This)->lpVtbl -> GetStat(This,stid,pluHi,pluLo) )
#define IActiveScriptStats_GetStatEx(This,guid,pluHi,pluLo) \
( (This)->lpVtbl -> GetStatEx(This,guid,pluHi,pluLo) )
#define IActiveScriptStats_ResetStats(This) \
( (This)->lpVtbl -> ResetStats(This) )
#endif /* COBJMACROS */
#endif /* C style interface */
HRESULT STDMETHODCALLTYPE IActiveScriptStats_GetStat_Proxy(
IActiveScriptStats * This,
/* [in] */ DWORD stid,
/* [out] */ ULONG *pluHi,
/* [out] */ ULONG *pluLo);
void __RPC_STUB IActiveScriptStats_GetStat_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScriptStats_GetStatEx_Proxy(
IActiveScriptStats * This,
/* [in] */ REFGUID guid,
/* [out] */ ULONG *pluHi,
/* [out] */ ULONG *pluLo);
void __RPC_STUB IActiveScriptStats_GetStatEx_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScriptStats_ResetStats_Proxy(
IActiveScriptStats * This);
void __RPC_STUB IActiveScriptStats_ResetStats_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IActiveScriptStats_INTERFACE_DEFINED__ */
#ifndef __IActiveScriptProperty_INTERFACE_DEFINED__
#define __IActiveScriptProperty_INTERFACE_DEFINED__
/* interface IActiveScriptProperty */
/* [unique][uuid][object] */
EXTERN_C const IID IID_IActiveScriptProperty;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("4954E0D0-FBC7-11D1-8410-006008C3FBFC")
IActiveScriptProperty : public IUnknown
{
public:
virtual HRESULT STDMETHODCALLTYPE GetProperty(
/* [in] */ DWORD dwProperty,
/* [in] */ VARIANT *pvarIndex,
/* [out] */ VARIANT *pvarValue) = 0;
virtual HRESULT STDMETHODCALLTYPE SetProperty(
/* [in] */ DWORD dwProperty,
/* [in] */ VARIANT *pvarIndex,
/* [in] */ VARIANT *pvarValue) = 0;
};
#else /* C style interface */
typedef struct IActiveScriptPropertyVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IActiveScriptProperty * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IActiveScriptProperty * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IActiveScriptProperty * This);
HRESULT ( STDMETHODCALLTYPE *GetProperty )(
IActiveScriptProperty * This,
/* [in] */ DWORD dwProperty,
/* [in] */ VARIANT *pvarIndex,
/* [out] */ VARIANT *pvarValue);
HRESULT ( STDMETHODCALLTYPE *SetProperty )(
IActiveScriptProperty * This,
/* [in] */ DWORD dwProperty,
/* [in] */ VARIANT *pvarIndex,
/* [in] */ VARIANT *pvarValue);
END_INTERFACE
} IActiveScriptPropertyVtbl;
interface IActiveScriptProperty
{
CONST_VTBL struct IActiveScriptPropertyVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IActiveScriptProperty_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define IActiveScriptProperty_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define IActiveScriptProperty_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define IActiveScriptProperty_GetProperty(This,dwProperty,pvarIndex,pvarValue) \
( (This)->lpVtbl -> GetProperty(This,dwProperty,pvarIndex,pvarValue) )
#define IActiveScriptProperty_SetProperty(This,dwProperty,pvarIndex,pvarValue) \
( (This)->lpVtbl -> SetProperty(This,dwProperty,pvarIndex,pvarValue) )
#endif /* COBJMACROS */
#endif /* C style interface */
HRESULT STDMETHODCALLTYPE IActiveScriptProperty_GetProperty_Proxy(
IActiveScriptProperty * This,
/* [in] */ DWORD dwProperty,
/* [in] */ VARIANT *pvarIndex,
/* [out] */ VARIANT *pvarValue);
void __RPC_STUB IActiveScriptProperty_GetProperty_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
HRESULT STDMETHODCALLTYPE IActiveScriptProperty_SetProperty_Proxy(
IActiveScriptProperty * This,
/* [in] */ DWORD dwProperty,
/* [in] */ VARIANT *pvarIndex,
/* [in] */ VARIANT *pvarValue);
void __RPC_STUB IActiveScriptProperty_SetProperty_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IActiveScriptProperty_INTERFACE_DEFINED__ */
#ifndef __ITridentEventSink_INTERFACE_DEFINED__
#define __ITridentEventSink_INTERFACE_DEFINED__
/* interface ITridentEventSink */
/* [unique][uuid][object] */
EXTERN_C const IID IID_ITridentEventSink;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("1DC9CA50-06EF-11d2-8415-006008C3FBFC")
ITridentEventSink : public IUnknown
{
public:
virtual HRESULT STDMETHODCALLTYPE FireEvent(
/* [in] */ LPCOLESTR pstrEvent,
/* [in] */ DISPPARAMS *pdp,
/* [out] */ VARIANT *pvarRes,
/* [out] */ EXCEPINFO *pei) = 0;
};
#else /* C style interface */
typedef struct ITridentEventSinkVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
ITridentEventSink * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
ITridentEventSink * This);
ULONG ( STDMETHODCALLTYPE *Release )(
ITridentEventSink * This);
HRESULT ( STDMETHODCALLTYPE *FireEvent )(
ITridentEventSink * This,
/* [in] */ LPCOLESTR pstrEvent,
/* [in] */ DISPPARAMS *pdp,
/* [out] */ VARIANT *pvarRes,
/* [out] */ EXCEPINFO *pei);
END_INTERFACE
} ITridentEventSinkVtbl;
interface ITridentEventSink
{
CONST_VTBL struct ITridentEventSinkVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define ITridentEventSink_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define ITridentEventSink_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define ITridentEventSink_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define ITridentEventSink_FireEvent(This,pstrEvent,pdp,pvarRes,pei) \
( (This)->lpVtbl -> FireEvent(This,pstrEvent,pdp,pvarRes,pei) )
#endif /* COBJMACROS */
#endif /* C style interface */
HRESULT STDMETHODCALLTYPE ITridentEventSink_FireEvent_Proxy(
ITridentEventSink * This,
/* [in] */ LPCOLESTR pstrEvent,
/* [in] */ DISPPARAMS *pdp,
/* [out] */ VARIANT *pvarRes,
/* [out] */ EXCEPINFO *pei);
void __RPC_STUB ITridentEventSink_FireEvent_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __ITridentEventSink_INTERFACE_DEFINED__ */
#ifndef __IActiveScriptGarbageCollector_INTERFACE_DEFINED__
#define __IActiveScriptGarbageCollector_INTERFACE_DEFINED__
/* interface IActiveScriptGarbageCollector */
/* [unique][uuid][object] */
EXTERN_C const IID IID_IActiveScriptGarbageCollector;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("6AA2C4A0-2B53-11d4-A2A0-00104BD35090")
IActiveScriptGarbageCollector : public IUnknown
{
public:
virtual HRESULT STDMETHODCALLTYPE CollectGarbage(
SCRIPTGCTYPE scriptgctype) = 0;
};
#else /* C style interface */
typedef struct IActiveScriptGarbageCollectorVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IActiveScriptGarbageCollector * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IActiveScriptGarbageCollector * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IActiveScriptGarbageCollector * This);
HRESULT ( STDMETHODCALLTYPE *CollectGarbage )(
IActiveScriptGarbageCollector * This,
SCRIPTGCTYPE scriptgctype);
END_INTERFACE
} IActiveScriptGarbageCollectorVtbl;
interface IActiveScriptGarbageCollector
{
CONST_VTBL struct IActiveScriptGarbageCollectorVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IActiveScriptGarbageCollector_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define IActiveScriptGarbageCollector_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define IActiveScriptGarbageCollector_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define IActiveScriptGarbageCollector_CollectGarbage(This,scriptgctype) \
( (This)->lpVtbl -> CollectGarbage(This,scriptgctype) )
#endif /* COBJMACROS */
#endif /* C style interface */
HRESULT STDMETHODCALLTYPE IActiveScriptGarbageCollector_CollectGarbage_Proxy(
IActiveScriptGarbageCollector * This,
SCRIPTGCTYPE scriptgctype);
void __RPC_STUB IActiveScriptGarbageCollector_CollectGarbage_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IActiveScriptGarbageCollector_INTERFACE_DEFINED__ */
#ifndef __IActiveScriptSIPInfo_INTERFACE_DEFINED__
#define __IActiveScriptSIPInfo_INTERFACE_DEFINED__
/* interface IActiveScriptSIPInfo */
/* [unique][uuid][object] */
EXTERN_C const IID IID_IActiveScriptSIPInfo;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("764651D0-38DE-11d4-A2A3-00104BD35090")
IActiveScriptSIPInfo : public IUnknown
{
public:
virtual HRESULT STDMETHODCALLTYPE GetSIPOID(
/* [out] */ GUID *poid_sip) = 0;
};
#else /* C style interface */
typedef struct IActiveScriptSIPInfoVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IActiveScriptSIPInfo * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IActiveScriptSIPInfo * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IActiveScriptSIPInfo * This);
HRESULT ( STDMETHODCALLTYPE *GetSIPOID )(
IActiveScriptSIPInfo * This,
/* [out] */ GUID *poid_sip);
END_INTERFACE
} IActiveScriptSIPInfoVtbl;
interface IActiveScriptSIPInfo
{
CONST_VTBL struct IActiveScriptSIPInfoVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IActiveScriptSIPInfo_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define IActiveScriptSIPInfo_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define IActiveScriptSIPInfo_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define IActiveScriptSIPInfo_GetSIPOID(This,poid_sip) \
( (This)->lpVtbl -> GetSIPOID(This,poid_sip) )
#endif /* COBJMACROS */
#endif /* C style interface */
HRESULT STDMETHODCALLTYPE IActiveScriptSIPInfo_GetSIPOID_Proxy(
IActiveScriptSIPInfo * This,
/* [out] */ GUID *poid_sip);
void __RPC_STUB IActiveScriptSIPInfo_GetSIPOID_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IActiveScriptSIPInfo_INTERFACE_DEFINED__ */
/* interface __MIDL_itf_activscp_0281 */
/* [local] */
#endif // __ActivScp_h
extern RPC_IF_HANDLE __MIDL_itf_activscp_0281_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_activscp_0281_v0_0_s_ifspec;
/* Additional Prototypes for ALL interfaces */
unsigned long __RPC_USER BSTR_UserSize( unsigned long *, unsigned long , BSTR * );
unsigned char * __RPC_USER BSTR_UserMarshal( unsigned long *, unsigned char *, BSTR * );
unsigned char * __RPC_USER BSTR_UserUnmarshal(unsigned long *, unsigned char *, BSTR * );
void __RPC_USER BSTR_UserFree( unsigned long *, BSTR * );
unsigned long __RPC_USER HWND_UserSize( unsigned long *, unsigned long , HWND * );
unsigned char * __RPC_USER HWND_UserMarshal( unsigned long *, unsigned char *, HWND * );
unsigned char * __RPC_USER HWND_UserUnmarshal(unsigned long *, unsigned char *, HWND * );
void __RPC_USER HWND_UserFree( unsigned long *, HWND * );
unsigned long __RPC_USER VARIANT_UserSize( unsigned long *, unsigned long , VARIANT * );
unsigned char * __RPC_USER VARIANT_UserMarshal( unsigned long *, unsigned char *, VARIANT * );
unsigned char * __RPC_USER VARIANT_UserUnmarshal(unsigned long *, unsigned char *, VARIANT * );
void __RPC_USER VARIANT_UserFree( unsigned long *, VARIANT * );
/* [local] */ HRESULT STDMETHODCALLTYPE IActiveScriptError_GetExceptionInfo_Proxy(
IActiveScriptError * This,
/* [out] */ EXCEPINFO *pexcepinfo);
/* [call_as] */ HRESULT STDMETHODCALLTYPE IActiveScriptError_GetExceptionInfo_Stub(
IActiveScriptError * This,
/* [out] */ EXCEPINFO *pexcepinfo);
/* end of Additional Prototypes */
#ifdef __cplusplus
}
#endif
#endif
| [
"masonleeback@gmail.com"
] | masonleeback@gmail.com |
61cc100d09509bae3bc3221790685c92caad0cd5 | e35786873860aeecce9e09dedbc5802f645031ed | /GMatrixApp/main.cpp | 68c256444f394e7c465ccb3d3ab9eee909e9374f | [] | no_license | valezamora/ProyectoEnsamblador | ed9b04156d61c277edbcf0b6d10639f9c8a371a3 | 5a93f98374d87202ba266a4b3de615c9b7e9cc1d | refs/heads/master | 2020-04-02T14:58:22.326537 | 2018-12-17T05:31:56 | 2018-12-17T05:31:56 | 154,546,366 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 172 | cpp | #include "gmatrixapp.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
GMatrixApp w;
w.show();
return a.exec();
}
| [
"jim.zuniga@ucr.ac.cr"
] | jim.zuniga@ucr.ac.cr |
26552014cb1809b21cfe046a625509a84e94a69c | ebcef0049f18502e690a77ac2d2eca17fd9cab8b | /geoarc.cpp | cf1a3d2182f2c4a2b42e5b6a1b192bc77a997eb3 | [
"MIT"
] | permissive | MAPSWorks/QtGIS | 20b78e8212f19e65b1a5b57e313b779762d8c576 | 34fa6d83153c39541aec6da18cd189e8b7e1ca4c | refs/heads/master | 2020-04-05T03:24:36.235774 | 2018-10-30T08:58:36 | 2018-10-30T08:58:36 | 156,513,197 | 3 | 0 | MIT | 2018-11-07T08:20:58 | 2018-11-07T08:20:58 | null | UTF-8 | C++ | false | false | 439 | cpp | #include "geoarc.h"
GeoArc::GeoArc(int arcId,int ptSum,int fNodeId,int tNodeId)
{
this->arcId=arcId;
this->ptSum=ptSum;
this->fNodeId=fNodeId;
this->tNodeId=tNodeId;
}
double GeoArc::calculateDistance()
{
double distance=0;
for(int i=0;i<this->pts.size()-1;i++)
{
distance+=sqrt((pts[i+1].x-pts[i].x)*(pts[i+1].x-pts[i].x)+(pts[i+1].y-pts[i].y)*(pts[i+1].y-pts[i].y));
}
return distance;
}
| [
"mrdingjiaqi@gmail.com"
] | mrdingjiaqi@gmail.com |
cbbe3780ced9ead546fce9e0cc4352e5cef86409 | 68844281b86634580cec11bf455f56dee81aaea5 | /include/ph_concepts/algorithm.hpp | 2a13fbfa03c7886e78ce676f0b06d1f51a746dd8 | [
"Apache-2.0"
] | permissive | phiwen96/ph_image | 7e51482d9a56c66ad53cb331791690887c9867dc | 282bdd835d721a561c4f3afcbb76af5f9bda87ba | refs/heads/main | 2023-07-10T20:29:43.462997 | 2021-08-14T16:56:25 | 2021-08-14T16:56:25 | 396,071,712 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,861 | hpp | #pragma once
#include "concepts.hpp"
#include "Iterator.hpp"
#include "common.hpp"
#include "typeinfo.hpp"
#include "Bool.hpp"
#define forward(x) std::forward <decltype (x)> (x)
#define declval(T) std::declval <T> ()
#define decay(T) std::decay_t <T>
namespace ph
{
auto sort (Input_iterator auto begin, Input_iterator auto end) -> void;
///iterating over a sequence
//auto for_each (Input_iterator auto begin, Input_iterator auto end, decltype ([](int&){}()) fun) -> void;
EAT ({
function (value_a value_b) -> new_value
function (type_a type_b) -> new_type
})
/// Iterating over a sequence
auto for_each (ph::Range auto&& r, auto&& callable) -> void
requires requires (ph::typeinfo::range::access_type <decltype (r)> e) {
callable (forward (e));
}
{
for (auto&& i : r)
{
callable (forward (i));
}
}
template <typename T>
auto transform (ph::Range <T> auto&& source,
ph::Range <T> auto&& destination,
auto&& callable) -> void
requires requires //(ph::element_type_of <decltype (source)> e)
{
true;
// {callable (forward (e))} -> convertible_to <element_type_of <decltype (destination)>>;
}
{
assert (ph::len (source) <= ph::len (destination));
Iterator auto dest = ph::begin (source);
for (auto&& i : source)
{
*dest = forward (i);
++dest;
}
}
template <typename T>
auto contains (ph::Range auto&& r, auto&& element)
requires requires (ph::typeinfo::range::access_type <decltype (r)> e)
{
{e == element} -> Bool;
}
{
for (auto&& i : r)
{
if (i == element)
{
return true;
}
}
return false;
}
auto count_if (ph::Range auto&& r, auto&& callable) -> Size auto
requires requires (ph::typeinfo::range::access_type <decltype (r)> e) {
{callable (forward (e))} -> Bool;
}
{
Size auto res = size_t {0};
for (auto&& i : r)
{
if (callable (forward (i)))
{
++res;
}
}
return res;
}
auto count (ph::Range auto&& r, auto&& element) -> Size auto
requires requires (ph::typeinfo::range::access_type <decltype (r)> e) {
{e == element} -> Bool;
}
{
Size auto res = size_t {0};
for (auto&& i : r)
{
if (i == element)
{
++res;
}
}
return res;
}
auto find (ph::Range auto&& r, auto&& element) -> ph::Iterator auto
requires requires (ph::typeinfo::range::access_type <decltype (r)> i) {
{i == element} -> Bool;
}
{
Iterator auto i = ph::begin (r);
for (; i < ph::end (r); ++i)
{
if (*i == element)
{
break;
}
}
return i;
}
auto find_if (ph::Range auto&& r, auto&& callable) -> ph::Iterator auto
requires requires (ph::typeinfo::range::access_type <decltype (r)> i) {
{callable (forward (i))} -> Bool;
}
{
Iterator auto i = ph::begin (r);
for (; i < ph::end (r); ++i)
{
if (callable (forward (*i)))
{
break;
}
}
return i;
}
}
#undef forward
#undef declval
#undef decay
| [
"38218064+phiwen96@users.noreply.github.com"
] | 38218064+phiwen96@users.noreply.github.com |
e5f50ee6b05cc38f4780fab3c5f45195e66a3c13 | ce4d31e103aca0794e1eca81ec4421df7c1de3bb | /shared/Configuration/Configuration.h | 2b640b32cb1765d49e338d1c1bccb50d303cf525 | [] | no_license | WakBox/WakBox | a4cceb872aadedef8cf7a9a22d2bc7831fa1c1fd | a841d3259c557be085b420e503645f9854c7a9f0 | refs/heads/master | 2021-01-19T09:10:45.257808 | 2017-02-15T15:22:07 | 2017-02-15T15:22:07 | 82,073,859 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 529 | h | #ifndef CONFIGURATION_H
#define CONFIGURATION_H
#include <QtCore>
typedef QMap<QString, QString> ConfigMap;
class Configuration
{
public:
Configuration(QString filename);
~Configuration();
QString GetString(QString name);
bool GetBool(QString name);
int GetInt(QString name);
ushort GetUShort(QString name);
uint GetUInt(QString name);
bool Load();
bool Reload() { return Load(); }
private:
QString GetValue(QString name);
QString m_filename;
ConfigMap m_config;
};
#endif
| [
"kevin.ryser@koweb.ch"
] | kevin.ryser@koweb.ch |
498052d3b902ab9e156f0bd22ba27c7c45a887fc | 3b46bd66cb634ae1b905d7decde58cb6458a22f1 | /LibXenoverse/xenoviewer/ESKOgre.h | 04878ff9692124ec6904f6b9ffbdc9f7d6a7b67e | [] | no_license | mentine/LibXenoverse | 3dafd9b1a2749ef69515f8c78bba5e78890179d9 | eec59da0bd601642eb7782ea5033da9e3d25b461 | refs/heads/master | 2021-01-23T15:58:48.064103 | 2015-05-27T23:38:38 | 2015-05-27T23:38:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,148 | h | #ifndef ESKOGRE_H_INCLUDED
#define ESKOGRE_H_INCLUDED
class ESKOgre : public ESK {
protected:
Ogre::Skeleton *skeleton;
bool resources_created;
Ogre::SceneNode *skeleton_node;
Ogre::Entity *skeleton_entity;
EANAnimation *animation_to_change;
Ogre::AnimationState *current_animation_state;
bool to_delete;
public:
ESKOgre();
~ESKOgre();
void buildBone(unsigned short b, Ogre::Skeleton *ogre_skeleton, Ogre::Bone *parent_bone);
Ogre::Skeleton *createOgreSkeleton(Ogre::SceneManager *mSceneMgr);
void createFakeEntity(Ogre::SceneManager *mSceneMgr);
void refreshAnimations();
Ogre::Skeleton *getOgreSkeleton() {
return skeleton;
}
Ogre::Entity *getEntity() {
return skeleton_entity;
}
void tagAnimationChange(EANAnimation *new_animation) {
animation_to_change = new_animation;
}
void tagForDeletion() {
to_delete = true;
}
bool toDelete() {
return to_delete;
}
bool changedAnimation() {
if (animation_to_change) {
return true;
}
return false;
}
void changeAnimation();
Ogre::AnimationState *getCurrentAnimationState() {
return current_animation_state;
}
void destroyResources();
};
#endif | [
"dariosamo@gmail.com"
] | dariosamo@gmail.com |
acb3bf762871a8f152d7ab5cb6e7fc9e84037128 | 068fd57f5ce6be661c1b9a10091708d67a3985fb | /src/bounded.cpp | e4db3a4112d2201724b673794cb56825340cbd67 | [
"MIT"
] | permissive | zivkovicmilos/OS1Kernel | d5778864c53b7c11e30bc202728214512e97994a | 8a77c6a9b62d27719c5f7f61492f8dce6866c38a | refs/heads/master | 2020-05-15T14:20:15.009892 | 2019-10-12T21:18:38 | 2019-10-12T21:18:38 | 182,332,656 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 970 | cpp | //===========================================================================//
// Project: Projekat iz Operativnih sistema 1
// File: bounded.cpp
// Date: Jun 2019
//===========================================================================//
#include "bounded.h"
#include <iostream.h>
#include <stdlib.h>
#include "intLock.h"
BoundedBuffer::BoundedBuffer (unsigned size) : Size(size),
mutexa(1), mutext(1), spaceAvailable(size), itemAvailable(0),
head(0), tail(0) {
buffer = new char[size];
if (!buffer) exit(1);
}
BoundedBuffer::~BoundedBuffer(){
intLock
delete [] buffer;
intUnlock
}
int BoundedBuffer::append (char d) {
spaceAvailable.wait(0);
mutexa.wait(0);
buffer[tail] = d;
tail = (tail+1)%Size;
mutexa.signal();
itemAvailable.signal();
return 0;
}
char BoundedBuffer::take () {
itemAvailable.wait(0);
mutext.wait(0);
char d = buffer[head];
head = (head+1)%Size;
mutext.signal();
spaceAvailable.signal();
return d;
}
| [
"milosmisazivkovic@gmail.com"
] | milosmisazivkovic@gmail.com |
6086d48220e46f28b3b0204ef2adf950ea3eb391 | 3e0e6ccc7f265f169070f584b411c5998fa3c6ce | /FSM/FSM/Include/FSM/Idle.h | 892d937a11782e8c0bf67bd566f05c0ec197614a | [] | no_license | Rego363/Games_Engineering | d7e06bf9a7308c9afa08a4be18bebcf03f9e016d | c0f00469095d5b37cd1b38844e386379c7c4f8cf | refs/heads/master | 2020-03-29T06:20:30.612997 | 2019-03-21T09:59:44 | 2019-03-21T09:59:44 | 149,620,539 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 233 | h | #ifndef IDLE_H
#define IDLE_H
#include <FSM\State.h>
class Idle : public State
{
public:
Idle() {};
~Idle() {};
void handleInput();
void update();
void jumping(Animation* a);
void climbing(Animation* a);
};
#endif // !IDLE_H | [
"C00206167@itcarlow.ie"
] | C00206167@itcarlow.ie |
6c1b384dc98fcda9bdc8ae672f7592c684832202 | 1d7c338cfc8924d2b687a38348461042777fc4b1 | /April-09-BackspaceStringCompare.cpp | 6d0fede34218637ce6d6add58152868dacad7cda | [] | no_license | YoelYonata/LC30-day | 30c82a0badafccfa7d4698817e065d4db9585ff0 | f7531622bb14cc582f5a203454c31f3709797142 | refs/heads/master | 2021-05-23T13:09:45.506067 | 2020-05-20T03:50:48 | 2020-05-20T03:50:48 | 253,302,261 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 759 | cpp |
class Solution {
public:
bool backspaceCompare(string S, string T) {
int count1 = 0;
int count2 = 0;
for (int i = S.size()-1; i>=0; i--){
if (S[i] == '#'){
S.erase(i,1);
count1++;
}else if (S[i]!= '#' && count1 > 0){
S.erase(i,1);
count1--;
}
}
for (int i = T.size()-1; i>=0; i--){
if (T[i] == '#'){
T.erase(i,1);
count2 ++;
}else if (T[i]!= '#' && count2 > 0){
T.erase(i,1);
count2--;
}
}
if (S == T){
return true;
}
else{
return false;
}
}
}; | [
"yoel.yonata@gmail.com"
] | yoel.yonata@gmail.com |
af1fac72ede3f625c0baedeb8703642df367e7ff | 75252daa56e54a129e6aa0275b980ecd675d4587 | /libs/renderengine/include/renderengine/LayerSettings.h | b8bf8019de7eb81bc7923bb02d1d44a91f37419e | [
"LicenseRef-scancode-unicode",
"Apache-2.0"
] | permissive | crdroidandroid/android_frameworks_native | 988870fcaeb1c28b5f73631afb52883c2c741c69 | c15d4c3a6322c819bd417e8f8b03223f151771b6 | refs/heads/10.0 | 2023-08-31T10:03:46.719048 | 2021-11-13T17:47:17 | 2021-11-13T17:47:17 | 277,143,821 | 6 | 53 | NOASSERTION | 2023-09-13T06:28:33 | 2020-07-04T16:11:59 | C++ | UTF-8 | C++ | false | false | 4,204 | h | /*
* Copyright 2018 The Android Open Source Project
*
* Licensed 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.
*/
#pragma once
#include <math/mat4.h>
#include <math/vec3.h>
#include <renderengine/Texture.h>
#include <ui/Fence.h>
#include <ui/FloatRect.h>
#include <ui/GraphicBuffer.h>
#include <ui/GraphicTypes.h>
#include <ui/Rect.h>
#include <ui/Region.h>
#include <ui/Transform.h>
namespace android {
namespace renderengine {
// Metadata describing the input buffer to render from.
struct Buffer {
// Buffer containing the image that we will render.
// If buffer == nullptr, then the rest of the fields in this struct will be
// ignored.
sp<GraphicBuffer> buffer = nullptr;
// Fence that will fire when the buffer is ready to be bound.
sp<Fence> fence = nullptr;
// Texture identifier to bind the external texture to.
// TODO(alecmouri): This is GL-specific...make the type backend-agnostic.
uint32_t textureName = 0;
// Whether to use filtering when rendering the texture.
bool useTextureFiltering = false;
// Transform matrix to apply to texture coordinates.
mat4 textureTransform = mat4();
// Wheteher to use pre-multiplied alpha
bool usePremultipliedAlpha = true;
// Override flag that alpha for each pixel in the buffer *must* be 1.0.
// LayerSettings::alpha is still used if isOpaque==true - this flag only
// overrides the alpha channel of the buffer.
bool isOpaque = false;
// HDR color-space setting for Y410.
bool isY410BT2020 = false;
};
// Metadata describing the layer geometry.
struct Geometry {
// Boundaries of the layer.
FloatRect boundaries = FloatRect();
// Transform matrix to apply to mesh coordinates.
mat4 positionTransform = mat4();
// Radius of rounded corners, if greater than 0. Otherwise, this layer's
// corners are not rounded.
// Having corner radius will force GPU composition on the layer and its children, drawing it
// with a special shader. The shader will receive the radius and the crop rectangle as input,
// modifying the opacity of the destination texture, multiplying it by a number between 0 and 1.
// We query Layer#getRoundedCornerState() to retrieve the radius as well as the rounded crop
// rectangle to figure out how to apply the radius for this layer. The crop rectangle will be
// in local layer coordinate space, so we have to take the layer transform into account when
// walking up the tree.
float roundedCornersRadius = 0.0;
// Rectangle within which corners will be rounded.
FloatRect roundedCornersCrop = FloatRect();
};
// Descriptor of the source pixels for this layer.
struct PixelSource {
// Source buffer
Buffer buffer = Buffer();
// The solid color with which to fill the layer.
// This should only be populated if we don't render from an application
// buffer.
half3 solidColor = half3(0.0f, 0.0f, 0.0f);
};
// The settings that RenderEngine requires for correctly rendering a Layer.
struct LayerSettings {
// Geometry information
Geometry geometry = Geometry();
// Source pixels for this layer.
PixelSource source = PixelSource();
// Alpha option to blend with the source pixels
half alpha = half(0.0);
// Color space describing how the source pixels should be interpreted.
ui::Dataspace sourceDataspace = ui::Dataspace::UNKNOWN;
// Additional layer-specific color transform to be applied before the global
// transform.
mat4 colorTransform = mat4();
// True if blending will be forced to be disabled.
bool disableBlending = false;
};
} // namespace renderengine
} // namespace android
| [
"alecmouri@google.com"
] | alecmouri@google.com |
f78e05ad28c8acd4abaa42c4fb60c6b8884a32b2 | d2f8dc11a08a015a200f36a3744085d525e424ba | /DevEx/ExpressQuantumGrid 4/src/cxGridCustomView.hpp | 57e336e977d5763723b3e04f8ba0e2916b83e4f2 | [] | no_license | vhytyk/ProfStor | 726d79e6da4eaf431ccd7f9b654c17c243742e59 | 12bd9846a133b0352439ebf77fb6e66cddcbab7e | refs/heads/master | 2020-06-09T02:12:32.166297 | 2014-05-02T17:50:29 | 2014-05-02T17:50:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 59,231 | hpp | // Borland C++ Builder
// Copyright (c) 1995, 2002 by Borland Software Corporation
// All rights reserved
// (DO NOT EDIT: machine generated header) 'cxGridCustomView.pas' rev: 6.00
#ifndef cxGridCustomViewHPP
#define cxGridCustomViewHPP
#pragma delphiheader begin
#pragma option push -w-
#pragma option push -Vx
#include <cxData.hpp> // Pascal unit
#include <cxCustomData.hpp> // Pascal unit
#include <cxGridCommon.hpp> // Pascal unit
#include <cxStorage.hpp> // Pascal unit
#include <cxStyles.hpp> // Pascal unit
#include <cxLookAndFeelPainters.hpp> // Pascal unit
#include <cxGraphics.hpp> // Pascal unit
#include <cxControls.hpp> // Pascal unit
#include <cxClasses.hpp> // Pascal unit
#include <ExtCtrls.hpp> // Pascal unit
#include <StdCtrls.hpp> // Pascal unit
#include <Forms.hpp> // Pascal unit
#include <Controls.hpp> // Pascal unit
#include <Graphics.hpp> // Pascal unit
#include <Classes.hpp> // Pascal unit
#include <Messages.hpp> // Pascal unit
#include <Windows.hpp> // Pascal unit
#include <SysInit.hpp> // Pascal unit
#include <System.hpp> // Pascal unit
//-- user supplied -----------------------------------------------------------
namespace Cxgridcustomview
{
//-- type declarations -------------------------------------------------------
typedef TMetaClass*TcxCustomGridDragAndDropObjectClass;
class DELPHICLASS TcxCustomGridViewChange;
class DELPHICLASS TcxCustomGridView;
class DELPHICLASS TcxCustomGridBackgroundBitmaps;
class DELPHICLASS TcxCustomGridOptions;
class PASCALIMPLEMENTATION TcxCustomGridOptions : public Classes::TPersistent
{
typedef Classes::TPersistent inherited;
private:
TcxCustomGridView* FGridView;
TMetaClass* __fastcall GetLookAndFeelPainter(void);
protected:
void __fastcall LayoutChanged(void);
virtual void __fastcall Notification(Classes::TComponent* AComponent, Classes::TOperation AOperation);
__property TMetaClass* LookAndFeelPainter = {read=GetLookAndFeelPainter};
public:
__fastcall virtual TcxCustomGridOptions(TcxCustomGridView* AGridView);
__fastcall virtual ~TcxCustomGridOptions(void);
virtual void __fastcall Assign(Classes::TPersistent* Source);
__property TcxCustomGridView* GridView = {read=FGridView};
};
class PASCALIMPLEMENTATION TcxCustomGridBackgroundBitmaps : public TcxCustomGridOptions
{
typedef TcxCustomGridOptions inherited;
public:
Graphics::TBitmap* operator[](int Index) { return Values[Index]; }
private:
Classes::TList* FItems;
int __fastcall GetCount(void);
void __fastcall BitmapChanged(System::TObject* Sender);
protected:
virtual int __fastcall GetBitmapStyleIndex(int Index);
virtual Graphics::TBitmap* __fastcall GetDefaultBitmap(int Index);
Graphics::TBitmap* __fastcall GetValue(int Index);
void __fastcall SetValue(int Index, Graphics::TBitmap* Value);
__property int Count = {read=GetCount, nodefault};
public:
__fastcall virtual TcxCustomGridBackgroundBitmaps(TcxCustomGridView* AGridView);
__fastcall virtual ~TcxCustomGridBackgroundBitmaps(void);
virtual void __fastcall Assign(Classes::TPersistent* Source);
virtual Graphics::TBitmap* __fastcall GetBitmap(int Index);
__property Graphics::TBitmap* Values[int Index] = {read=GetValue, write=SetValue/*, default*/};
__published:
__property Graphics::TBitmap* Background = {read=GetValue, write=SetValue, index=0};
};
class DELPHICLASS TcxCustomGridController;
class DELPHICLASS TcxGridViewHandler;
class DELPHICLASS TcxCustomGridPainter;
class DELPHICLASS TcxGridSite;
class DELPHICLASS TcxCustomGridViewData;
class DELPHICLASS TcxCustomGridViewInfo;
class PASCALIMPLEMENTATION TcxGridViewHandler : public Cxclasses::TcxInterfacedPersistent
{
typedef Cxclasses::TcxInterfacedPersistent inherited;
private:
TcxCustomGridView* FGridView;
Cxcontrols::TcxControl* __fastcall GetControl(void);
TcxCustomGridController* __fastcall GetController(void);
Cxcustomdata::TcxCustomDataController* __fastcall GetDataController(void);
TMetaClass* __fastcall GetLookAndFeelPainter(void);
TcxCustomGridPainter* __fastcall GetPainter(void);
TcxGridSite* __fastcall GetSite(void);
TcxCustomGridViewData* __fastcall GetViewData(void);
TcxCustomGridViewInfo* __fastcall GetViewInfo(void);
protected:
__property Cxcontrols::TcxControl* Control = {read=GetControl};
__property TcxCustomGridController* Controller = {read=GetController};
__property Cxcustomdata::TcxCustomDataController* DataController = {read=GetDataController};
__property TcxCustomGridViewData* ViewData = {read=GetViewData};
public:
__fastcall virtual TcxGridViewHandler(TcxCustomGridView* AGridView);
void __fastcall BeginUpdate(void);
void __fastcall EndUpdate(void);
__property TcxCustomGridView* GridView = {read=FGridView};
__property TMetaClass* LookAndFeelPainter = {read=GetLookAndFeelPainter};
__property TcxCustomGridPainter* Painter = {read=GetPainter};
__property TcxGridSite* Site = {read=GetSite};
__property TcxCustomGridViewInfo* ViewInfo = {read=GetViewInfo};
public:
#pragma option push -w-inl
/* TPersistent.Destroy */ inline __fastcall virtual ~TcxGridViewHandler(void) { }
#pragma option pop
};
class DELPHICLASS TcxCustomGridDragAndDropObject;
class DELPHICLASS TcxCustomGridCellViewInfo;
class DELPHICLASS TcxCustomGridHitTest;
class PASCALIMPLEMENTATION TcxCustomGridController : public TcxGridViewHandler
{
typedef TcxGridViewHandler inherited;
private:
#pragma pack(push, 1)
Types::TRect FHintTextRect;
#pragma pack(pop)
Controls::THintWindow* FHintWindow;
bool FIsDblClick;
TcxCustomGridDragAndDropObject* __fastcall GetDragAndDropObject(void);
TMetaClass* __fastcall GetDragAndDropObjectClass(void);
bool __fastcall GetIsDragging(void);
TcxCustomGridCellViewInfo* __fastcall GetMouseCaptureViewInfo(void);
void __fastcall SetDragAndDropObjectClass(TMetaClass* Value);
void __fastcall SetMouseCaptureViewInfo(TcxCustomGridCellViewInfo* Value);
protected:
virtual void __fastcall MouseLeave(void);
virtual void __fastcall AfterPaint(void);
virtual void __fastcall BeforeKillFocus(void);
virtual void __fastcall BeforePaint(void);
virtual bool __fastcall CanHandleHitTest(TcxCustomGridHitTest* AHitTest);
virtual void __fastcall DetailFocused(TcxCustomGridView* ADetail);
virtual void __fastcall DoExit(void);
virtual bool __fastcall GetDesignHitTest(TcxCustomGridHitTest* AHitTest);
virtual Cxcontrols::TcxMouseWheelScrollingKind __fastcall GetMouseWheelScrollingKind(void);
virtual bool __fastcall IsPixelScrollBar(Forms::TScrollBarKind AKind);
virtual bool __fastcall MayFocus(void);
virtual void __fastcall RemoveFocus(void);
virtual void __fastcall SetFocus(void);
__property TcxCustomGridDragAndDropObject* DragAndDropObject = {read=GetDragAndDropObject};
__property bool IsDragging = {read=GetIsDragging, nodefault};
public:
__fastcall virtual ~TcxCustomGridController(void);
virtual void __fastcall ControlFocusChanged(void);
void __fastcall DesignerModified(void);
virtual void __fastcall DoCancelMode(void);
void __fastcall DoControlFocusChanged(void);
virtual Controls::TCursor __fastcall GetCursor(int X, int Y);
virtual bool __fastcall HasFocusedControls(void);
virtual void __fastcall InitScrollBarsParameters(void);
virtual bool __fastcall IsDataFullyVisible(bool AIsCallFromMaster = false);
virtual void __fastcall Scroll(Forms::TScrollBarKind AScrollBarKind, Stdctrls::TScrollCode AScrollCode, int &AScrollPos);
void __fastcall SetScrollBarInfo(Forms::TScrollBarKind AScrollBarKind, int AMin, int AMax, int AStep, int APage, int APos, bool AAllowShow, bool AAllowHide);
void __fastcall UpdateScrollBars(void);
virtual void __fastcall BeginDragAndDrop(void);
virtual void __fastcall DragAndDrop(const Types::TPoint &P, bool &Accepted);
virtual void __fastcall EndDragAndDrop(bool Accepted);
virtual bool __fastcall StartDragAndDrop(const Types::TPoint &P);
virtual void __fastcall BeforeStartDrag(void);
virtual bool __fastcall CanDrag(int X, int Y);
virtual void __fastcall DragDrop(System::TObject* Source, int X, int Y);
virtual void __fastcall DragOver(System::TObject* Source, int X, int Y, Controls::TDragState State, bool &Accept);
virtual void __fastcall EndDrag(System::TObject* Target, int X, int Y);
virtual void __fastcall StartDrag(Controls::TDragObject* &DragObject);
void __fastcall HideHint(void);
virtual TMetaClass* __fastcall GetHintWindowClass(void);
void __fastcall ShowHint(const Types::TRect &AHintAreaBounds, const Types::TRect &ATextRect, const AnsiString AText, bool AIsHintMultiLine, Graphics::TFont* AFont);
__property Controls::THintWindow* HintWindow = {read=FHintWindow};
virtual void __fastcall DoKeyDown(Word &Key, Classes::TShiftState Shift);
virtual void __fastcall KeyDown(Word &Key, Classes::TShiftState Shift);
virtual void __fastcall KeyPress(char &Key);
virtual void __fastcall KeyUp(Word &Key, Classes::TShiftState Shift);
virtual void __fastcall MouseDown(Controls::TMouseButton Button, Classes::TShiftState Shift, int X, int Y);
virtual void __fastcall MouseMove(Classes::TShiftState Shift, int X, int Y);
virtual void __fastcall MouseUp(Controls::TMouseButton Button, Classes::TShiftState Shift, int X, int Y);
virtual void __fastcall WndProc(Messages::TMessage &Message);
__property TMetaClass* DragAndDropObjectClass = {read=GetDragAndDropObjectClass, write=SetDragAndDropObjectClass};
__property bool IsDblClick = {read=FIsDblClick, nodefault};
__property TcxCustomGridCellViewInfo* MouseCaptureViewInfo = {read=GetMouseCaptureViewInfo, write=SetMouseCaptureViewInfo};
public:
#pragma option push -w-inl
/* TcxGridViewHandler.Create */ inline __fastcall virtual TcxCustomGridController(TcxCustomGridView* AGridView) : TcxGridViewHandler(AGridView) { }
#pragma option pop
private:
void *__IcxMouseTrackingCaller; /* Cxcontrols::IcxMouseTrackingCaller */
public:
operator IcxMouseTrackingCaller*(void) { return (IcxMouseTrackingCaller*)&__IcxMouseTrackingCaller; }
};
class DELPHICLASS TcxCustomGridOptionsSelection;
class PASCALIMPLEMENTATION TcxCustomGridOptionsSelection : public TcxCustomGridOptions
{
typedef TcxCustomGridOptions inherited;
public:
#pragma option push -w-inl
/* TcxCustomGridOptions.Create */ inline __fastcall virtual TcxCustomGridOptionsSelection(TcxCustomGridView* AGridView) : TcxCustomGridOptions(AGridView) { }
#pragma option pop
#pragma option push -w-inl
/* TcxCustomGridOptions.Destroy */ inline __fastcall virtual ~TcxCustomGridOptionsSelection(void) { }
#pragma option pop
};
class DELPHICLASS TcxCustomGridOptionsView;
class PASCALIMPLEMENTATION TcxCustomGridOptionsView : public TcxCustomGridOptions
{
typedef TcxCustomGridOptions inherited;
private:
Stdctrls::TScrollStyle __fastcall GetScrollBars(void);
void __fastcall SetScrollBars(Stdctrls::TScrollStyle Value);
public:
virtual void __fastcall Assign(Classes::TPersistent* Source);
__published:
__property Stdctrls::TScrollStyle ScrollBars = {read=GetScrollBars, write=SetScrollBars, default=3};
public:
#pragma option push -w-inl
/* TcxCustomGridOptions.Create */ inline __fastcall virtual TcxCustomGridOptionsView(TcxCustomGridView* AGridView) : TcxCustomGridOptions(AGridView) { }
#pragma option pop
#pragma option push -w-inl
/* TcxCustomGridOptions.Destroy */ inline __fastcall virtual ~TcxCustomGridOptionsView(void) { }
#pragma option pop
};
#pragma option push -b-
enum TcxGridStorageOption { gsoUseFilter, gsoUseSummary };
#pragma option pop
typedef Set<TcxGridStorageOption, gsoUseFilter, gsoUseSummary> TcxGridStorageOptions;
class DELPHICLASS TcxCustomGridStyles;
class PASCALIMPLEMENTATION TcxCustomGridStyles : public Cxstyles::TcxStyles
{
typedef Cxstyles::TcxStyles inherited;
private:
TMetaClass* __fastcall GetLookAndFeelPainter(void);
protected:
virtual void __fastcall Changed(int AIndex);
virtual void __fastcall GetDefaultViewParams(int Index, void * AData, /* out */ Cxgraphics::TcxViewParams &AParams);
virtual void __fastcall GetFakeComponentLinks(Classes::TList* AList);
virtual TcxCustomGridView* __fastcall GetGridView(void) = 0 ;
__property TMetaClass* LookAndFeelPainter = {read=GetLookAndFeelPainter};
public:
__property TcxCustomGridView* GridView = {read=GetGridView};
public:
#pragma option push -w-inl
/* TcxCustomStyles.Create */ inline __fastcall virtual TcxCustomGridStyles(Classes::TPersistent* AOwner) : Cxstyles::TcxStyles(AOwner) { }
#pragma option pop
#pragma option push -w-inl
/* TcxCustomStyles.Destroy */ inline __fastcall virtual ~TcxCustomGridStyles(void) { }
#pragma option pop
};
class DELPHICLASS TcxCustomGridViewInfoCache;
class DELPHICLASS TcxCustomGridViewInfoCacheItem;
typedef TMetaClass*TcxCustomGridViewInfoCacheItemClass;
class PASCALIMPLEMENTATION TcxCustomGridViewInfoCache : public TcxGridViewHandler
{
typedef TcxGridViewHandler inherited;
public:
TcxCustomGridViewInfoCacheItem* operator[](int Index) { return Items[Index]; }
private:
Classes::TList* FItems;
bool FUnassigningValues;
int __fastcall GetCount(void);
TcxCustomGridViewInfoCacheItem* __fastcall GetInternalItem(int Index);
TcxCustomGridViewInfoCacheItem* __fastcall GetItem(int Index);
void __fastcall SetCount(int Value);
void __fastcall DestroyItems(void);
protected:
virtual TMetaClass* __fastcall GetItemClass(void);
__property TcxCustomGridViewInfoCacheItem* InternalItems[int Index] = {read=GetInternalItem};
public:
__fastcall virtual TcxCustomGridViewInfoCache(TcxCustomGridView* AGridView);
__fastcall virtual ~TcxCustomGridViewInfoCache(void);
virtual void __fastcall UnassignValues(bool AKeepMaster = false);
__property int Count = {read=GetCount, write=SetCount, nodefault};
__property TcxCustomGridViewInfoCacheItem* Items[int Index] = {read=GetItem/*, default*/};
};
#pragma option push -b-
enum TcxGridViewChangeKind { vcName };
#pragma option pop
typedef TMetaClass*TcxCustomGridControllerClass;
typedef TMetaClass*TcxCustomGridPainterClass;
typedef TMetaClass*TcxCustomGridViewDataClass;
typedef TMetaClass*TcxCustomGridViewInfoCacheClass;
typedef TMetaClass*TcxCustomGridViewInfoClass;
typedef TMetaClass*TcxCustomGridBackgroundBitmapsClass;
typedef TMetaClass*TcxCustomGridOptionsSelectionClass;
typedef TMetaClass*TcxCustomGridOptionsViewClass;
typedef TMetaClass*TcxCustomGridViewStylesClass;
class PASCALIMPLEMENTATION TcxCustomGridView : public Cxcontrols::TcxControlChildComponent
{
typedef Cxcontrols::TcxControlChildComponent inherited;
private:
bool FAssigningPattern;
TcxCustomGridBackgroundBitmaps* FBackgroundBitmaps;
Classes::TList* FClones;
TcxCustomGridController* FController;
Cxcustomdata::TcxCustomDataController* FDataController;
Classes::TComponent* FLevel;
Classes::TList* FListenerLinks;
Classes::TList* FOptionsList;
TcxCustomGridOptionsSelection* FOptionsSelection;
TcxCustomGridOptionsView* FOptionsView;
TcxCustomGridPainter* FPainter;
TcxCustomGridView* FPatternGridView;
Classes::TComponent* FRepository;
Cxcontrols::TcxControl* FStorageControl;
TcxGridStorageOptions FStorageOptions;
AnsiString FStoringName;
TcxCustomGridStyles* FStyles;
TcxCustomGridViewData* FViewData;
TcxCustomGridViewInfo* FViewInfo;
TcxCustomGridViewInfoCache* FViewInfoCache;
Classes::TNotifyEvent FSubClassEvents;
TcxCustomGridView* __fastcall GetClone(int Index);
int __fastcall GetCloneCount(void);
Controls::TDragMode __fastcall GetDragMode(void);
bool __fastcall GetFocused(void);
bool __fastcall GetIsDetail(void);
bool __fastcall GetIsMaster(void);
bool __fastcall GetIsPattern(void);
bool __fastcall GetIsStoringNameMode(void);
TMetaClass* __fastcall GetLookAndFeelPainter(void);
TcxCustomGridView* __fastcall GetMasterGridView(void);
int __fastcall GetMasterGridRecordIndex(void);
int __fastcall GetMasterRecordIndex(void);
Classes::TNotifyEvent __fastcall GetOnDblClick();
Controls::TDragDropEvent __fastcall GetOnDragDrop();
Controls::TDragOverEvent __fastcall GetOnDragOver();
Controls::TEndDragEvent __fastcall GetOnEndDrag();
Controls::TKeyEvent __fastcall GetOnKeyDown();
Controls::TKeyPressEvent __fastcall GetOnKeyPress();
Controls::TKeyEvent __fastcall GetOnKeyUp();
Controls::TMouseEvent __fastcall GetOnMouseDown();
Controls::TMouseMoveEvent __fastcall GetOnMouseMove();
Controls::TMouseEvent __fastcall GetOnMouseUp();
Controls::TMouseWheelEvent __fastcall GetOnMouseWheel();
Controls::TMouseWheelUpDownEvent __fastcall GetOnMouseWheelDown();
Controls::TMouseWheelUpDownEvent __fastcall GetOnMouseWheelUp();
Controls::TStartDragEvent __fastcall GetOnStartDrag();
TcxCustomGridView* __fastcall GetPatternGridView(void);
TcxGridSite* __fastcall GetSite(void);
void __fastcall SetBackgroundBitmaps(TcxCustomGridBackgroundBitmaps* Value);
void __fastcall SetDragMode(Controls::TDragMode Value);
void __fastcall SetFocused(bool Value);
void __fastcall SetOnDblClick(Classes::TNotifyEvent Value);
void __fastcall SetOnDragDrop(Controls::TDragDropEvent Value);
void __fastcall SetOnDragOver(Controls::TDragOverEvent Value);
void __fastcall SetOnEndDrag(Controls::TEndDragEvent Value);
void __fastcall SetOnKeyDown(Controls::TKeyEvent Value);
void __fastcall SetOnKeyPress(Controls::TKeyPressEvent Value);
void __fastcall SetOnKeyUp(Controls::TKeyEvent Value);
void __fastcall SetOnMouseDown(Controls::TMouseEvent Value);
void __fastcall SetOnMouseMove(Controls::TMouseMoveEvent Value);
void __fastcall SetOnMouseUp(Controls::TMouseEvent Value);
void __fastcall SetOnMouseWheel(Controls::TMouseWheelEvent Value);
void __fastcall SetOnMouseWheelDown(Controls::TMouseWheelUpDownEvent Value);
void __fastcall SetOnMouseWheelUp(Controls::TMouseWheelUpDownEvent Value);
void __fastcall SetOnStartDrag(Controls::TStartDragEvent Value);
void __fastcall SetOptionsSelection(TcxCustomGridOptionsSelection* Value);
void __fastcall SetOptionsView(TcxCustomGridOptionsView* Value);
void __fastcall SetStyles(TcxCustomGridStyles* Value);
void __fastcall ClearListenerLinks(void);
protected:
virtual AnsiString __fastcall GetObjectName();
virtual bool __fastcall GetProperties(Classes::TStrings* AProperties);
virtual void __fastcall GetPropertyValue(const AnsiString AName, Variant &AValue);
virtual void __fastcall SetPropertyValue(const AnsiString AName, const Variant &AValue);
virtual System::TObject* __fastcall CreateChild(const AnsiString AObjectName, const AnsiString AClassName);
virtual void __fastcall DeleteChild(const AnsiString AObjectName, System::TObject* AObject);
virtual void __fastcall GetStoredChildren(Classes::TStringList* AChildren);
virtual void __fastcall GetFakeComponentLinks(Classes::TList* AList);
virtual bool __fastcall GetIsDestroying(void);
virtual void __fastcall Loaded(void);
virtual void __fastcall Notification(Classes::TComponent* AComponent, Classes::TOperation Operation);
virtual void __fastcall SetControl(Cxcontrols::TcxControl* Value);
virtual void __fastcall SetName(const AnsiString NewName);
DYNAMIC void __fastcall SetParentComponent(Classes::TComponent* Value);
virtual void __fastcall CreateHandlers(void);
virtual void __fastcall DestroyHandlers(void);
virtual void __fastcall InitDataController(void);
virtual void __fastcall CreateOptions(void);
virtual void __fastcall DestroyOptions(void);
void __fastcall AddOptions(TcxCustomGridOptions* AOptions);
void __fastcall RemoveOptions(TcxCustomGridOptions* AOptions);
void __fastcall NotifyOptions(Classes::TComponent* AComponent, Classes::TOperation AOperation);
void __fastcall AddClone(TcxCustomGridView* AClone);
void __fastcall RemoveClone(TcxCustomGridView* AClone);
void __fastcall AddListenerLink(void * ALink);
void __fastcall RemoveListenerLink(void * ALink);
void __fastcall AssignPattern(TcxCustomGridView* APattern);
virtual void __fastcall BeforeAssign(TcxCustomGridView* ASource);
virtual void __fastcall DoAssign(TcxCustomGridView* ASource);
virtual void __fastcall AfterAssign(TcxCustomGridView* ASource);
virtual bool __fastcall CanFocus(void);
virtual bool __fastcall CanTabStop(void);
virtual void __fastcall DetailVisibleChanged(Classes::TComponent* ADetailLevel, int APrevVisibleDetailCount, int AVisibleDetailCount);
virtual bool __fastcall GetChangeable(void);
virtual bool __fastcall GetCustomVisible(bool ALevelVisible);
virtual bool __fastcall GetIsControlFocused(void);
virtual bool __fastcall GetResizeOnBoundsChange(void);
virtual bool __fastcall GetVisible(void);
virtual void __fastcall Init(void);
virtual bool __fastcall IsDetailVisible(TcxCustomGridView* AGridView);
virtual void __fastcall FocusChanged(bool AFocused);
virtual void __fastcall LoadingComplete(void);
virtual void __fastcall LookAndFeelChanged(void);
void __fastcall NotifyControl(TcxGridViewChangeKind AChangeKind);
virtual void __fastcall SetLevel(Classes::TComponent* Value);
virtual void __fastcall SetTabStop(bool Value);
virtual void __fastcall UpdateControl(Cxcustomdata::TcxUpdateControlInfo* AInfo);
virtual TMetaClass* __fastcall GetControllerClass(void) = 0 ;
virtual TMetaClass* __fastcall GetDataControllerClass(void) = 0 ;
virtual TMetaClass* __fastcall GetPainterClass(void) = 0 ;
virtual TMetaClass* __fastcall GetViewDataClass(void) = 0 ;
virtual TMetaClass* __fastcall GetViewInfoCacheClass(void);
virtual TMetaClass* __fastcall GetViewInfoClass(void) = 0 ;
virtual TMetaClass* __fastcall GetBackgroundBitmapsClass(void);
virtual TMetaClass* __fastcall GetOptionsSelectionClass(void);
virtual TMetaClass* __fastcall GetOptionsViewClass(void);
virtual TMetaClass* __fastcall GetStylesClass(void);
__property bool AssigningPattern = {read=FAssigningPattern, nodefault};
__property TcxCustomGridBackgroundBitmaps* BackgroundBitmaps = {read=FBackgroundBitmaps, write=SetBackgroundBitmaps};
__property bool Changeable = {read=GetChangeable, nodefault};
__property bool IsStoringNameMode = {read=GetIsStoringNameMode, nodefault};
__property TcxCustomGridOptionsSelection* OptionsSelection = {read=FOptionsSelection, write=SetOptionsSelection};
__property TcxCustomGridOptionsView* OptionsView = {read=FOptionsView, write=SetOptionsView};
__property bool ResizeOnBoundsChange = {read=GetResizeOnBoundsChange, nodefault};
__property TcxCustomGridStyles* Styles = {read=FStyles, write=SetStyles};
public:
__fastcall virtual TcxCustomGridView(Classes::TComponent* AOwner);
__fastcall virtual ~TcxCustomGridView(void);
virtual void __fastcall Assign(Classes::TPersistent* Source);
DYNAMIC Classes::TComponent* __fastcall GetParentComponent(void);
DYNAMIC bool __fastcall HasParent(void);
bool __fastcall HasAsClone(TcxCustomGridView* AGridView);
bool __fastcall HasAsMaster(TcxCustomGridView* AGridView);
void __fastcall Invalidate(bool AHardUpdate = false);
virtual void __fastcall RestoreDefaults(void);
void __fastcall BeginUpdate(void);
void __fastcall CancelUpdate(void);
bool __fastcall Changed(System::TObject* AGridChange);
void __fastcall EndUpdate(void);
virtual void __fastcall BoundsChanged(bool AUpdateSelfOnly = false, bool AKeepMaster = false);
void __fastcall LayoutChanged(bool AUpdateSelfOnly = true);
bool __fastcall SizeChanged(bool AUpdateSelfOnly = false, bool AKeepMaster = false);
void __fastcall ViewChanged(void)/* overload */;
void __fastcall ViewChanged(const Types::TRect &AUpdateRect)/* overload */;
void __fastcall RestoreFromIniFile(AnsiString AStorageName, bool AChildrenCreating = false, bool AChildrenDeleting = false, TcxGridStorageOptions AOptions = System::Set<TcxGridStorageOption, gsoUseFilter, gsoUseSummary> () , const AnsiString ARestoreViewName = "");
void __fastcall RestoreFromRegistry(AnsiString AStorageName, bool AChildrenCreating = false, bool AChildrenDeleting = false, TcxGridStorageOptions AOptions = System::Set<TcxGridStorageOption, gsoUseFilter, gsoUseSummary> () , const AnsiString ARestoreViewName = "");
void __fastcall RestoreFromStream(Classes::TStream* AStream, bool AChildrenCreating = false, bool AChildrenDeleting = false, TcxGridStorageOptions AOptions = System::Set<TcxGridStorageOption, gsoUseFilter, gsoUseSummary> () , const AnsiString ARestoreViewName = "");
void __fastcall StoreToIniFile(AnsiString AStorageName, bool AReCreate = true, TcxGridStorageOptions AOptions = System::Set<TcxGridStorageOption, gsoUseFilter, gsoUseSummary> () , const AnsiString ASaveViewName = "");
void __fastcall StoreToRegistry(AnsiString AStorageName, bool AReCreate = true, TcxGridStorageOptions AOptions = System::Set<TcxGridStorageOption, gsoUseFilter, gsoUseSummary> () , const AnsiString ASaveViewName = "");
void __fastcall StoreToStream(Classes::TStream* AStream, TcxGridStorageOptions AOptions = System::Set<TcxGridStorageOption, gsoUseFilter, gsoUseSummary> () , const AnsiString ASaveViewName = "");
__property bool Focused = {read=GetFocused, write=SetFocused, nodefault};
__property TcxGridStorageOptions StorageOptions = {read=FStorageOptions, write=FStorageOptions, nodefault};
__property AnsiString StoringName = {read=FStoringName, write=FStoringName};
__property bool TabStop = {write=SetTabStop, nodefault};
__property int CloneCount = {read=GetCloneCount, nodefault};
__property TcxCustomGridView* Clones[int Index] = {read=GetClone};
__property bool IsControlFocused = {read=GetIsControlFocused, nodefault};
__property bool IsDetail = {read=GetIsDetail, nodefault};
__property bool IsMaster = {read=GetIsMaster, nodefault};
__property bool IsPattern = {read=GetIsPattern, nodefault};
__property Classes::TComponent* Level = {read=FLevel};
__property TcxCustomGridView* MasterGridView = {read=GetMasterGridView};
__property int MasterGridRecordIndex = {read=GetMasterGridRecordIndex, nodefault};
__property int MasterRecordIndex = {read=GetMasterRecordIndex, nodefault};
__property TcxCustomGridView* PatternGridView = {read=GetPatternGridView};
__property Classes::TComponent* Repository = {read=FRepository, write=FRepository};
__property TcxCustomGridController* Controller = {read=FController};
__property Cxcustomdata::TcxCustomDataController* DataController = {read=FDataController};
__property TMetaClass* LookAndFeelPainter = {read=GetLookAndFeelPainter};
__property TcxCustomGridPainter* Painter = {read=FPainter};
__property TcxGridSite* Site = {read=GetSite};
__property Cxcontrols::TcxControl* StorageControl = {read=FStorageControl};
__property TcxCustomGridViewData* ViewData = {read=FViewData};
__property TcxCustomGridViewInfo* ViewInfo = {read=FViewInfo};
__property TcxCustomGridViewInfoCache* ViewInfoCache = {read=FViewInfoCache};
__property bool Visible = {read=GetVisible, nodefault};
__published:
__property Classes::TNotifyEvent DataControllerEvents = {read=FSubClassEvents, write=FSubClassEvents};
__property Controls::TDragMode DragMode = {read=GetDragMode, write=SetDragMode, default=0};
__property Classes::TNotifyEvent StylesEvents = {read=FSubClassEvents, write=FSubClassEvents};
__property Classes::TNotifyEvent OnDblClick = {read=GetOnDblClick, write=SetOnDblClick};
__property Controls::TDragDropEvent OnDragDrop = {read=GetOnDragDrop, write=SetOnDragDrop};
__property Controls::TDragOverEvent OnDragOver = {read=GetOnDragOver, write=SetOnDragOver};
__property Controls::TEndDragEvent OnEndDrag = {read=GetOnEndDrag, write=SetOnEndDrag};
__property Controls::TKeyEvent OnKeyDown = {read=GetOnKeyDown, write=SetOnKeyDown};
__property Controls::TKeyPressEvent OnKeyPress = {read=GetOnKeyPress, write=SetOnKeyPress};
__property Controls::TKeyEvent OnKeyUp = {read=GetOnKeyUp, write=SetOnKeyUp};
__property Controls::TMouseEvent OnMouseDown = {read=GetOnMouseDown, write=SetOnMouseDown};
__property Controls::TMouseMoveEvent OnMouseMove = {read=GetOnMouseMove, write=SetOnMouseMove};
__property Controls::TMouseEvent OnMouseUp = {read=GetOnMouseUp, write=SetOnMouseUp};
__property Controls::TMouseWheelEvent OnMouseWheel = {read=GetOnMouseWheel, write=SetOnMouseWheel};
__property Controls::TMouseWheelUpDownEvent OnMouseWheelDown = {read=GetOnMouseWheelDown, write=SetOnMouseWheelDown};
__property Controls::TMouseWheelUpDownEvent OnMouseWheelUp = {read=GetOnMouseWheelUp, write=SetOnMouseWheelUp};
__property Controls::TStartDragEvent OnStartDrag = {read=GetOnStartDrag, write=SetOnStartDrag};
public:
#pragma option push -w-inl
/* TcxControlChildComponent.CreateEx */ inline __fastcall TcxCustomGridView(Cxcontrols::TcxControl* AControl, bool AAssignOwner) : Cxcontrols::TcxControlChildComponent(AControl, AAssignOwner) { }
#pragma option pop
private:
void *__IcxStoredObject; /* Cxstorage::IcxStoredObject */
void *__IcxStoredParent; /* Cxstorage::IcxStoredParent [GetChildren=GetStoredChildren] */
public:
operator IcxStoredParent*(void) { return (IcxStoredParent*)&__IcxStoredParent; }
operator IcxStoredObject*(void) { return (IcxStoredObject*)&__IcxStoredObject; }
};
class PASCALIMPLEMENTATION TcxCustomGridViewChange : public Cxgridcommon::TcxCustomGridChange
{
typedef Cxgridcommon::TcxCustomGridChange inherited;
private:
TcxCustomGridView* FGridView;
public:
__fastcall virtual TcxCustomGridViewChange(TcxCustomGridView* AGridView);
__property TcxCustomGridView* GridView = {read=FGridView, write=FGridView};
virtual bool __fastcall IsEqual(Cxgridcommon::TcxCustomGridChange* AChange);
public:
#pragma option push -w-inl
/* TObject.Destroy */ inline __fastcall virtual ~TcxCustomGridViewChange(void) { }
#pragma option pop
};
class DELPHICLASS TcxGridControlFocusChange;
class PASCALIMPLEMENTATION TcxGridControlFocusChange : public TcxCustomGridViewChange
{
typedef TcxCustomGridViewChange inherited;
public:
virtual void __fastcall Execute(void);
public:
#pragma option push -w-inl
/* TcxCustomGridViewChange.Create */ inline __fastcall virtual TcxGridControlFocusChange(TcxCustomGridView* AGridView) : TcxCustomGridViewChange(AGridView) { }
#pragma option pop
public:
#pragma option push -w-inl
/* TObject.Destroy */ inline __fastcall virtual ~TcxGridControlFocusChange(void) { }
#pragma option pop
};
typedef TMetaClass*TcxCustomGridHitTestClass;
class PASCALIMPLEMENTATION TcxCustomGridHitTest : public System::TObject
{
typedef System::TObject inherited;
private:
#pragma pack(push, 1)
Types::TPoint FPos;
#pragma pack(pop)
TcxCustomGridCellViewInfo* FViewInfo;
protected:
/* virtual class method */ virtual int __fastcall GetHitTestCode(TMetaClass* vmt);
void __fastcall Init(const Types::TPoint &APos);
public:
/* virtual class method */ virtual Controls::TCursor __fastcall Cursor(TMetaClass* vmt);
virtual TMetaClass* __fastcall DragAndDropObjectClass(void);
/* class method */ static int __fastcall HitTestCode(TMetaClass* vmt);
/* class method */ static TcxCustomGridHitTest* __fastcall Instance(TMetaClass* vmt, const Types::TPoint &APos);
__property Types::TPoint Pos = {read=FPos};
__property TcxCustomGridCellViewInfo* ViewInfo = {read=FViewInfo, write=FViewInfo};
public:
#pragma option push -w-inl
/* TObject.Create */ inline __fastcall TcxCustomGridHitTest(void) : System::TObject() { }
#pragma option pop
#pragma option push -w-inl
/* TObject.Destroy */ inline __fastcall virtual ~TcxCustomGridHitTest(void) { }
#pragma option pop
};
class DELPHICLASS TcxGridNoneHitTest;
class PASCALIMPLEMENTATION TcxGridNoneHitTest : public TcxCustomGridHitTest
{
typedef TcxCustomGridHitTest inherited;
protected:
/* virtual class method */ virtual int __fastcall GetHitTestCode(TMetaClass* vmt);
public:
#pragma option push -w-inl
/* TObject.Create */ inline __fastcall TcxGridNoneHitTest(void) : TcxCustomGridHitTest() { }
#pragma option pop
#pragma option push -w-inl
/* TObject.Destroy */ inline __fastcall virtual ~TcxGridNoneHitTest(void) { }
#pragma option pop
};
class DELPHICLASS TcxCustomGridViewHitTest;
class PASCALIMPLEMENTATION TcxCustomGridViewHitTest : public TcxCustomGridHitTest
{
typedef TcxCustomGridHitTest inherited;
private:
TcxCustomGridView* FGridView;
public:
__property TcxCustomGridView* GridView = {read=FGridView, write=FGridView};
public:
#pragma option push -w-inl
/* TObject.Create */ inline __fastcall TcxCustomGridViewHitTest(void) : TcxCustomGridHitTest() { }
#pragma option pop
#pragma option push -w-inl
/* TObject.Destroy */ inline __fastcall virtual ~TcxCustomGridViewHitTest(void) { }
#pragma option pop
};
class DELPHICLASS TcxGridViewNoneHitTest;
class PASCALIMPLEMENTATION TcxGridViewNoneHitTest : public TcxCustomGridViewHitTest
{
typedef TcxCustomGridViewHitTest inherited;
protected:
/* virtual class method */ virtual int __fastcall GetHitTestCode(TMetaClass* vmt);
public:
#pragma option push -w-inl
/* TObject.Create */ inline __fastcall TcxGridViewNoneHitTest(void) : TcxCustomGridViewHitTest() { }
#pragma option pop
#pragma option push -w-inl
/* TObject.Destroy */ inline __fastcall virtual ~TcxGridViewNoneHitTest(void) { }
#pragma option pop
};
class PASCALIMPLEMENTATION TcxCustomGridDragAndDropObject : public Cxcontrols::TcxDragAndDropObject
{
typedef Cxcontrols::TcxDragAndDropObject inherited;
private:
TcxCustomGridController* __fastcall GetController(void);
TcxCustomGridView* __fastcall GetGridView(void);
TcxCustomGridViewInfo* __fastcall GetViewInfo(void);
protected:
virtual void __fastcall AfterDragAndDrop(bool Accepted);
virtual void __fastcall AfterPaint(void);
virtual void __fastcall BeforePaint(void);
__property TcxCustomGridController* Controller = {read=GetController};
__property TcxCustomGridViewInfo* ViewInfo = {read=GetViewInfo};
public:
#pragma pack(push, 1)
Types::TPoint SourcePoint;
#pragma pack(pop)
virtual void __fastcall Init(const Types::TPoint &P, TcxCustomGridHitTest* AParams);
__property TcxCustomGridView* GridView = {read=GetGridView};
public:
#pragma option push -w-inl
/* TcxDragAndDropObject.Create */ inline __fastcall virtual TcxCustomGridDragAndDropObject(Cxcontrols::TcxControl* AControl) : Cxcontrols::TcxDragAndDropObject(AControl) { }
#pragma option pop
public:
#pragma option push -w-inl
/* TObject.Destroy */ inline __fastcall virtual ~TcxCustomGridDragAndDropObject(void) { }
#pragma option pop
};
__interface IcxCustomGridDataController;
typedef System::DelphiInterface<IcxCustomGridDataController> _di_IcxCustomGridDataController;
__interface INTERFACE_UUID("{B9ABDC6B-1A4A-4F11-A629-09B6FB9FB4BA}") IcxCustomGridDataController : public IInterface
{
public:
virtual void __fastcall GetFakeComponentLinks(Classes::TList* AList) = 0 ;
virtual TcxCustomGridView* __fastcall GetGridView(void) = 0 ;
__property TcxCustomGridView* GridView = {read=GetGridView};
};
typedef TMetaClass*TcxCustomGridCellPainterClass;
class DELPHICLASS TcxCustomGridCellPainter;
class PASCALIMPLEMENTATION TcxCustomGridCellPainter : public System::TObject
{
typedef System::TObject inherited;
private:
Cxgraphics::TcxCanvas* FCanvas;
TcxCustomGridCellViewInfo* FViewInfo;
bool __fastcall GetIsMainCanvasInUse(void);
protected:
virtual void __fastcall AfterPaint(void);
virtual void __fastcall BeforePaint(void);
virtual void __fastcall DrawBackground(void);
virtual bool __fastcall DrawBackgroundHandler(Cxgraphics::TcxCanvas* ACanvas, const Types::TRect &ABounds);
virtual void __fastcall DrawBorder(Cxgraphics::TcxBorder ABorder);
virtual void __fastcall DrawBorders(void);
virtual void __fastcall DrawContent(void);
virtual void __fastcall DrawText(void);
virtual bool __fastcall ExcludeFromClipRect(void);
virtual bool __fastcall NeedsPainting(void);
virtual void __fastcall Paint(void);
__property Cxgraphics::TcxCanvas* Canvas = {read=FCanvas};
__property bool IsMainCanvasInUse = {read=GetIsMainCanvasInUse, nodefault};
__property TcxCustomGridCellViewInfo* ViewInfo = {read=FViewInfo};
public:
__fastcall virtual TcxCustomGridCellPainter(Cxgraphics::TcxCanvas* ACanvas, TcxCustomGridCellViewInfo* AViewInfo);
virtual void __fastcall MainPaint(void);
public:
#pragma option push -w-inl
/* TObject.Destroy */ inline __fastcall virtual ~TcxCustomGridCellPainter(void) { }
#pragma option pop
};
class PASCALIMPLEMENTATION TcxCustomGridPainter : public TcxGridViewHandler
{
typedef TcxGridViewHandler inherited;
private:
Cxgraphics::TcxRegion* FBackgroundRegion;
Cxgraphics::TcxRegion* FBeforePaintClipRegion;
Cxgraphics::TcxCanvas* __fastcall GetCanvas(void);
protected:
virtual void __fastcall DrawBackground(void);
virtual void __fastcall PaintAfter(void);
virtual void __fastcall PaintBefore(void);
virtual void __fastcall PaintContent(void);
__property Cxgraphics::TcxCanvas* Canvas = {read=GetCanvas};
public:
virtual void __fastcall DrawFocusRect(const Types::TRect &R, bool AHideFocusRect);
void __fastcall ExcludeFromBackground(const Types::TRect &R);
void __fastcall Paint(void);
void __fastcall Invalidate(void)/* overload */;
void __fastcall Invalidate(const Types::TRect &R)/* overload */;
public:
#pragma option push -w-inl
/* TcxGridViewHandler.Create */ inline __fastcall virtual TcxCustomGridPainter(TcxCustomGridView* AGridView) : TcxGridViewHandler(AGridView) { }
#pragma option pop
public:
#pragma option push -w-inl
/* TPersistent.Destroy */ inline __fastcall virtual ~TcxCustomGridPainter(void) { }
#pragma option pop
};
class PASCALIMPLEMENTATION TcxCustomGridViewData : public TcxGridViewHandler
{
typedef TcxGridViewHandler inherited;
public:
__property DataController ;
public:
#pragma option push -w-inl
/* TcxGridViewHandler.Create */ inline __fastcall virtual TcxCustomGridViewData(TcxCustomGridView* AGridView) : TcxGridViewHandler(AGridView) { }
#pragma option pop
public:
#pragma option push -w-inl
/* TPersistent.Destroy */ inline __fastcall virtual ~TcxCustomGridViewData(void) { }
#pragma option pop
};
typedef TMetaClass*TcxGridSiteClass;
class PASCALIMPLEMENTATION TcxGridSite : public Cxcontrols::TcxControl
{
typedef Cxcontrols::TcxControl inherited;
private:
#pragma pack(push, 1)
Types::TPoint FSize;
#pragma pack(pop)
TcxCustomGridViewInfo* FViewInfo;
Cxcontrols::TcxControl* __fastcall GetContainer(void);
TcxCustomGridController* __fastcall GetController(void);
TcxCustomGridView* __fastcall GetGridView(void);
TcxCustomGridPainter* __fastcall GetPainter(void);
void __fastcall SendKeyDownNotification(const Messages::TWMKey &Message);
MESSAGE void __fastcall CMBoundsChanged(Messages::TMessage &Message);
HIDESBASE MESSAGE void __fastcall CNKeyDown(Messages::TWMKey &Message);
HIDESBASE MESSAGE void __fastcall CNSysKeyDown(Messages::TWMKey &Message);
protected:
virtual bool __fastcall AllowAutoDragAndDropAtDesignTime(int X, int Y, Classes::TShiftState Shift);
DYNAMIC bool __fastcall AllowDragAndDropWithoutFocus(void);
virtual void __fastcall BeforeMouseDown(Controls::TMouseButton Button, Classes::TShiftState Shift, int X, int Y);
DYNAMIC void __fastcall BoundsChanged(void);
DYNAMIC bool __fastcall CanDrag(int X, int Y);
DYNAMIC void __fastcall DoCancelMode(void);
DYNAMIC void __fastcall DoExit(void);
DYNAMIC void __fastcall FocusChanged(void);
virtual bool __fastcall FocusWhenChildIsClicked(Controls::TControl* AChild);
virtual Controls::TCursor __fastcall GetCursor(int X, int Y);
DYNAMIC bool __fastcall GetDesignHitTest(int X, int Y, Classes::TShiftState Shift);
virtual bool __fastcall GetIsDesigning(void);
virtual bool __fastcall GetIsFocused(void);
virtual Cxcontrols::TcxMouseWheelScrollingKind __fastcall GetMouseWheelScrollingKind(void);
virtual bool __fastcall IsPixelScrollBar(Forms::TScrollBarKind AKind);
DYNAMIC void __fastcall KeyDown(Word &Key, Classes::TShiftState Shift);
DYNAMIC void __fastcall KeyPress(char &Key);
DYNAMIC void __fastcall KeyUp(Word &Key, Classes::TShiftState Shift);
DYNAMIC bool __fastcall MayFocus(void);
DYNAMIC void __fastcall MouseMove(Classes::TShiftState Shift, int X, int Y);
DYNAMIC void __fastcall MouseUp(Controls::TMouseButton Button, Classes::TShiftState Shift, int X, int Y);
virtual void __fastcall Paint(void);
DYNAMIC void __fastcall RequestAlign(void);
virtual void __fastcall SetParent(Controls::TWinControl* AParent);
virtual void __fastcall WndProc(Messages::TMessage &Message);
DYNAMIC void __fastcall DoEndDrag(System::TObject* Target, int X, int Y);
DYNAMIC void __fastcall DoStartDrag(Controls::TDragObject* &DragObject);
DYNAMIC void __fastcall DragOver(System::TObject* Source, int X, int Y, Controls::TDragState State, bool &Accept);
virtual Types::TRect __fastcall GetHScrollBarBounds();
virtual void __fastcall InitScrollBarsParameters(void);
virtual void __fastcall Scroll(Forms::TScrollBarKind AScrollBarKind, Stdctrls::TScrollCode AScrollCode, int &AScrollPos);
virtual void __fastcall UpdateScrollBars(void);
DYNAMIC void __fastcall DragAndDrop(const Types::TPoint &P, bool &Accepted);
DYNAMIC void __fastcall EndDragAndDrop(bool Accepted);
DYNAMIC bool __fastcall StartDragAndDrop(const Types::TPoint &P);
void __fastcall CancelPostBoundsChanged(void);
void __fastcall InitTabStop(Controls::TWinControl* AParent);
void __fastcall PostBoundsChanged(void);
void __fastcall UpdateSize(void);
__property TcxCustomGridController* Controller = {read=GetController};
__property TcxCustomGridPainter* Painter = {read=GetPainter};
public:
__fastcall virtual TcxGridSite(TcxCustomGridViewInfo* AViewInfo);
__fastcall virtual ~TcxGridSite(void);
DYNAMIC void __fastcall BeginDragAndDrop(void);
DYNAMIC void __fastcall DragDrop(System::TObject* Source, int X, int Y);
DYNAMIC bool __fastcall ExecuteAction(Classes::TBasicAction* Action);
virtual void __fastcall SetBounds(int ALeft, int ATop, int AWidth, int AHeight);
virtual void __fastcall SetFocus(void);
DYNAMIC bool __fastcall UpdateAction(Classes::TBasicAction* Action);
__property Cxcontrols::TcxControl* Container = {read=GetContainer};
__property TcxCustomGridView* GridView = {read=GetGridView};
__property Keys ;
__property MouseCapture ;
__property TcxCustomGridViewInfo* ViewInfo = {read=FViewInfo};
public:
#pragma option push -w-inl
/* TWinControl.CreateParented */ inline __fastcall TcxGridSite(HWND ParentWindow) : Cxcontrols::TcxControl(ParentWindow) { }
#pragma option pop
};
typedef TMetaClass*TcxCustomGridCellViewInfoClass;
class PASCALIMPLEMENTATION TcxCustomGridCellViewInfo : public System::TObject
{
typedef System::TObject inherited;
private:
bool FCalculated;
bool FCalculatingParams;
#pragma pack(push, 1)
Types::TRect FContentBounds;
#pragma pack(pop)
Classes::TAlignment FAlignmentHorz;
Cxclasses::TcxAlignmentVert FAlignmentVert;
Cxgraphics::TcxBorders FBorders;
bool FIsDestroying;
bool FParamsCalculated;
Cxgridcommon::TcxGridCellState FState;
AnsiString FText;
bool FVisible;
int __fastcall GetBorderSize(Cxgraphics::TcxBorder AIndex);
Types::TRect __fastcall GetContentBounds();
int __fastcall GetTextAreaHeight(void);
int __fastcall GetTextAreaWidth(void);
int __fastcall GetTextHeight(void);
int __fastcall GetTextWidth(void);
void __fastcall SetState(Cxgridcommon::TcxGridCellState Value);
protected:
virtual HRESULT __stdcall QueryInterface(const GUID &IID, /* out */ void *Obj);
int __stdcall _AddRef(void);
int __stdcall _Release(void);
virtual void __fastcall DoCancelMode(void);
virtual void __fastcall MouseLeave(void);
virtual void __fastcall AfterCalculateBounds(Types::TRect &ABounds);
virtual void __fastcall AfterCustomDraw(Cxgraphics::TcxCanvas* ACanvas);
virtual void __fastcall BeforeCustomDraw(Cxgraphics::TcxCanvas* ACanvas);
virtual void __fastcall BeforeStateChange(void);
virtual Types::TRect __fastcall CalculateContentBounds();
void __fastcall CalculateParams(void);
virtual int __fastcall CalculateHeight(void) = 0 ;
virtual int __fastcall CalculateWidth(void) = 0 ;
virtual void __fastcall Click(void);
virtual bool __fastcall CustomDraw(Cxgraphics::TcxCanvas* ACanvas);
virtual bool __fastcall CustomDrawBackground(Cxgraphics::TcxCanvas* ACanvas);
void __fastcall Destroying(void);
virtual void __fastcall DoCalculateParams(void);
virtual bool __fastcall DoCustomDraw(Cxgraphics::TcxCanvas* ACanvas);
virtual bool __fastcall DoCustomDrawBackground(Cxgraphics::TcxCanvas* ACanvas);
virtual Classes::TAlignment __fastcall GetAlignmentHorz(void);
virtual Cxclasses::TcxAlignmentVert __fastcall GetAlignmentVert(void);
virtual Graphics::TBitmap* __fastcall GetBackgroundBitmap(void);
virtual Types::TRect __fastcall GetBorderBounds(Cxgraphics::TcxBorder AIndex);
virtual Graphics::TColor __fastcall GetBorderColor(Cxgraphics::TcxBorder AIndex) = 0 ;
virtual Cxgraphics::TcxBorders __fastcall GetBorders(void);
virtual int __fastcall GetBorderWidth(Cxgraphics::TcxBorder AIndex) = 0 ;
virtual Cxgraphics::TcxCanvas* __fastcall GetCanvas(void) = 0 ;
/* virtual class method */ virtual int __fastcall GetCellHeight(TMetaClass* vmt, int ATextHeight, TMetaClass* ALookAndFeelPainter);
virtual int __fastcall GetContentHeight(void);
virtual int __fastcall GetContentWidth(void);
virtual Cxcontrols::TcxControl* __fastcall GetControl(void);
virtual int __fastcall GetHeight(void);
virtual TMetaClass* __fastcall GetHitTestClass(void) = 0 ;
virtual bool __fastcall GetHotTrack(void);
virtual bool __fastcall GetIsCheck(void);
virtual bool __fastcall GetMouseCapture(void);
virtual bool __fastcall GetMultiLine(void);
virtual bool __fastcall GetMultiLinePainting(void);
virtual TMetaClass* __fastcall GetPainterClass(void);
virtual bool __fastcall GetShowEndEllipsis(void);
virtual AnsiString __fastcall GetText();
virtual Types::TRect __fastcall GetTextAreaBounds();
int __fastcall GetTextAttributes(bool AForPainting);
virtual int __fastcall GetTextCellHeight(TcxCustomGridViewInfo* AGridViewInfo, TMetaClass* ALookAndFeelPainter);
virtual bool __fastcall GetTransparent(void);
virtual void __fastcall GetViewParams(Cxgraphics::TcxViewParams &AParams);
virtual bool __fastcall GetVisible(void);
virtual int __fastcall GetWidth(void);
virtual bool __fastcall HasCustomDraw(void);
virtual bool __fastcall HasCustomDrawBackground(void);
virtual bool __fastcall HasMouse(TcxCustomGridHitTest* AHitTest);
virtual void __fastcall InitHitTest(TcxCustomGridHitTest* AHitTest);
virtual bool __fastcall InvalidateOnStateChange(void);
virtual void __fastcall Offset(int DX, int DY);
virtual void __fastcall RestoreParams(const Cxgraphics::TcxViewParams &AParams);
virtual void __fastcall SaveParams(/* out */ Cxgraphics::TcxViewParams &AParams);
virtual void __fastcall SetMouseCapture(bool Value);
virtual void __fastcall SetWidth(int Value);
virtual void __fastcall StateChanged(void);
__property int BorderWidth[Cxgraphics::TcxBorder AIndex] = {read=GetBorderWidth};
__property bool CalculatingParams = {read=FCalculatingParams, nodefault};
__property Cxgraphics::TcxCanvas* Canvas = {read=GetCanvas};
__property Cxcontrols::TcxControl* Control = {read=GetControl};
__property bool HotTrack = {read=GetHotTrack, nodefault};
__property bool IsCheck = {read=GetIsCheck, nodefault};
__property bool IsDestroying = {read=FIsDestroying, nodefault};
__property bool ShowEndEllipsis = {read=GetShowEndEllipsis, nodefault};
public:
#pragma pack(push, 1)
Types::TRect Bounds;
#pragma pack(pop)
bool MultiLine;
bool MultiLinePainting;
Cxgraphics::TcxViewParams Params;
__fastcall TcxCustomGridCellViewInfo(void);
__fastcall virtual ~TcxCustomGridCellViewInfo(void);
virtual void __fastcall AfterRecalculation(void);
virtual void __fastcall BeforeRecalculation(void);
virtual void __fastcall Calculate(int ALeftBound, int ATopBound, int AWidth = 0xffffffff, int AHeight = 0xffffffff)/* overload */;
virtual void __fastcall Calculate(const Types::TRect &ABounds)/* overload */;
virtual TcxCustomGridHitTest* __fastcall GetHitTest(const Types::TPoint &P);
virtual void __fastcall Invalidate(void);
virtual bool __fastcall MouseDown(TcxCustomGridHitTest* AHitTest, Controls::TMouseButton AButton, Classes::TShiftState AShift);
virtual bool __fastcall MouseMove(TcxCustomGridHitTest* AHitTest, Classes::TShiftState AShift);
virtual bool __fastcall MouseUp(TcxCustomGridHitTest* AHitTest, Controls::TMouseButton AButton, Classes::TShiftState AShift);
void __fastcall DoOffset(int DX, int DY);
virtual void __fastcall Paint(Cxgraphics::TcxCanvas* ACanvas = (Cxgraphics::TcxCanvas*)(0x0));
void __fastcall Recalculate(void);
void __fastcall ResetContentBounds(void);
__property Classes::TAlignment AlignmentHorz = {read=FAlignmentHorz, write=FAlignmentHorz, nodefault};
__property Cxclasses::TcxAlignmentVert AlignmentVert = {read=FAlignmentVert, write=FAlignmentVert, nodefault};
__property Graphics::TBitmap* BackgroundBitmap = {read=GetBackgroundBitmap};
__property Types::TRect BorderBounds[Cxgraphics::TcxBorder AIndex] = {read=GetBorderBounds};
__property Graphics::TColor BorderColor[Cxgraphics::TcxBorder AIndex] = {read=GetBorderColor};
__property int BorderSize[Cxgraphics::TcxBorder AIndex] = {read=GetBorderSize};
__property Cxgraphics::TcxBorders Borders = {read=FBorders, write=FBorders, nodefault};
__property bool Calculated = {read=FCalculated, write=FCalculated, nodefault};
__property Types::TRect ContentBounds = {read=GetContentBounds};
__property int ContentHeight = {read=GetContentHeight, nodefault};
__property int ContentWidth = {read=GetContentWidth, nodefault};
__property int Height = {read=GetHeight, nodefault};
__property bool MouseCapture = {read=GetMouseCapture, write=SetMouseCapture, nodefault};
__property Cxgridcommon::TcxGridCellState State = {read=FState, write=SetState, nodefault};
__property AnsiString Text = {read=FText, write=FText};
__property int TextAreaHeight = {read=GetTextAreaHeight, nodefault};
__property int TextAreaWidth = {read=GetTextAreaWidth, nodefault};
__property int TextHeight = {read=GetTextHeight, nodefault};
__property int TextWidth = {read=GetTextWidth, nodefault};
__property Types::TRect TextAreaBounds = {read=GetTextAreaBounds};
__property bool Transparent = {read=GetTransparent, nodefault};
__property bool Visible = {read=GetVisible, write=FVisible, nodefault};
__property int Width = {read=GetWidth, write=SetWidth, nodefault};
private:
void *__IcxMouseCaptureObject; /* Cxcontrols::IcxMouseCaptureObject */
void *__IcxMouseTrackingCaller; /* Cxcontrols::IcxMouseTrackingCaller */
public:
operator IcxMouseTrackingCaller*(void) { return (IcxMouseTrackingCaller*)&__IcxMouseTrackingCaller; }
operator IcxMouseCaptureObject*(void) { return (IcxMouseCaptureObject*)&__IcxMouseCaptureObject; }
operator IInterface*(void) { return (IInterface*)&__IcxMouseTrackingCaller; }
};
class DELPHICLASS TcxCustomGridViewCellViewInfo;
class PASCALIMPLEMENTATION TcxCustomGridViewCellViewInfo : public TcxCustomGridCellViewInfo
{
typedef TcxCustomGridCellViewInfo inherited;
private:
TcxCustomGridViewInfo* FGridViewInfo;
TcxCustomGridController* __fastcall GetController(void);
TcxCustomGridView* __fastcall GetGridView(void);
TMetaClass* __fastcall GetLookAndFeelPainter(void);
protected:
virtual void __fastcall AfterCalculateBounds(Types::TRect &ABounds);
virtual bool __fastcall EmulateMouseMoveAfterCalculate(void);
virtual Cxgraphics::TcxCanvas* __fastcall GetCanvas(void);
virtual Cxcontrols::TcxControl* __fastcall GetControl(void);
virtual bool __fastcall HasMouse(TcxCustomGridHitTest* AHitTest);
virtual void __fastcall InitHitTest(TcxCustomGridHitTest* AHitTest);
virtual bool __fastcall CanShowHint(void);
void __fastcall CheckHint(TcxCustomGridHitTest* AHitTest);
virtual Types::TRect __fastcall GetBoundsForHint();
virtual bool __fastcall NeedShowHint(const Types::TPoint &AMousePos, /* out */ AnsiString &AHintText, /* out */ bool &AIsHintMultiLine, /* out */ Types::TRect &ATextRect);
__property TcxCustomGridController* Controller = {read=GetController};
public:
__fastcall TcxCustomGridViewCellViewInfo(TcxCustomGridViewInfo* AGridViewInfo);
__fastcall virtual ~TcxCustomGridViewCellViewInfo(void);
virtual void __fastcall Invalidate(void);
virtual bool __fastcall MouseMove(TcxCustomGridHitTest* AHitTest, Classes::TShiftState AShift);
__property TcxCustomGridView* GridView = {read=GetGridView};
__property TcxCustomGridViewInfo* GridViewInfo = {read=FGridViewInfo};
__property TMetaClass* LookAndFeelPainter = {read=GetLookAndFeelPainter};
};
class PASCALIMPLEMENTATION TcxCustomGridViewInfo : public TcxGridViewHandler
{
typedef TcxGridViewHandler inherited;
private:
Classes::TList* FActiveViewInfos;
#pragma pack(push, 1)
Types::TRect FBounds;
#pragma pack(pop)
#pragma pack(push, 1)
Types::TRect FClientBounds;
#pragma pack(pop)
bool FClientBoundsAssigned;
bool FIsCalculating;
bool FIsInternalUse;
_RTL_CRITICAL_SECTION FLock;
#pragma pack(push, 1)
Types::TPoint FMousePos;
#pragma pack(pop)
TcxGridSite* FSite;
bool FSizeCalculating;
bool FVisibilityChanging;
bool __fastcall GetCalculated(void);
Cxgraphics::TcxCanvas* __fastcall GetCanvas(void);
Types::TRect __fastcall GetClientBounds();
int __fastcall GetClientHeight(void);
int __fastcall GetClientWidth(void);
bool __fastcall GetIsInternalUseValue(void);
void __fastcall SetClientBounds(const Types::TRect &Value);
protected:
virtual void __fastcall CreateViewInfos(void);
virtual void __fastcall DestroyViewInfos(bool AIsRecreating);
virtual void __fastcall RecreateViewInfos(void);
void __fastcall CreateSite(void);
void __fastcall DestroySite(void);
virtual TMetaClass* __fastcall GetSiteClass(void);
Controls::TWinControl* __fastcall GetSiteParent(void);
void __fastcall AddActiveViewInfo(System::TObject* AViewInfo);
bool __fastcall IsViewInfoActive(System::TObject* AViewInfo);
void __fastcall RemoveActiveViewInfo(System::TObject* AViewInfo);
void __fastcall AddScrollBarHeight(int &AHeight);
virtual void __fastcall AfterCalculating(void);
virtual void __fastcall BeforeCalculating(void);
virtual void __fastcall Calculate(void);
virtual Types::TRect __fastcall CalculateClientBounds();
virtual void __fastcall CalculateHeight(const Types::TPoint &AMaxSize, int &AHeight, bool &AFullyVisible);
virtual void __fastcall CalculateWidth(const Types::TPoint &AMaxSize, int &AWidth);
virtual void __fastcall ControlFocusChanged(void);
virtual bool __fastcall GetAllowBoundsChangedNotification(void);
virtual Graphics::TBitmap* __fastcall GetBackgroundBitmap(void);
virtual Graphics::TColor __fastcall GetBackgroundColor(void);
virtual void __fastcall GetHScrollBarBounds(Types::TRect &ABounds);
virtual bool __fastcall GetIsInternalUse(void);
virtual void __fastcall InitHitTest(TcxCustomGridHitTest* AHitTest);
void __fastcall UpdateMousePos(void);
virtual void __fastcall VisibilityChanged(bool AVisible);
__property bool AllowBoundsChangedNotification = {read=GetAllowBoundsChangedNotification, nodefault};
__property bool ClientBoundsAssigned = {read=FClientBoundsAssigned, write=FClientBoundsAssigned, nodefault};
__property bool SizeCalculating = {read=FSizeCalculating, nodefault};
__property bool VisibilityChanging = {read=FVisibilityChanging, nodefault};
public:
__fastcall virtual TcxCustomGridViewInfo(TcxCustomGridView* AGridView);
__fastcall virtual ~TcxCustomGridViewInfo(void);
virtual void __fastcall BeforeDestruction(void);
void __fastcall DoVisibilityChanged(bool AVisible);
int __fastcall GetFontHeight(Graphics::TFont* AFont);
void __fastcall GetHeight(const Types::TPoint &AMaxSize, int &AHeight, bool &AFullyVisible);
virtual TcxCustomGridHitTest* __fastcall GetHitTest(const Types::TPoint &P)/* overload */;
virtual TcxCustomGridHitTest* __fastcall GetHitTest(int X, int Y)/* overload */;
void __fastcall GetWidth(const Types::TPoint &AMaxSize, int &AWidth);
void __fastcall MainCalculate(const Types::TRect &ABounds);
void __fastcall Recalculate(void);
__property Graphics::TColor BackgroundColor = {read=GetBackgroundColor, nodefault};
__property Graphics::TBitmap* BackgroundBitmap = {read=GetBackgroundBitmap};
__property Types::TRect Bounds = {read=FBounds};
__property bool Calculated = {read=GetCalculated, nodefault};
__property Cxgraphics::TcxCanvas* Canvas = {read=GetCanvas};
__property Types::TRect ClientBounds = {read=GetClientBounds, write=SetClientBounds};
__property int ClientHeight = {read=GetClientHeight, nodefault};
__property int ClientWidth = {read=GetClientWidth, nodefault};
__property bool IsCalculating = {read=FIsCalculating, nodefault};
__property bool IsInternalUse = {read=GetIsInternalUseValue, write=FIsInternalUse, nodefault};
__property Types::TPoint MousePos = {read=FMousePos};
__property TcxGridSite* Site = {read=FSite};
};
class PASCALIMPLEMENTATION TcxCustomGridViewInfoCacheItem : public System::TObject
{
typedef System::TObject inherited;
private:
int FIndex;
TcxCustomGridViewInfoCache* FOwner;
protected:
__property int Index = {read=FIndex, nodefault};
__property TcxCustomGridViewInfoCache* Owner = {read=FOwner};
public:
__fastcall virtual TcxCustomGridViewInfoCacheItem(TcxCustomGridViewInfoCache* AOwner, int AIndex);
virtual void __fastcall UnassignValues(bool AKeepMaster);
public:
#pragma option push -w-inl
/* TObject.Destroy */ inline __fastcall virtual ~TcxCustomGridViewInfoCacheItem(void) { }
#pragma option pop
};
class DELPHICLASS TcxCustomGridViewStyles;
class PASCALIMPLEMENTATION TcxCustomGridViewStyles : public TcxCustomGridStyles
{
typedef TcxCustomGridStyles inherited;
protected:
virtual void __fastcall GetDefaultViewParams(int Index, void * AData, /* out */ Cxgraphics::TcxViewParams &AParams);
virtual TcxCustomGridView* __fastcall GetGridView(void);
public:
virtual void __fastcall Assign(Classes::TPersistent* Source);
__published:
__property Cxstyles::TcxStyle* Background = {read=GetValue, write=SetValue, index=0};
__property StyleSheet ;
public:
#pragma option push -w-inl
/* TcxCustomStyles.Create */ inline __fastcall virtual TcxCustomGridViewStyles(Classes::TPersistent* AOwner) : TcxCustomGridStyles(AOwner) { }
#pragma option pop
#pragma option push -w-inl
/* TcxCustomStyles.Destroy */ inline __fastcall virtual ~TcxCustomGridViewStyles(void) { }
#pragma option pop
};
typedef void __fastcall (__closure *TcxGridCellCustomDrawEvent)(TcxCustomGridView* Sender, Cxgraphics::TcxCanvas* ACanvas, TcxCustomGridCellViewInfo* AViewInfo, bool &ADone);
typedef TMetaClass*TcxCustomGridViewClass;
//-- var, const, procedure ---------------------------------------------------
static const Shortint htError = 0xffffffff;
static const Shortint htNone = 0x0;
static const Shortint bbCustomFirst = 0x0;
static const Shortint bbBackground = 0x0;
static const Shortint bbCustomLast = 0x0;
static const Shortint vsCustomFirst = 0x0;
static const Shortint vsBackground = 0x0;
static const Shortint vsCustomLast = 0x0;
static const Word CM_BOUNDSCHANGED = 0x401;
extern PACKAGE Cxclasses::TcxRegisteredClasses* cxGridRegisteredViews;
extern PACKAGE TcxCustomGridView* __fastcall GetParentGridView(Controls::TControl* AControl);
} /* namespace Cxgridcustomview */
using namespace Cxgridcustomview;
#pragma option pop // -w-
#pragma option pop // -Vx
#pragma delphiheader end.
//-- end unit ----------------------------------------------------------------
#endif // cxGridCustomView
| [
"victor.hytyk@gmail.com"
] | victor.hytyk@gmail.com |
82b02b393fa0ea9af070e6a8b54c05da2eb7fb74 | 77f909ae69f32e83a13240e0de767b283ce1af82 | /hwtest/pgraph_class_ifc.cc | 78b094ef001b1c6a3ef8964acc90649671a8f859 | [
"MIT"
] | permissive | grate-driver/envytools | 245fc759880c91e9534cc71dc1c5dfc47928eeb8 | 237d859ed4307524ed99f9a3601e3ef40a7d0814 | refs/heads/master | 2021-01-23T12:53:13.052889 | 2020-08-03T12:42:30 | 2020-08-03T12:42:30 | 102,654,725 | 4 | 1 | null | 2017-09-06T21:56:26 | 2017-09-06T20:23:15 | C | UTF-8 | C++ | false | false | 14,284 | cc | /*
* Copyright (C) 2016 Marcin Kościelnicki <koriakin@0x04.net>
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
#include "pgraph.h"
#include "pgraph_mthd.h"
#include "pgraph_class.h"
#include "nva.h"
namespace hwtest {
namespace pgraph {
class MthdSifcXy : public SingleMthdTest {
void adjust_orig_mthd() override {
if (rnd() & 1)
val &= 0xffff;
if (!(rnd() & 3))
val &= 0x000f000f;
if (!(rnd() & 3))
val = 0x00100000;
}
void emulate_mthd() override {
exp.valid[0] |= 0x9018;
if (chipset.card_type < 4) {
exp.vtx_xy[3][1] = -exp.vtx_xy[7][1];
pgraph_vtx_cmp(&exp, 0, 3, false);
pgraph_vtx_cmp(&exp, 1, 3, false);
nv03_pgraph_vtx_add(&exp, 1, 3, ~exp.vtx_xy[7][1], 1, 0, false, true);
} else {
nv04_pgraph_vtx_add(&exp, 1, 3, ~exp.vtx_xy[7][1], 1, 0, true);
pgraph_vtx_cmp(&exp, 0, 3, false);
pgraph_vtx_cmp(&exp, 1, 3, false);
}
exp.vtx_xy[4][0] = extr(val, 0, 16) << 16;
exp.vtx_xy[4][1] = extr(val, 16, 16) << 16;
insrt(exp.valid[0], 19, 1, 0);
pgraph_clear_vtxid(&exp);
insrt(exp.xy_misc_1[0], 0, 1, 0);
insrt(exp.xy_misc_1[1], 0, 1, 0);
if (chipset.card_type < 4) {
int xcstat = nv03_pgraph_clip_status(&exp, extrs(val, 4, 12), 0, false);
int ycstat = nv03_pgraph_clip_status(&exp, extrs(val, 20, 12), 1, false);
pgraph_set_xy_d(&exp, 0, 0, 0, false, false, false, xcstat);
pgraph_set_xy_d(&exp, 1, 0, 0, false, false, false, ycstat);
} else {
int xcstat = nv04_pgraph_clip_status(&exp, extrs(val, 4, 12), 0);
int ycstat = nv04_pgraph_clip_status(&exp, extrs(val, 20, 12), 1);
pgraph_set_xy_d(&exp, 0, 0, 0, false, false, false, xcstat);
pgraph_set_xy_d(&exp, 1, 0, 0, false, false, false, ycstat);
}
insrt(exp.xy_misc_3, 8, 1, 0);
pgraph_set_image_zero(&exp, !exp.vtx_xy[3][0] || !exp.vtx_xy[3][1]);
}
using SingleMthdTest::SingleMthdTest;
};
class MthdSifcDiff : public SingleMthdTest {
int which;
void adjust_orig_mthd() override {
if (rnd() & 1)
val &= 0xffff;
if (!(rnd() & 3))
val &= 0x000f000f;
if (!(rnd() & 3))
val = 0x00100000;
}
void emulate_mthd() override {
insrt(exp.valid[0], 5 + which * 8, 1, 1);
exp.vtx_xy[5][which] = val;
pgraph_clear_vtxid(&exp);
insrt(exp.xy_misc_1[0], 0, 1, 0);
insrt(exp.xy_misc_1[1], 0, 1, 0);
}
public:
MthdSifcDiff(hwtest::TestOptions &opt, uint32_t seed, const std::string &name, int trapbit, uint32_t cls, uint32_t mthd, int which)
: SingleMthdTest(opt, seed, name, trapbit, cls, mthd), which(which) {}
};
class MthdIfcFormat : public SingleMthdTest {
bool is_new;
bool supported() override {
return chipset.card_type >= 4;
}
void adjust_orig_mthd() override {
if (rnd() & 1) {
val &= 0xf;
if (rnd() & 1)
val ^= 1 << (rnd() & 0x1f);
}
}
bool is_valid_val() override {
if (cls & 0xff00)
return val < 8 && val != 0;
return val < 6 && val != 0;
}
void emulate_mthd() override {
int sfmt = val & 7;
int fmt = 0;
if (sfmt == 1)
fmt = is_new ? 0xa : 0x1;
if (sfmt == 2)
fmt = 0x6;
if (sfmt == 3)
fmt = 0x7;
if (sfmt == 4)
fmt = 0xd;
if (sfmt == 5)
fmt = 0xe;
if (sfmt == 6 && is_new && chipset.card_type >= 0x30)
fmt = 0x18;
if (sfmt == 7 && is_new && chipset.card_type >= 0x30)
fmt = 0x19;
if (!extr(exp.nsource, 1, 1)) {
insrt(egrobj[1], 8, 8, fmt);
exp.ctx_cache[subc][1] = exp.ctx_switch[1];
insrt(exp.ctx_cache[subc][1], 8, 8, fmt);
if (extr(exp.debug[1], 20, 1))
exp.ctx_switch[1] = exp.ctx_cache[subc][1];
}
}
public:
MthdIfcFormat(hwtest::TestOptions &opt, uint32_t seed, const std::string &name, int trapbit, uint32_t cls, uint32_t mthd, bool is_new)
: SingleMthdTest(opt, seed, name, trapbit, cls, mthd), is_new(is_new) {}
};
class MthdIndexFormat : public SingleMthdTest {
void adjust_orig_mthd() override {
if (rnd() & 1) {
val &= 0xf;
if (rnd() & 1)
val ^= 1 << (rnd() & 0x1f);
}
}
bool is_valid_val() override {
return val < 2;
}
void emulate_mthd() override {
insrt(exp.dvd_format, 0, 6, val & 1);
}
using SingleMthdTest::SingleMthdTest;
};
class MthdPaletteOffset : public SingleMthdTest {
void emulate_mthd() override {
exp.dma_offset[0] = val;
insrt(exp.valid[0], 22, 1, 1);
}
using SingleMthdTest::SingleMthdTest;
};
void MthdBitmapData::adjust_orig_mthd() {
if (chipset.card_type >= 4) {
insrt(orig.notify, 0, 1, 0);
}
}
void MthdBitmapData::emulate_mthd_pre() {
if (!extr(exp.xy_misc_3, 12, 1))
insrt(exp.xy_misc_3, 4, 1, 0);
}
void MthdBitmapData::emulate_mthd() {
uint32_t rval = nv04_pgraph_bswap(&exp, val);
if (chipset.card_type == 3) {
// yup, orig. hw bug.
exp.misc32[0] = pgraph_expand_mono(&orig, rval);
} else {
exp.misc32[0] = pgraph_expand_mono(&exp, rval);
}
// XXX: test me
skip = true;
}
class MthdIifcData : public SingleMthdTest {
void adjust_orig_mthd() override {
insrt(orig.notify, 0, 1, 0);
// XXX: unlock it some day
orig.valid[0] = 0;
}
void emulate_mthd_pre() override {
insrt(exp.xy_misc_3, 4, 1, 0);
}
void emulate_mthd() override {
exp.misc32[0] = nv04_pgraph_bswap(&exp, val);
// XXX: test me
skip = true;
}
using SingleMthdTest::SingleMthdTest;
};
class MthdIfcData : public SingleMthdTest {
int which;
bool draw;
void adjust_orig_mthd() override {
if (draw && chipset.card_type >= 4) {
insrt(orig.notify, 0, 1, 0);
}
}
void emulate_mthd_pre() override {
if (draw && !pgraph_is_class_sifc(&exp))
insrt(exp.xy_misc_3, 4, 1, 0);
}
void emulate_mthd() override {
uint32_t rv = val;
switch (extr(nv04_pgraph_formats(&exp), 12, 5)) {
case 1:
rv = nv04_pgraph_bswap(&exp, rv);
break;
case 6:
rv = nv04_pgraph_hswap(&exp, rv);
break;
default:
switch (extr(exp.ctx_switch[1], 8, 6)) {
case 6:
case 7:
case 0xa:
rv = nv04_pgraph_hswap(&exp, rv);
break;
}
break;
}
exp.misc32[which] = rv;
if (draw) {
// XXX: test me
skip = true;
}
}
public:
MthdIfcData(hwtest::TestOptions &opt, uint32_t seed, const std::string &name, int trapbit, uint32_t cls, uint32_t mthd, uint32_t num, uint32_t stride, int which, bool draw)
: SingleMthdTest(opt, seed, name, trapbit, cls, mthd, num, stride), which(which), draw(draw) {}
};
std::vector<SingleMthdTest *> Ifc::mthds() {
std::vector<SingleMthdTest *> res = {
new MthdNop(opt, rnd(), "nop", -1, cls, 0x100),
new MthdNotify(opt, rnd(), "notify", 0, cls, 0x104),
new MthdPatch(opt, rnd(), "patch", -1, cls, 0x10c),
new MthdPmTrigger(opt, rnd(), "pm_trigger", -1, cls, 0x140),
new MthdDmaNotify(opt, rnd(), "dma_notify", 1, cls, 0x180),
new MthdCtxChroma(opt, rnd(), "ctx_chroma", 2, cls, 0x184, cls != 0x21),
new MthdCtxClip(opt, rnd(), "ctx_clip", 3, cls, 0x188),
new MthdCtxPattern(opt, rnd(), "ctx_pattern", 4, cls, 0x18c, cls != 0x21),
new MthdCtxRop(opt, rnd(), "ctx_rop", 5, cls, 0x190),
new MthdCtxBeta(opt, rnd(), "ctx_beta", 6, cls, 0x194),
new MthdMissing(opt, rnd(), "missing", -1, cls, 0x200),
new MthdOperation(opt, rnd(), "operation", 9, cls, 0x2fc, cls != 0x21),
new MthdIfcFormat(opt, rnd(), "format", 10, cls, 0x300, cls != 0x21),
new MthdVtxXy(opt, rnd(), "xy", 11, cls, 0x304, 1, 4, VTX_FIRST | VTX_IFC),
new MthdIfcSize(opt, rnd(), "size_out", 12, cls, 0x308, IFC_OUT),
new MthdIfcSize(opt, rnd(), "size_in", 13, cls, 0x30c, IFC_IN),
};
if (cls == 0x21) {
res.insert(res.end(), {
new MthdCtxSurf(opt, rnd(), "ctx_dst", 8, cls, 0x198, 0),
});
} else {
res.insert(res.end(), {
new MthdCtxBeta4(opt, rnd(), "ctx_beta4", 7, cls, 0x198),
new MthdCtxSurf2D(opt, rnd(), "ctx_surf2d", 8, cls, 0x19c, SURF2D_NV10),
});
}
if (cls == 0x65 || (cls & 0xff) == 0x8a) {
res.insert(res.end(), {
new MthdDither(opt, rnd(), "dither", 15, cls, 0x2f8),
});
}
if ((cls & 0xff) == 0x8a) {
res.insert(res.begin(), {
new MthdSync(opt, rnd(), "sync", -1, cls, 0x108),
});
res.insert(res.end(), {
new MthdIfcData(opt, rnd(), "ifc_data_lo", 14, cls, 0x400, 0x380, 8, 0, false),
new MthdIfcData(opt, rnd(), "ifc_data_hi", 14, cls, 0x404, 0x380, 8, 1, true),
});
} else {
res.insert(res.end(), {
new MthdIfcData(opt, rnd(), "ifc_data", 14, cls, 0x400, cls == 0x21 ? 0x20 : 0x700, 4, 0, true),
});
}
return res;
}
std::vector<SingleMthdTest *> Bitmap::mthds() {
return {
new MthdNotify(opt, rnd(), "notify", -1, cls, 0x104),
new MthdBitmapColor0(opt, rnd(), "color0", -1, cls, 0x308),
new MthdBitmapColor1(opt, rnd(), "color1", -1, cls, 0x30c),
new MthdVtxXy(opt, rnd(), "xy", -1, cls, 0x310, 1, 4, VTX_FIRST | VTX_IFC),
new MthdIfcSize(opt, rnd(), "size_out", -1, cls, 0x314, IFC_OUT | IFC_BITMAP),
new MthdIfcSize(opt, rnd(), "size_in", -1, cls, 0x318, IFC_IN | IFC_BITMAP),
new MthdBitmapData(opt, rnd(), "bitmap_data", -1, cls, 0x400, 0x20, 4, true),
};
}
std::vector<SingleMthdTest *> Sifc::mthds() {
std::vector<SingleMthdTest *> res = {
new MthdNop(opt, rnd(), "nop", -1, cls, 0x100),
new MthdNotify(opt, rnd(), "notify", 0, cls, 0x104),
new MthdPatch(opt, rnd(), "patch", -1, cls, 0x10c),
new MthdPmTrigger(opt, rnd(), "pm_trigger", -1, cls, 0x140),
new MthdDmaNotify(opt, rnd(), "dma_notify", 1, cls, 0x180),
new MthdCtxChroma(opt, rnd(), "ctx_chroma", 2, cls, 0x184, cls != 0x36),
new MthdCtxPattern(opt, rnd(), "ctx_pattern", 3, cls, 0x188, cls != 0x36),
new MthdCtxRop(opt, rnd(), "ctx_rop", 4, cls, 0x18c),
new MthdCtxBeta(opt, rnd(), "ctx_beta", 5, cls, 0x190),
new MthdMissing(opt, rnd(), "missing", -1, cls, 0x200),
new MthdOperation(opt, rnd(), "operation", 8, cls, 0x2fc, cls != 0x36),
new MthdIfcFormat(opt, rnd(), "format", 9, cls, 0x300, cls != 0x36),
new MthdIfcSize(opt, rnd(), "size_in", 10, cls, 0x304, IFC_IN),
new MthdSifcDiff(opt, rnd(), "dxdu", 11, cls, 0x308, 0),
new MthdSifcDiff(opt, rnd(), "dydv", 12, cls, 0x30c, 1),
new MthdClipXy(opt, rnd(), "clip_xy", 13, cls, 0x310, 1, 0),
new MthdClipRect(opt, rnd(), "clip_rect", 14, cls, 0x314, 1),
new MthdSifcXy(opt, rnd(), "xy", 15, cls, 0x318),
new MthdIfcData(opt, rnd(), "sifc_data", 16, cls, 0x400, 0x700, 4, 0, true),
};
if (cls == 0x36) {
res.insert(res.end(), {
new MthdCtxSurf(opt, rnd(), "ctx_dst", 7, cls, 0x194, 0),
});
} else {
res.insert(res.end(), {
new MthdCtxBeta4(opt, rnd(), "ctx_beta4", 6, cls, 0x194),
new MthdCtxSurf2D(opt, rnd(), "ctx_surf2d", 7, cls, 0x198, SURF2D_NV10),
});
}
if ((cls & 0xff) == 0x66) {
res.insert(res.end(), {
new MthdDither(opt, rnd(), "dither", 17, cls, 0x2f8),
});
}
return res;
}
std::vector<SingleMthdTest *> Iifc::mthds() {
std::vector<SingleMthdTest *> res = {
new MthdNop(opt, rnd(), "nop", -1, cls, 0x100),
new MthdNotify(opt, rnd(), "notify", 0, cls, 0x104),
new MthdPatch(opt, rnd(), "patch", -1, cls, 0x10c),
new MthdPmTrigger(opt, rnd(), "pm_trigger", -1, cls, 0x140),
new MthdDmaNotify(opt, rnd(), "dma_notify", 1, cls, 0x180),
new MthdDmaGrobj(opt, rnd(), "dma_palette", 2, cls, 0x184, 0, DMA_R),
new MthdCtxChroma(opt, rnd(), "ctx_chroma", 3, cls, 0x188, true),
new MthdCtxClip(opt, rnd(), "ctx_clip", 4, cls, 0x18c),
new MthdCtxPattern(opt, rnd(), "ctx_pattern", 5, cls, 0x190, true),
new MthdCtxRop(opt, rnd(), "ctx_rop", 6, cls, 0x194),
new MthdCtxBeta(opt, rnd(), "ctx_beta", 7, cls, 0x198),
new MthdCtxBeta4(opt, rnd(), "ctx_beta4", 8, cls, 0x19c),
new MthdCtxSurf2D(opt, rnd(), "ctx_surf2d", 9, cls, 0x1a0, (cls == 0x60 ? SURF2D_NV4 : SURF2D_NV10) | SURF2D_SWZOK),
new MthdMissing(opt, rnd(), "missing", -1, cls, 0x200),
new MthdOperation(opt, rnd(), "operation", 10, cls, 0x3e4, true),
new MthdIfcFormat(opt, rnd(), "format", 11, cls, 0x3e8, true),
new MthdIndexFormat(opt, rnd(), "index_format", 12, cls, 0x3ec),
new MthdPaletteOffset(opt, rnd(), "palette_offset", 13, cls, 0x3f0),
new MthdVtxXy(opt, rnd(), "xy", 14, cls, 0x3f4, 1, 4, VTX_FIRST | VTX_IFC),
new MthdIfcSize(opt, rnd(), "size_out", 15, cls, 0x3f8, IFC_OUT),
new MthdIfcSize(opt, rnd(), "size_in", 16, cls, 0x3fc, IFC_IN),
new MthdIifcData(opt, rnd(), "iifc_data", 17, cls, 0x400, 0x700),
};
if ((cls & 0xff) == 0x64) {
res.insert(res.end(), {
new MthdDither(opt, rnd(), "dither", 18, cls, 0x3e0),
});
}
return res;
}
std::vector<SingleMthdTest *> Tfc::mthds() {
return {
new MthdNop(opt, rnd(), "nop", -1, cls, 0x100),
new MthdNotify(opt, rnd(), "notify", 0, cls, 0x104),
new MthdSync(opt, rnd(), "sync", 1, cls, 0x108),
new MthdPmTrigger(opt, rnd(), "pm_trigger", -1, cls, 0x140),
new MthdDmaNotify(opt, rnd(), "dma_notify", 2, cls, 0x180),
new MthdCtxSurf2D(opt, rnd(), "ctx_surf2d", 3, cls, 0x184, SURF2D_NV10 | SURF2D_SWZOK),
new MthdDither(opt, rnd(), "dither", 4, cls, 0x2fc),
new MthdIfcFormat(opt, rnd(), "format", 5, cls, 0x300, true),
new MthdVtxXy(opt, rnd(), "xy", 6, cls, 0x304, 1, 4, VTX_FIRST | VTX_IFC | VTX_TFC),
new MthdIfcSize(opt, rnd(), "size", 7, cls, 0x308, IFC_IN | IFC_OUT | IFC_TFC),
new MthdClipHv(opt, rnd(), "clip_h", 8, cls, 0x30c, 1, 0),
new MthdClipHv(opt, rnd(), "clip_v", 9, cls, 0x310, 1, 1),
new MthdIfcData(opt, rnd(), "tfc_data_lo", 10, cls, 0x400, 0x380, 8, 0, false),
new MthdIfcData(opt, rnd(), "tfc_data_hi", 11, cls, 0x404, 0x380, 8, 1, true),
};
}
}
}
| [
"koriakin@0x04.net"
] | koriakin@0x04.net |
564014db91bcfeb802f1689f57ea1331cc8c45e4 | 39b003b15d9cdf42483f43ee59293a935cd26ef1 | /BitMakeUpgradePacketApp/mainwindow.h | 494b4594a0a6c8aa5691246ba523a6c5bd7f7b6b | [] | no_license | hanqianjin/kang | f16fb3835ecd850a3a86bb93f0679c878c82acab | cc40e6be18287a7a3269e50371f2850cd03bfb5d | refs/heads/master | 2021-06-25T23:47:54.108574 | 2020-11-20T02:46:25 | 2020-11-20T02:46:25 | 142,751,390 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 774 | h | #ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
typedef struct updatep
{
qint32 itype;//File Folder:0\nFile:1\nExtension:2
char name[64];
}UPDATEPRO,*PUPDATEPRO;
typedef struct uppro
{
qint32 isum;
char swver[64];
char hwver[64];
char update[64];
}UPPRO,*PUPPRO;
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private slots:
void on_pushButton_clicked();
void on_pushButton_2_clicked();
// void keyPressEvent(QKeyEvent *event);
private:
Ui::MainWindow *ui;
void GetSum();
void GenConfig();
UPPRO upproperty;
PUPDATEPRO upitempro;
private:
UPPRO readpro;
UPDATEPRO readitempro;
};
#endif // MAINWINDOW_H
| [
"41859296+hanqianjin@users.noreply.github.com"
] | 41859296+hanqianjin@users.noreply.github.com |
2e8acc0c792ea7d3c07316f74719203151f15a21 | a6094c9c6d19a0878eb379bb8f8b09243072ba73 | /lmm-p2542-Accepted-s947975.cpp | 4ccb3ab179ea3b4116c7d130c51b16cd0f4a29fa | [] | no_license | pedris11s/coj-solutions | c6b0c806a560d1058f32edb77bc702d575b355c3 | e26da6887109697afa4703f900dc38a301c94835 | refs/heads/master | 2020-09-26T07:25:40.728954 | 2019-12-05T22:51:07 | 2019-12-05T22:51:07 | 226,202,753 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,462 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long LL;
const int MOD = 1e9 + 7;
struct matrix{
LL A, B, C, D;
matrix(){}
matrix(LL A, LL B, LL C, LL D) {
this -> A = A;
this -> B = B;
this -> C = C;
this -> D = D;
}
const matrix operator * (const matrix &other){
LL a, b, c, d;
a = (A % MOD * (other.A % MOD)) % MOD + (B % MOD * (other.C % MOD)) % MOD;
b = (A % MOD * (other.B % MOD)) % MOD + (B % MOD * (other.D % MOD)) % MOD;
c = (C % MOD * (other.A % MOD)) % MOD + (D % MOD * (other.C % MOD)) % MOD;
d = (C % MOD * (other.B % MOD)) % MOD + (D % MOD * (other.D % MOD)) % MOD;
return matrix(a % MOD,b % MOD,c % MOD,d % MOD);
}
};
const matrix FIB = matrix(0, 1, 1, 1);
matrix fib(const matrix b, LL e){
if(e == 1)
return b;
matrix d = fib(b, e / 2);
d = d * d;
if(e & 1)
d = d * b;
return d;
}
LL lcm(LL a, LL b){
return (a * b/__gcd(a,b));
}
int main()
{
ios_base::sync_with_stdio(0); cin.tie(0);
int t;
cin >> t;
while(t--)
{
int a, b;
cin >> a >> b;
//int gcd = __gcd(a, b);
//LL lcm = (a * b) / gcd;
//int H = fib(FIB, (a * b) / __gcd(a, b)).B;
//int K = fib(FIB, __gcd(a, b)).B;
//cout << H << " " << K << "\n";
printf("%lld %lld\n",fib(FIB, lcm(a,b)).B, fib(FIB, __gcd(a,b)).B);
}
return 0;
}
| [
"ptorres@factorclick.cl"
] | ptorres@factorclick.cl |
cf91b035fa8b5586846d0f297b35d4ee689656de | e4d6a2b9da474c1bff7efc73536987e033b96135 | /functionPointers-calculator/getInput.cpp | 20e382eecf5f6679e64b26ec476209004846b46a | [] | no_license | luyangtang/cppQuiz | 578f4661121d4ad71b96bc6558a0e7f135443f26 | 7f6845e2e611e026625d8b5568ee5f4dfb697d2d | refs/heads/master | 2020-04-11T09:45:57.256771 | 2019-04-26T22:27:19 | 2019-04-26T22:27:19 | 161,690,947 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 591 | cpp | #include <iostream>
#include "getInput.h"
// validate integer input
bool notInt(int input)
{
return std::cin.fail();
}
// validate operator input (char and int can be used interchangably in this case)
bool notOperator(int input)
{
switch (input)
{
case '+': return false;
case '-': return false;
case '*': return false;
case '/': return false;
}
return true;
}
bool notYN(int input)
{
switch (input)
{
case 'y': return false;
case 'n': return false;
}
return true;
}
// function pointers for validation Function
bool (*inputValidation)(int);
| [
"kojika.tang@gmail.com"
] | kojika.tang@gmail.com |
d575cfb10c562287f85e09fad63f167080592a83 | 0f8e0e4f61f9e924744b4512d2c11fa21fa23e29 | /Codeforces/616/e.cpp | 522a519d862b04a5fb1731ad233cb4b233fc09a6 | [] | no_license | ldorelli/icpc | 7ce91d793fc2c1a10a9f91303b023c2b77d05078 | e3116c89852726be036dd3d6fcfa3b3fab6f4400 | refs/heads/master | 2021-01-10T09:16:48.414540 | 2016-02-23T01:02:27 | 2016-02-23T01:02:27 | 51,770,503 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 654 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
ll MO = 100000007;
ll n, m;
ll sum (ll x, ll y, ll k) {
ll A = x%n;
ll B = y%n;
}
int main (void) {
cin >> n >> m;
ll ans = 0;
if (m > n) {
ans = (m - n)%MO;
m = n;
}
ll B = n;
for (ll x = 2; ; ++x) {
if (n/x <= 1) break;
ll lo = x;
ll hi = n;
while (lo != hi) {
ll mi = (hi + lo + 1)/2;
if (n/mi == n/x) lo = mi;
else hi = mi-1;
}
x = lo;
ll A = x + 1;
// ans = (ans + solve (A, B, x)) %MO;
}
cout << ans << endl;
}
| [
"lfdorelli@gmail.com"
] | lfdorelli@gmail.com |
4bd8eec5f4603644a2aab4709410746a5f92becc | 17f37b79643b9c6acd181c55c43a3ab4c889433e | /cavity/42.8/uniform/time | b23bf08928fdeed4600b8ef61b6881613ea76331 | [] | no_license | aashay201297/OpenFOAM-simulations | 5208b766ab1e715178e42c73d028cc43d17ec4c9 | 273f60ef66e6f5b0c99a53ac52de406be0e876a2 | refs/heads/master | 2021-01-23T06:34:17.044650 | 2017-06-04T19:02:27 | 2017-06-04T19:02:27 | 86,373,858 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 995 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "42.8/uniform";
object time;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
value 42.8000000000034433;
name "42.8";
index 8560;
deltaT 0.005;
deltaT0 0.005;
// ************************************************************************* //
| [
"aashay225@gmail.com"
] | aashay225@gmail.com | |
97ad2247bf4e9abd3708be19073a2c1847416f85 | b845d6818feeb0642294ce50a8ed1c6c10cfdee2 | /SoftRenderer-master/Sprite.h | 7e852251a15ffede9dfa2893b81d30e1092fc19a | [] | no_license | OSunknown/SoftRenderer | ed3de4074d5d205ffd81849ce2f0719c088c5a64 | 1a7687b3854738d17300bc39dc03de29c7112ad5 | refs/heads/master | 2021-04-03T06:08:15.823011 | 2018-05-27T15:20:34 | 2018-05-27T15:20:34 | 125,024,760 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 2,052 | h | #pragma once
#include "stdafx.h"
#include "Triangle.h"
#include "Texture.h"
class Sprite
{
public:
Vector2 Vertice[4];
Vector2 uv[4];
unsigned int Indices[6]; //unity 에선 Triangles 라는 듯.
Texture texture;
public:
static Sprite Create(Texture itexture) //지금 당장은 texture만 있으면 될듯 center 라든지 바꾸는 방법을 모르니
{
Sprite result;
result.texture = itexture;
result.spriteInit();
return result;
}
public:
Sprite() {};
~Sprite() {};
public:
void spriteInit()
{
spriteInit(texture.width, texture.height);
}
void spriteInit(int width, int height)
{
float halfWidth = width * 0.5f;
float halfHeight = height * 0.5f;
//Vertice[0] = Vertex(Vector3(-halfWidth + position.X, -halfHeight + position.Y, 0), RGB(255, 0, 0), Vector2(0.125f, 0.25f)); //왼쪽 아래
//Vertice[1] = Vertex(Vector3(halfWidth + position.X, halfHeight + position.Y, 0), RGB(0, 255, 0), Vector2(0.25f, 0.125f)); //오른쪽 위
//Vertice[2] = Vertex(Vector3(-halfWidth + position.X, halfHeight + position.Y, 0), RGB(0, 0, 255), Vector2(0.125, 0.125f)); //왼쪽 위
//Vertice[3] = Vertex(Vector3(halfWidth + position.X, -halfHeight + position.Y, 0), RGB(255, 255, 0),Vector2(0.25f, 0.25f)); //오른쪽 아래
Vertice[0] = Vector2(-halfWidth , -halfHeight); //왼쪽 아래
Vertice[1] = Vector2(halfWidth , halfHeight) ; //오른쪽 위
Vertice[2] = Vector2(-halfWidth , halfHeight ); //왼쪽 위
Vertice[3] = Vector2(halfWidth , -halfHeight ); //오른쪽 아래
uv[0] = Vector2(0, 0); //왼쪽 아래
uv[1] = Vector2(1, 1); //오른쪽 위
uv[2] = Vector2(0, 1); //왼쪽 위
uv[3] = Vector2(1, 0); //오른쪽 아래
Indices[0] = 0;
Indices[1] = 1;
Indices[2] = 2;
Indices[3] = 0;
Indices[4] = 1;
Indices[5] = 3;
}
void uvChange(Vector2 LeftButtom, Vector2 RightTop, Vector2 LeftTop, Vector2 RightButtom )
{
uv[0] = LeftButtom; //왼쪽 아래
uv[1] = RightTop; //오른쪽 위
uv[2] = LeftTop;//왼쪽 위
uv[3] = RightButtom; //오른쪽 아래
}
};
| [
"hyun1464@naver.com"
] | hyun1464@naver.com |
63befd5b0afbce41e8f437c4c3545c77393928d1 | 5ac0465ba6313f3184b8e2579023c7461d9bd420 | /cprocessador.cpp | 69ebbfa6824a64e403bede1bd884a8d3bc50bf50 | [] | no_license | rogeriopaladino/checkmymeals | c76595f321eb7f52e1ceca5ca156cb9fa0b5f2f9 | adaa429d871567eac1de9a4c9f1f148649b26ec1 | refs/heads/master | 2020-03-26T16:47:25.316769 | 2013-09-03T13:49:58 | 2013-09-03T13:49:58 | 39,514,761 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 6,356 | cpp | #include "cprocessador.h"
CProcessador::CProcessador(QObject *parent) :
QObject(parent)
{
}
void CProcessador::processadorExtrato(const QString &cartao, const QString &extrato)
{
if (extrato != "") {
QRegExp regex;
regex.setMinimal(true);
regex.setPatternSyntax(QRegExp::RegExp2);
regex.setCaseSensitivity(Qt::CaseInsensitive);
regex.setPattern("Cartão inválido");
if (regex.indexIn(extrato) > 0) {
emit cartaoInvalido(cartao);
} else {
regex.setPattern("indisponível no momento");
if (regex.indexIn(extrato) > 0) {
emit sistemaForaDoAr();
} else {
QString numeroCartao("");
QString saldoDisponivel("");
QString dataBeneficio("");
QString valorBeneficio("");
QString dataProximoBeneficio("");
QString valorProximoBeneficio("");
regex.setPattern("Número do cartão:.+(\\d{16})<\\/td>");
if (regex.indexIn(extrato) > 0)
numeroCartao = regex.cap(1);
regex.setPattern("Saldo disponível:.+R\\$\\s*([\\d,]+)<\\/td>");
if (regex.indexIn(extrato) > 0)
saldoDisponivel = regex.cap(1);
regex.setPattern("Data da última disponibilização do benefício:.*<td.*>(\\d\\d\\/\\d\\d)<\\/td>\\W*<td.*>Valor:R\\$([\\d,]+)<\\/td>");
if (regex.indexIn(extrato) > 0) {
dataBeneficio = regex.cap(1);
valorBeneficio = regex.cap(2);
}
regex.setPattern("Data da próxima disponibilização do benefício:.*<td.*>(\\d\\d\\/\\d\\d)<\\/td>\\W*<td.*>Valor:R\\$([\\d,]+)<\\/td>");
if (regex.indexIn(extrato) > 0) {
dataProximoBeneficio = regex.cap(1);
valorProximoBeneficio = regex.cap(2);
}
//qDebug() << extrato;
if (valorProximoBeneficio != "") {
QStringList dataLstPB;
dataLstPB = dataProximoBeneficio.split('/');
QDate dataProximoBeneficio = this->CriarDataBeneficio(dataLstPB[0].toInt(), dataLstPB[1].toInt());
emit informacaoProximoBeneficio(numeroCartao, dataProximoBeneficio, valorProximoBeneficio.toDouble());
}
emit informacoesCartao(numeroCartao, saldoDisponivel.toDouble());
regex.setPattern("<tr class=\"rowTable\">\\W+<td style=\"width:50px\">(\\d\\d\\/\\d\\d)<\\/td>\\W*<td style=\"width:400px\">(.*)<\\/td>\\W*<td class=\"corUm\" style=\"width:50px\" align=\"right\">R\\$ ([\\d,]+)<\\/td>");
int k = 0, dia, mes;
bool ok, compraEfetuada, houveCredito = false;
QString localStr, valorStr, dataStr;
QDate data;
double valor;
QStringList dataLst;
while ((k = regex.indexIn(extrato, k)) > 0) {
compraEfetuada = true;
localStr = regex.cap(2);
valorStr = regex.cap(3);
dataStr = regex.cap(1);
dataLst = dataStr.split('/');
dia = dataLst[0].toInt(&ok, 10);
if (ok)
mes = dataLst[1].toInt(&ok, 10);
if (ok) {
data = this->CriarData(dia, mes);
valor = valorStr.replace(',', '.').toDouble(&ok);
if (ok) {
if (this->IsCredito(localStr)) {
houveCredito = true;
data = this->CriarDataBeneficioDepositado(dia, mes);
emit informacaoBeneficio(numeroCartao, data, valor);
} else
emit compraAnalisada(numeroCartao, localStr, data, valor);
}
}
k += regex.matchedLength();
}
/*apenas para garantir, pois pode acontecer de o crédito não estar presente
no extrato do cartão.*/
if (!houveCredito) {
data = this->CriarDataBeneficioDepositado(dataBeneficio);
valor = valorBeneficio.toDouble();
emit informacaoBeneficio(numeroCartao, data, valor);
}
emit cartaoAtualizado(numeroCartao);
if (!compraEfetuada) {
emit nenhumaCompraEfetuada(numeroCartao);
}
}
}
} else {
emit sistemaForaDoAr();
}
}
QDate CProcessador::CriarData(int dia, int mes)
{
QDate ret;
int ano;
if (mes > ret.currentDate().month())
ano = ret.currentDate().year() - 1;
else
ano = ret.currentDate().year();
ret.setDate(ano, mes, dia);
return ret;
}
QDate CProcessador::CriarDataBeneficioDepositado(const QString &diaMes)
{
QStringList dataLst = diaMes.split('/');
int dia, mes;
dia = dataLst[0].toInt();
mes = dataLst[1].toInt();
return this->CriarDataBeneficioDepositado(dia, mes);
}
QDate CProcessador::CriarDataBeneficioDepositado(int dia, int mes)
{
QDate ret;
int ano;
if (mes > ret.currentDate().month())
ano = ret.currentDate().year() - 1;
else
ano = ret.currentDate().year();
ret.setDate(ano, mes, dia);
return ret;
}
QDate CProcessador::CriarDataBeneficio(int dia, int mes)
{
QDate ret;
int ano;
if (mes < ret.currentDate().month())
ano = ret.currentDate().year() + 1;
else
ano = ret.currentDate().year();
ret.setDate(ano, mes, dia);
return ret;
}
bool CProcessador::IsCredito(const QString &local) const
{
QRegExp rx;
rx.setMinimal(false);
rx.setPatternSyntax(QRegExp::RegExp2);
rx.setPattern("Disponibiliza[cç][aã]o de Benef[ií]cio");
return rx.indexIn(local) != -1;
}
| [
"rogerioopaladino@gmail.com"
] | rogerioopaladino@gmail.com |
9da348908d23377dff7d18b8c8860ad7736753f8 | ac309bd6ba1aa289dd0f1588ad1e0d8b5f64e745 | /ToneArmEngine/Transform.h | 24fad4942f72b8028a541d1f829254df4975d9f7 | [] | no_license | Mertank/ToneArm | b6cabd6613a34064bff331510f46147ffd948fce | 40c62b0de89ac506bea6674e43578bf4e2631f93 | refs/heads/master | 2021-01-10T16:20:32.736271 | 2015-11-04T04:45:08 | 2015-11-04T04:45:08 | 45,514,584 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,575 | h | /*
========================
Copyright (c) 2014 Vinyl Games Studio
Transform.h
Created by: Vladyslav Dolhopolov
Created on: 4/28/2014 11:04:15 AM
========================
*/
#ifndef __TRANSFORM_H__
#define __TRANSFORM_H__
#include <glm\glm.hpp>
#include <glm\gtc\quaternion.hpp>
namespace vgs
{
/*
========================
Transform
Model matrix and a bunch of useful methods.
Created by: Vladyslav Dolhopolov
Created on: 4/28/2014 11:04:15 AM
========================
*/
class Transform
{
typedef glm::vec3 v3;
public:
Transform();
void SetPosition(const v3& position);
void SetRotation(const v3& rotation);
void SetRotation(const glm::quat& rotation);
void SetScale(const v3& scale);
void SetLocalAxes( const v3& forward, const v3& right, const v3& up );
void Translate(const v3& value);
void Scale(const v3& factor);
void Rotate(const v3& axis, const float angle);
const v3& GetPosition() const { return m_position; }
const v3& GetRotation() const { return m_rotation; }
const v3& GetScale() const { return m_scale; }
const glm::mat4& GetModelMatrix() const { return m_model; }
v3 GetForward() const { return v3(glm::normalize(m_model[2])); }
v3 GetRight() const { return -v3(glm::normalize(m_model[0])); }
v3 GetUp() const { return v3(glm::normalize(m_model[1])); }
private:
v3 m_position;
v3 m_rotation;
v3 m_scale;
glm::mat4 m_model;
};
}
#endif __TRANSFORM_H__ | [
"karlmer10@gmail.com"
] | karlmer10@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.