Assembly-CSharp.cpp
138.4 KB
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
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
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
template <typename T1>
struct VirtActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1>
struct GenericVirtActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1>
struct InterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R>
struct InterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct GenericInterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
// AASDKDemoScript
struct AASDKDemoScript_t13A2A5435FC6651093130631C38282971B3E1ED9;
// AntiAddictionSDK.AntiAddictionClientFactory
struct AntiAddictionClientFactory_tAB18C68E7EFD265166169C1525DEE926E49CC3DC;
// AntiAddictionSDK.Api.AntiAddictionStytemSDK
struct AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC;
// AntiAddictionSDK.Api.ChannelUserInfoEventArgs
struct ChannelUserInfoEventArgs_t9E55D3905D97108D96141DEE56870EB2478F8A93;
// AntiAddictionSDK.Api.GroupIdEventArgs
struct GroupIdEventArgs_t3BA659445EA3D701F712CBD889C4E088A17EBEE6;
// AntiAddictionSDK.Api.LeftTimeEventArgs
struct LeftTimeEventArgs_t790BCB0F49D972667D7960B71DE6C01487FE4A1D;
// AntiAddictionSDK.Api.LoginSuccessEventArgs
struct LoginSuccessEventArgs_t25425235026D5639842BFABBB2B14E59BED96948;
// AntiAddictionSDK.Common.IAntiAddictionClient
struct IAntiAddictionClient_tBF6C8A64AE03B4E22D225C2B84F07B0371CA2192;
// AntiAddictionSDK.iOS.Externs
struct Externs_t7004181DD7995ECFA221EB1E9AE9C4FDF62F79B6;
// AntiAddictionSDK.iOS.ManagerClient
struct ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879;
// AntiAddictionSDK.iOS.ManagerClient/ZAASDKCompletedCallback
struct ZAASDKCompletedCallback_t3D65424BA56AEA3F625DBD33E9126DA7ABB8B4F2;
// AntiAddictionSDK.iOS.MonoPInvokeCallbackAttribute
struct MonoPInvokeCallbackAttribute_tC3C01454A98F0E9B71B6E4A8DCD89A9D070F86CA;
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4;
// System.Attribute
struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74;
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE;
// System.Delegate[]
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
// System.EventArgs
struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E;
// System.EventHandler`1<System.EventArgs>
struct EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479;
// System.EventHandler`1<System.Object>
struct EventHandler_1_t10245A26B14DDE8DDFD5B263BDE0641F17DCFDC3;
// System.IAsyncResult
struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598;
// System.Reflection.Binder
struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759;
// System.Reflection.MemberFilter
struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.String
struct String_t;
// System.Type
struct Type_t;
// System.Type[]
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F;
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
// UnityEngine.Canvas
struct Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591;
// UnityEngine.CanvasRenderer
struct CanvasRenderer_tB4D9C9FE77FD5C9C4546FC022D6E956960BC2B72;
// UnityEngine.Events.UnityAction
struct UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4;
// UnityEngine.Material
struct Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598;
// UnityEngine.Mesh
struct Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C;
// UnityEngine.MonoBehaviour
struct MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429;
// UnityEngine.RectTransform
struct RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20;
// UnityEngine.TextGenerator
struct TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8;
// UnityEngine.Texture2D
struct Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C;
// UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween>
struct TweenRunner_1_t56CEB168ADE3739A1BDDBF258FDC759DF8927172;
// UnityEngine.UI.FontData
struct FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494;
// UnityEngine.UI.MaskableGraphic/CullStateChangedEvent
struct CullStateChangedEvent_t6BC3E87DBC04B585798460D55F56B86C23B62FE4;
// UnityEngine.UI.RectMask2D
struct RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B;
// UnityEngine.UI.Text
struct Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030;
// UnityEngine.UI.VertexHelper
struct VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F;
// UnityEngine.UIVertex[]
struct UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A;
// UnityEngine.Vector2[]
struct Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6;
// UnityEngine.Vector3[]
struct Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28;
IL2CPP_EXTERN_C RuntimeClass* AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IAntiAddictionClient_tBF6C8A64AE03B4E22D225C2B84F07B0371CA2192_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ZAASDKCompletedCallback_t3D65424BA56AEA3F625DBD33E9126DA7ABB8B4F2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral0C841068A47AF1D6F0F09838BD1303022AB16A2A;
IL2CPP_EXTERN_C String_t* _stringLiteral5803073293DEC62D48A19963AC6E56B499C7D0F3;
IL2CPP_EXTERN_C String_t* _stringLiteral96E2C2F50FB954085572BA6D69CF0DCD5D0A7BC2;
IL2CPP_EXTERN_C String_t* _stringLiteralA3BA60356CED55ECFF78588F8D19A1C7FC5764C6;
IL2CPP_EXTERN_C String_t* _stringLiteralF4E9992BCD26B461360322D36EA3CCDB55D3B7AE;
IL2CPP_EXTERN_C const RuntimeMethod* AASDKDemoScript_HandleZAASDKCompleted_m66C60B39F97DD967D67A52284BCC24F0D35BAE5F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AntiAddictionStytemSDK_U3C_ctorU3Eb__2_0_mBE2DA8E8869B8B37CDD498B7C035E034A04C5BC9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EventHandler_1_Invoke_m47F6593ABD0ABB2502C7BB006CC844D3DDB7AE1C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EventHandler_1__ctor_m79F47BE49537EB65303F940C185E373DF718332F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ManagerClient_sdkCompletedCallback_mE9042CAE6B015A078085B61EBBD8B890AE786453_RuntimeMethod_var;
IL2CPP_EXTERN_C const uint32_t AASDKDemoScript_GetUserAgeGroup_m59102031E3A13335E1192B8A241CD3C79A2F5110_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AASDKDemoScript_HandleZAASDKCompleted_m66C60B39F97DD967D67A52284BCC24F0D35BAE5F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AASDKDemoScript_IsAuthenticated_mD6F8C81B35D6549AD95BC45155C748E598BF9706_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AASDKDemoScript_LeftTimeOfCurrentUser_mEEAB059CF5228E035E1124AA5295DAC8E3967341_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AASDKDemoScript_Start_m23AA4641C4D9C610BA531FB61574172348058D29_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AntiAddictionClientFactory_BuildAntiAddictionClient_m444CFAB8C4E6314C4FBD1D7B4E54039DFEDE68B9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AntiAddictionStytemSDK_AgeGroupOfCurrentUser_m362F4AE6FB100F74FCEDD0898AE0E70A4FFB9AD1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AntiAddictionStytemSDK_IsAuthenticated_m9DEA33DD9B19045780CE873A52BC6E7AEE5F1B9E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AntiAddictionStytemSDK_LeftTimeOfCurrentUser_m09A38EFA9426C53D6FE9C21701F71CC007CF7FC9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AntiAddictionStytemSDK_U3C_ctorU3Eb__2_0_mBE2DA8E8869B8B37CDD498B7C035E034A04C5BC9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AntiAddictionStytemSDK__cctor_m02D9F4D2C570EF7C72FADFD4715DFCC3D193E5F9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AntiAddictionStytemSDK__ctor_m86845274F494BA4033FEF356D008FF4DE7D2582B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AntiAddictionStytemSDK_add_ZAASDKCompleted_m7F822C6B4866E4BFAA4BB6CA6725E5FDFE8413DE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AntiAddictionStytemSDK_remove_ZAASDKCompleted_mFDFDF701BB507AB9BB9EFEC8BD3C4187B41525F2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChannelUserInfoEventArgs__ctor_m91EA4E3F78F42918743A73884A9241434A3EC407_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GroupIdEventArgs__ctor_m30A92C461528FBEF0A722A31AAC5165859855095_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LeftTimeEventArgs__ctor_m1CA25843424650F68851CE494B45D9C326C3329D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LoginSuccessEventArgs__ctor_m71BDDD0B6A018AFDAB77190D4D4C676E232CD74D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ManagerClient_IntPtrToManagerClient_m94DA6BBE6DE2F8D20A3704D704C55D063149562F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ManagerClient__ctor_mC7FEB907AC5800C44ECD8E8960C0B556CE4391C1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ManagerClient_add_ZAASDKCompleted_mBB98B5F81C4246E3C4DB3FE8AF8B744342BFAE2D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ManagerClient_remove_ZAASDKCompleted_m64AE372D357C79C82EE16924FA855ADC7A5D2D39_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ManagerClient_sdkCompletedCallback_mE9042CAE6B015A078085B61EBBD8B890AE786453_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ZAASDKCompletedCallback_BeginInvoke_m275C9A9C6EB1597AF7D701DD872EACA726FBBBC6_MetadataUsageId;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
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_t6CDDDF959E7E18A6744E43B613F41CDAC780256A
{
public:
public:
};
// System.Object
// AntiAddictionSDK.AntiAddictionClientFactory
struct AntiAddictionClientFactory_tAB18C68E7EFD265166169C1525DEE926E49CC3DC : public RuntimeObject
{
public:
public:
};
// AntiAddictionSDK.Api.AntiAddictionStytemSDK
struct AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC : public RuntimeObject
{
public:
// AntiAddictionSDK.Common.IAntiAddictionClient AntiAddictionSDK.Api.AntiAddictionStytemSDK::client
RuntimeObject* ___client_1;
// System.EventHandler`1<System.EventArgs> AntiAddictionSDK.Api.AntiAddictionStytemSDK::ZAASDKCompleted
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * ___ZAASDKCompleted_2;
public:
inline static int32_t get_offset_of_client_1() { return static_cast<int32_t>(offsetof(AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC, ___client_1)); }
inline RuntimeObject* get_client_1() const { return ___client_1; }
inline RuntimeObject** get_address_of_client_1() { return &___client_1; }
inline void set_client_1(RuntimeObject* value)
{
___client_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___client_1), (void*)value);
}
inline static int32_t get_offset_of_ZAASDKCompleted_2() { return static_cast<int32_t>(offsetof(AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC, ___ZAASDKCompleted_2)); }
inline EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * get_ZAASDKCompleted_2() const { return ___ZAASDKCompleted_2; }
inline EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 ** get_address_of_ZAASDKCompleted_2() { return &___ZAASDKCompleted_2; }
inline void set_ZAASDKCompleted_2(EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * value)
{
___ZAASDKCompleted_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ZAASDKCompleted_2), (void*)value);
}
};
struct AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC_StaticFields
{
public:
// System.Object AntiAddictionSDK.Api.AntiAddictionStytemSDK::objLock
RuntimeObject * ___objLock_0;
public:
inline static int32_t get_offset_of_objLock_0() { return static_cast<int32_t>(offsetof(AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC_StaticFields, ___objLock_0)); }
inline RuntimeObject * get_objLock_0() const { return ___objLock_0; }
inline RuntimeObject ** get_address_of_objLock_0() { return &___objLock_0; }
inline void set_objLock_0(RuntimeObject * value)
{
___objLock_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___objLock_0), (void*)value);
}
};
// AntiAddictionSDK.iOS.Externs
struct Externs_t7004181DD7995ECFA221EB1E9AE9C4FDF62F79B6 : public RuntimeObject
{
public:
public:
};
struct Il2CppArrayBounds;
// System.Array
// System.Attribute
struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 : public RuntimeObject
{
public:
public:
};
// System.EventArgs
struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E : public RuntimeObject
{
public:
public:
};
struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_StaticFields
{
public:
// System.EventArgs System.EventArgs::Empty
EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * ___Empty_0;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_StaticFields, ___Empty_0)); }
inline EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * get_Empty_0() const { return ___Empty_0; }
inline EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E ** get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * value)
{
___Empty_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Empty_0), (void*)value);
}
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
// System.String
struct String_t : public RuntimeObject
{
public:
// System.Int32 System.String::m_stringLength
int32_t ___m_stringLength_0;
// System.Char System.String::m_firstChar
Il2CppChar ___m_firstChar_1;
public:
inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
inline void set_m_stringLength_0(int32_t value)
{
___m_stringLength_0 = value;
}
inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
inline void set_m_firstChar_1(Il2CppChar value)
{
___m_firstChar_1 = value;
}
};
struct String_t_StaticFields
{
public:
// System.String System.String::Empty
String_t* ___Empty_5;
public:
inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
inline String_t* get_Empty_5() const { return ___Empty_5; }
inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
inline void set_Empty_5(String_t* value)
{
___Empty_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
}
};
// System.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
{
};
// AntiAddictionSDK.Api.ChannelUserInfoEventArgs
struct ChannelUserInfoEventArgs_t9E55D3905D97108D96141DEE56870EB2478F8A93 : public EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E
{
public:
// System.Int32 AntiAddictionSDK.Api.ChannelUserInfoEventArgs::<RealNameStatus>k__BackingField
int32_t ___U3CRealNameStatusU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CRealNameStatusU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(ChannelUserInfoEventArgs_t9E55D3905D97108D96141DEE56870EB2478F8A93, ___U3CRealNameStatusU3Ek__BackingField_1)); }
inline int32_t get_U3CRealNameStatusU3Ek__BackingField_1() const { return ___U3CRealNameStatusU3Ek__BackingField_1; }
inline int32_t* get_address_of_U3CRealNameStatusU3Ek__BackingField_1() { return &___U3CRealNameStatusU3Ek__BackingField_1; }
inline void set_U3CRealNameStatusU3Ek__BackingField_1(int32_t value)
{
___U3CRealNameStatusU3Ek__BackingField_1 = value;
}
};
// AntiAddictionSDK.Api.GroupIdEventArgs
struct GroupIdEventArgs_t3BA659445EA3D701F712CBD889C4E088A17EBEE6 : public EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E
{
public:
// System.Int32 AntiAddictionSDK.Api.GroupIdEventArgs::<GroupId>k__BackingField
int32_t ___U3CGroupIdU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CGroupIdU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(GroupIdEventArgs_t3BA659445EA3D701F712CBD889C4E088A17EBEE6, ___U3CGroupIdU3Ek__BackingField_1)); }
inline int32_t get_U3CGroupIdU3Ek__BackingField_1() const { return ___U3CGroupIdU3Ek__BackingField_1; }
inline int32_t* get_address_of_U3CGroupIdU3Ek__BackingField_1() { return &___U3CGroupIdU3Ek__BackingField_1; }
inline void set_U3CGroupIdU3Ek__BackingField_1(int32_t value)
{
___U3CGroupIdU3Ek__BackingField_1 = value;
}
};
// AntiAddictionSDK.Api.LeftTimeEventArgs
struct LeftTimeEventArgs_t790BCB0F49D972667D7960B71DE6C01487FE4A1D : public EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E
{
public:
// System.Int32 AntiAddictionSDK.Api.LeftTimeEventArgs::<LeftTime>k__BackingField
int32_t ___U3CLeftTimeU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CLeftTimeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(LeftTimeEventArgs_t790BCB0F49D972667D7960B71DE6C01487FE4A1D, ___U3CLeftTimeU3Ek__BackingField_1)); }
inline int32_t get_U3CLeftTimeU3Ek__BackingField_1() const { return ___U3CLeftTimeU3Ek__BackingField_1; }
inline int32_t* get_address_of_U3CLeftTimeU3Ek__BackingField_1() { return &___U3CLeftTimeU3Ek__BackingField_1; }
inline void set_U3CLeftTimeU3Ek__BackingField_1(int32_t value)
{
___U3CLeftTimeU3Ek__BackingField_1 = value;
}
};
// AntiAddictionSDK.Api.LoginSuccessEventArgs
struct LoginSuccessEventArgs_t25425235026D5639842BFABBB2B14E59BED96948 : public EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E
{
public:
// System.String AntiAddictionSDK.Api.LoginSuccessEventArgs::<Message>k__BackingField
String_t* ___U3CMessageU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CMessageU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(LoginSuccessEventArgs_t25425235026D5639842BFABBB2B14E59BED96948, ___U3CMessageU3Ek__BackingField_1)); }
inline String_t* get_U3CMessageU3Ek__BackingField_1() const { return ___U3CMessageU3Ek__BackingField_1; }
inline String_t** get_address_of_U3CMessageU3Ek__BackingField_1() { return &___U3CMessageU3Ek__BackingField_1; }
inline void set_U3CMessageU3Ek__BackingField_1(String_t* value)
{
___U3CMessageU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CMessageU3Ek__BackingField_1), (void*)value);
}
};
// AntiAddictionSDK.iOS.MonoPInvokeCallbackAttribute
struct MonoPInvokeCallbackAttribute_tC3C01454A98F0E9B71B6E4A8DCD89A9D070F86CA : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
public:
};
// System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF
{
public:
public:
};
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com
{
};
// System.Int32
struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102
{
public:
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); }
inline int32_t get_m_value_0() const { return ___m_value_0; }
inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int32_t value)
{
___m_value_0 = value;
}
};
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
// System.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.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017
{
public:
union
{
struct
{
};
uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1];
};
public:
};
// UnityEngine.Color
struct Color_t119BCA590009762C7223FDD3AF9706653AC84ED2
{
public:
// System.Single UnityEngine.Color::r
float ___r_0;
// System.Single UnityEngine.Color::g
float ___g_1;
// System.Single UnityEngine.Color::b
float ___b_2;
// System.Single UnityEngine.Color::a
float ___a_3;
public:
inline static int32_t get_offset_of_r_0() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___r_0)); }
inline float get_r_0() const { return ___r_0; }
inline float* get_address_of_r_0() { return &___r_0; }
inline void set_r_0(float value)
{
___r_0 = value;
}
inline static int32_t get_offset_of_g_1() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___g_1)); }
inline float get_g_1() const { return ___g_1; }
inline float* get_address_of_g_1() { return &___g_1; }
inline void set_g_1(float value)
{
___g_1 = value;
}
inline static int32_t get_offset_of_b_2() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___b_2)); }
inline float get_b_2() const { return ___b_2; }
inline float* get_address_of_b_2() { return &___b_2; }
inline void set_b_2(float value)
{
___b_2 = value;
}
inline static int32_t get_offset_of_a_3() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___a_3)); }
inline float get_a_3() const { return ___a_3; }
inline float* get_address_of_a_3() { return &___a_3; }
inline void set_a_3(float value)
{
___a_3 = value;
}
};
// AntiAddictionSDK.iOS.ManagerClient
struct ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879 : public RuntimeObject
{
public:
// System.IntPtr AntiAddictionSDK.iOS.ManagerClient::managerPtr
intptr_t ___managerPtr_0;
// System.IntPtr AntiAddictionSDK.iOS.ManagerClient::managerClientPtr
intptr_t ___managerClientPtr_1;
// System.EventHandler`1<System.EventArgs> AntiAddictionSDK.iOS.ManagerClient::ZAASDKCompleted
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * ___ZAASDKCompleted_2;
public:
inline static int32_t get_offset_of_managerPtr_0() { return static_cast<int32_t>(offsetof(ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879, ___managerPtr_0)); }
inline intptr_t get_managerPtr_0() const { return ___managerPtr_0; }
inline intptr_t* get_address_of_managerPtr_0() { return &___managerPtr_0; }
inline void set_managerPtr_0(intptr_t value)
{
___managerPtr_0 = value;
}
inline static int32_t get_offset_of_managerClientPtr_1() { return static_cast<int32_t>(offsetof(ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879, ___managerClientPtr_1)); }
inline intptr_t get_managerClientPtr_1() const { return ___managerClientPtr_1; }
inline intptr_t* get_address_of_managerClientPtr_1() { return &___managerClientPtr_1; }
inline void set_managerClientPtr_1(intptr_t value)
{
___managerClientPtr_1 = value;
}
inline static int32_t get_offset_of_ZAASDKCompleted_2() { return static_cast<int32_t>(offsetof(ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879, ___ZAASDKCompleted_2)); }
inline EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * get_ZAASDKCompleted_2() const { return ___ZAASDKCompleted_2; }
inline EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 ** get_address_of_ZAASDKCompleted_2() { return &___ZAASDKCompleted_2; }
inline void set_ZAASDKCompleted_2(EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * value)
{
___ZAASDKCompleted_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ZAASDKCompleted_2), (void*)value);
}
};
// System.Delegate
struct Delegate_t : public RuntimeObject
{
public:
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject * ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::extra_arg
intptr_t ___extra_arg_5;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_6;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t * ___method_info_7;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t * ___original_method_info_8;
// System.DelegateData System.Delegate::data
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_10;
public:
inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); }
inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
inline void set_method_ptr_0(Il2CppMethodPointer value)
{
___method_ptr_0 = value;
}
inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); }
inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
inline void set_invoke_impl_1(intptr_t value)
{
___invoke_impl_1 = value;
}
inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); }
inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
inline void set_m_target_2(RuntimeObject * value)
{
___m_target_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value);
}
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); }
inline intptr_t get_method_3() const { return ___method_3; }
inline intptr_t* get_address_of_method_3() { return &___method_3; }
inline void set_method_3(intptr_t value)
{
___method_3 = value;
}
inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); }
inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
inline void set_delegate_trampoline_4(intptr_t value)
{
___delegate_trampoline_4 = value;
}
inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); }
inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; }
inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; }
inline void set_extra_arg_5(intptr_t value)
{
___extra_arg_5 = value;
}
inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); }
inline intptr_t get_method_code_6() const { return ___method_code_6; }
inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; }
inline void set_method_code_6(intptr_t value)
{
___method_code_6 = value;
}
inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); }
inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; }
inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; }
inline void set_method_info_7(MethodInfo_t * value)
{
___method_info_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value);
}
inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); }
inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; }
inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; }
inline void set_original_method_info_8(MethodInfo_t * value)
{
___original_method_info_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value);
}
inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * get_data_9() const { return ___data_9; }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE ** get_address_of_data_9() { return &___data_9; }
inline void set_data_9(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * value)
{
___data_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value);
}
inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); }
inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; }
inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; }
inline void set_method_is_virtual_10(bool value)
{
___method_is_virtual_10 = value;
}
};
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t_marshaled_com
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// System.Reflection.BindingFlags
struct BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0
{
public:
// System.Int32 System.Reflection.BindingFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D
{
public:
// System.IntPtr System.RuntimeTypeHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, ___value_0)); }
inline intptr_t get_value_0() const { return ___value_0; }
inline intptr_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(intptr_t value)
{
___value_0 = value;
}
};
// UnityEngine.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;
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
public:
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11;
public:
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* get_delegates_11() const { return ___delegates_11; }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86** get_address_of_delegates_11() { return &___delegates_11; }
inline void set_delegates_11(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* value)
{
___delegates_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_11;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_11;
};
// System.Type
struct Type_t : public MemberInfo_t
{
public:
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ____impl_9;
public:
inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D get__impl_9() const { return ____impl_9; }
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * get_address_of__impl_9() { return &____impl_9; }
inline void set__impl_9(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D value)
{
____impl_9 = value;
}
};
struct Type_t_StaticFields
{
public:
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterAttribute_0;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterName_1;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterNameIgnoreCase_2;
// System.Object System.Type::Missing
RuntimeObject * ___Missing_3;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_4;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___EmptyTypes_5;
// System.Reflection.Binder System.Type::defaultBinder
Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___defaultBinder_6;
public:
inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
inline void set_FilterAttribute_0(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterAttribute_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value);
}
inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterName_1() const { return ___FilterName_1; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterName_1() { return &___FilterName_1; }
inline void set_FilterName_1(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value);
}
inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
inline void set_FilterNameIgnoreCase_2(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterNameIgnoreCase_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value);
}
inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); }
inline RuntimeObject * get_Missing_3() const { return ___Missing_3; }
inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; }
inline void set_Missing_3(RuntimeObject * value)
{
___Missing_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value);
}
inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); }
inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; }
inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; }
inline void set_Delimiter_4(Il2CppChar value)
{
___Delimiter_4 = value;
}
inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
inline void set_EmptyTypes_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
___EmptyTypes_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value);
}
inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * get_defaultBinder_6() const { return ___defaultBinder_6; }
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
inline void set_defaultBinder_6(Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * value)
{
___defaultBinder_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
}
};
// UnityEngine.Component
struct Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
// AntiAddictionSDK.iOS.ManagerClient/ZAASDKCompletedCallback
struct ZAASDKCompletedCallback_t3D65424BA56AEA3F625DBD33E9126DA7ABB8B4F2 : public MulticastDelegate_t
{
public:
public:
};
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 : public MulticastDelegate_t
{
public:
public:
};
// System.EventHandler`1<System.EventArgs>
struct EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Behaviour
struct Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8 : public Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621
{
public:
public:
};
// UnityEngine.MonoBehaviour
struct MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429 : public Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8
{
public:
public:
};
// AASDKDemoScript
struct AASDKDemoScript_t13A2A5435FC6651093130631C38282971B3E1ED9 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// AntiAddictionSDK.Api.AntiAddictionStytemSDK AASDKDemoScript::antiAddictionSDK
AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC * ___antiAddictionSDK_4;
// UnityEngine.UI.Text AASDKDemoScript::statusText
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___statusText_5;
public:
inline static int32_t get_offset_of_antiAddictionSDK_4() { return static_cast<int32_t>(offsetof(AASDKDemoScript_t13A2A5435FC6651093130631C38282971B3E1ED9, ___antiAddictionSDK_4)); }
inline AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC * get_antiAddictionSDK_4() const { return ___antiAddictionSDK_4; }
inline AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC ** get_address_of_antiAddictionSDK_4() { return &___antiAddictionSDK_4; }
inline void set_antiAddictionSDK_4(AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC * value)
{
___antiAddictionSDK_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___antiAddictionSDK_4), (void*)value);
}
inline static int32_t get_offset_of_statusText_5() { return static_cast<int32_t>(offsetof(AASDKDemoScript_t13A2A5435FC6651093130631C38282971B3E1ED9, ___statusText_5)); }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * get_statusText_5() const { return ___statusText_5; }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 ** get_address_of_statusText_5() { return &___statusText_5; }
inline void set_statusText_5(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * value)
{
___statusText_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___statusText_5), (void*)value);
}
};
// UnityEngine.EventSystems.UIBehaviour
struct UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
public:
};
// 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.MaskableGraphic
struct MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F : public Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8
{
public:
// System.Boolean UnityEngine.UI.MaskableGraphic::m_ShouldRecalculateStencil
bool ___m_ShouldRecalculateStencil_25;
// UnityEngine.Material UnityEngine.UI.MaskableGraphic::m_MaskMaterial
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___m_MaskMaterial_26;
// UnityEngine.UI.RectMask2D UnityEngine.UI.MaskableGraphic::m_ParentMask
RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B * ___m_ParentMask_27;
// System.Boolean UnityEngine.UI.MaskableGraphic::m_Maskable
bool ___m_Maskable_28;
// System.Boolean UnityEngine.UI.MaskableGraphic::m_IsMaskingGraphic
bool ___m_IsMaskingGraphic_29;
// System.Boolean UnityEngine.UI.MaskableGraphic::m_IncludeForMasking
bool ___m_IncludeForMasking_30;
// UnityEngine.UI.MaskableGraphic/CullStateChangedEvent UnityEngine.UI.MaskableGraphic::m_OnCullStateChanged
CullStateChangedEvent_t6BC3E87DBC04B585798460D55F56B86C23B62FE4 * ___m_OnCullStateChanged_31;
// System.Boolean UnityEngine.UI.MaskableGraphic::m_ShouldRecalculate
bool ___m_ShouldRecalculate_32;
// System.Int32 UnityEngine.UI.MaskableGraphic::m_StencilValue
int32_t ___m_StencilValue_33;
// UnityEngine.Vector3[] UnityEngine.UI.MaskableGraphic::m_Corners
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___m_Corners_34;
public:
inline static int32_t get_offset_of_m_ShouldRecalculateStencil_25() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_ShouldRecalculateStencil_25)); }
inline bool get_m_ShouldRecalculateStencil_25() const { return ___m_ShouldRecalculateStencil_25; }
inline bool* get_address_of_m_ShouldRecalculateStencil_25() { return &___m_ShouldRecalculateStencil_25; }
inline void set_m_ShouldRecalculateStencil_25(bool value)
{
___m_ShouldRecalculateStencil_25 = value;
}
inline static int32_t get_offset_of_m_MaskMaterial_26() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_MaskMaterial_26)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_m_MaskMaterial_26() const { return ___m_MaskMaterial_26; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_m_MaskMaterial_26() { return &___m_MaskMaterial_26; }
inline void set_m_MaskMaterial_26(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___m_MaskMaterial_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_MaskMaterial_26), (void*)value);
}
inline static int32_t get_offset_of_m_ParentMask_27() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_ParentMask_27)); }
inline RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B * get_m_ParentMask_27() const { return ___m_ParentMask_27; }
inline RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B ** get_address_of_m_ParentMask_27() { return &___m_ParentMask_27; }
inline void set_m_ParentMask_27(RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B * value)
{
___m_ParentMask_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ParentMask_27), (void*)value);
}
inline static int32_t get_offset_of_m_Maskable_28() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_Maskable_28)); }
inline bool get_m_Maskable_28() const { return ___m_Maskable_28; }
inline bool* get_address_of_m_Maskable_28() { return &___m_Maskable_28; }
inline void set_m_Maskable_28(bool value)
{
___m_Maskable_28 = value;
}
inline static int32_t get_offset_of_m_IsMaskingGraphic_29() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_IsMaskingGraphic_29)); }
inline bool get_m_IsMaskingGraphic_29() const { return ___m_IsMaskingGraphic_29; }
inline bool* get_address_of_m_IsMaskingGraphic_29() { return &___m_IsMaskingGraphic_29; }
inline void set_m_IsMaskingGraphic_29(bool value)
{
___m_IsMaskingGraphic_29 = value;
}
inline static int32_t get_offset_of_m_IncludeForMasking_30() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_IncludeForMasking_30)); }
inline bool get_m_IncludeForMasking_30() const { return ___m_IncludeForMasking_30; }
inline bool* get_address_of_m_IncludeForMasking_30() { return &___m_IncludeForMasking_30; }
inline void set_m_IncludeForMasking_30(bool value)
{
___m_IncludeForMasking_30 = value;
}
inline static int32_t get_offset_of_m_OnCullStateChanged_31() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_OnCullStateChanged_31)); }
inline CullStateChangedEvent_t6BC3E87DBC04B585798460D55F56B86C23B62FE4 * get_m_OnCullStateChanged_31() const { return ___m_OnCullStateChanged_31; }
inline CullStateChangedEvent_t6BC3E87DBC04B585798460D55F56B86C23B62FE4 ** get_address_of_m_OnCullStateChanged_31() { return &___m_OnCullStateChanged_31; }
inline void set_m_OnCullStateChanged_31(CullStateChangedEvent_t6BC3E87DBC04B585798460D55F56B86C23B62FE4 * value)
{
___m_OnCullStateChanged_31 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnCullStateChanged_31), (void*)value);
}
inline static int32_t get_offset_of_m_ShouldRecalculate_32() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_ShouldRecalculate_32)); }
inline bool get_m_ShouldRecalculate_32() const { return ___m_ShouldRecalculate_32; }
inline bool* get_address_of_m_ShouldRecalculate_32() { return &___m_ShouldRecalculate_32; }
inline void set_m_ShouldRecalculate_32(bool value)
{
___m_ShouldRecalculate_32 = value;
}
inline static int32_t get_offset_of_m_StencilValue_33() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_StencilValue_33)); }
inline int32_t get_m_StencilValue_33() const { return ___m_StencilValue_33; }
inline int32_t* get_address_of_m_StencilValue_33() { return &___m_StencilValue_33; }
inline void set_m_StencilValue_33(int32_t value)
{
___m_StencilValue_33 = value;
}
inline static int32_t get_offset_of_m_Corners_34() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_Corners_34)); }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get_m_Corners_34() const { return ___m_Corners_34; }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of_m_Corners_34() { return &___m_Corners_34; }
inline void set_m_Corners_34(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value)
{
___m_Corners_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Corners_34), (void*)value);
}
};
// UnityEngine.UI.Text
struct Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 : public MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F
{
public:
// UnityEngine.UI.FontData UnityEngine.UI.Text::m_FontData
FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494 * ___m_FontData_35;
// System.String UnityEngine.UI.Text::m_Text
String_t* ___m_Text_36;
// UnityEngine.TextGenerator UnityEngine.UI.Text::m_TextCache
TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 * ___m_TextCache_37;
// UnityEngine.TextGenerator UnityEngine.UI.Text::m_TextCacheForLayout
TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 * ___m_TextCacheForLayout_38;
// System.Boolean UnityEngine.UI.Text::m_DisableFontTextureRebuiltCallback
bool ___m_DisableFontTextureRebuiltCallback_40;
// UnityEngine.UIVertex[] UnityEngine.UI.Text::m_TempVerts
UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* ___m_TempVerts_41;
public:
inline static int32_t get_offset_of_m_FontData_35() { return static_cast<int32_t>(offsetof(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030, ___m_FontData_35)); }
inline FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494 * get_m_FontData_35() const { return ___m_FontData_35; }
inline FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494 ** get_address_of_m_FontData_35() { return &___m_FontData_35; }
inline void set_m_FontData_35(FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494 * value)
{
___m_FontData_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_FontData_35), (void*)value);
}
inline static int32_t get_offset_of_m_Text_36() { return static_cast<int32_t>(offsetof(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030, ___m_Text_36)); }
inline String_t* get_m_Text_36() const { return ___m_Text_36; }
inline String_t** get_address_of_m_Text_36() { return &___m_Text_36; }
inline void set_m_Text_36(String_t* value)
{
___m_Text_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Text_36), (void*)value);
}
inline static int32_t get_offset_of_m_TextCache_37() { return static_cast<int32_t>(offsetof(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030, ___m_TextCache_37)); }
inline TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 * get_m_TextCache_37() const { return ___m_TextCache_37; }
inline TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 ** get_address_of_m_TextCache_37() { return &___m_TextCache_37; }
inline void set_m_TextCache_37(TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 * value)
{
___m_TextCache_37 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_TextCache_37), (void*)value);
}
inline static int32_t get_offset_of_m_TextCacheForLayout_38() { return static_cast<int32_t>(offsetof(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030, ___m_TextCacheForLayout_38)); }
inline TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 * get_m_TextCacheForLayout_38() const { return ___m_TextCacheForLayout_38; }
inline TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 ** get_address_of_m_TextCacheForLayout_38() { return &___m_TextCacheForLayout_38; }
inline void set_m_TextCacheForLayout_38(TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 * value)
{
___m_TextCacheForLayout_38 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_TextCacheForLayout_38), (void*)value);
}
inline static int32_t get_offset_of_m_DisableFontTextureRebuiltCallback_40() { return static_cast<int32_t>(offsetof(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030, ___m_DisableFontTextureRebuiltCallback_40)); }
inline bool get_m_DisableFontTextureRebuiltCallback_40() const { return ___m_DisableFontTextureRebuiltCallback_40; }
inline bool* get_address_of_m_DisableFontTextureRebuiltCallback_40() { return &___m_DisableFontTextureRebuiltCallback_40; }
inline void set_m_DisableFontTextureRebuiltCallback_40(bool value)
{
___m_DisableFontTextureRebuiltCallback_40 = value;
}
inline static int32_t get_offset_of_m_TempVerts_41() { return static_cast<int32_t>(offsetof(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030, ___m_TempVerts_41)); }
inline UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* get_m_TempVerts_41() const { return ___m_TempVerts_41; }
inline UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A** get_address_of_m_TempVerts_41() { return &___m_TempVerts_41; }
inline void set_m_TempVerts_41(UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* value)
{
___m_TempVerts_41 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_TempVerts_41), (void*)value);
}
};
struct Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_StaticFields
{
public:
// UnityEngine.Material UnityEngine.UI.Text::s_DefaultText
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___s_DefaultText_39;
public:
inline static int32_t get_offset_of_s_DefaultText_39() { return static_cast<int32_t>(offsetof(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_StaticFields, ___s_DefaultText_39)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_s_DefaultText_39() const { return ___s_DefaultText_39; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_s_DefaultText_39() { return &___s_DefaultText_39; }
inline void set_s_DefaultText_39(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___s_DefaultText_39 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultText_39), (void*)value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.Delegate[]
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Delegate_t * m_Items[1];
public:
inline Delegate_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Delegate_t ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Delegate_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Delegate_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Delegate_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Void System.EventHandler`1<System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandler_1__ctor_m3D6B301FCEB48533990CFB2386DAAB091D357BAC_gshared (EventHandler_1_t10245A26B14DDE8DDFD5B263BDE0641F17DCFDC3 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Void System.EventHandler`1<System.Object>::Invoke(System.Object,!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandler_1_Invoke_mBF3979EE17B68658C4C1AB3A8D64B24F263E3B98_gshared (EventHandler_1_t10245A26B14DDE8DDFD5B263BDE0641F17DCFDC3 * __this, RuntimeObject * ___sender0, RuntimeObject * ___e1, const RuntimeMethod* method);
// System.Void AntiAddictionSDK.Api.AntiAddictionStytemSDK::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AntiAddictionStytemSDK__ctor_m86845274F494BA4033FEF356D008FF4DE7D2582B (AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC * __this, const RuntimeMethod* method);
// System.Void System.EventHandler`1<System.EventArgs>::.ctor(System.Object,System.IntPtr)
inline void EventHandler_1__ctor_m79F47BE49537EB65303F940C185E373DF718332F (EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 *, RuntimeObject *, intptr_t, const RuntimeMethod*))EventHandler_1__ctor_m3D6B301FCEB48533990CFB2386DAAB091D357BAC_gshared)(__this, ___object0, ___method1, method);
}
// System.Void AntiAddictionSDK.Api.AntiAddictionStytemSDK::add_ZAASDKCompleted(System.EventHandler`1<System.EventArgs>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AntiAddictionStytemSDK_add_ZAASDKCompleted_m7F822C6B4866E4BFAA4BB6CA6725E5FDFE8413DE (AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC * __this, EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * ___value0, const RuntimeMethod* method);
// System.Int32 AntiAddictionSDK.Api.AntiAddictionStytemSDK::IsAuthenticated()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AntiAddictionStytemSDK_IsAuthenticated_m9DEA33DD9B19045780CE873A52BC6E7AEE5F1B9E (AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC * __this, const RuntimeMethod* method);
// System.String System.String::Concat(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m798542DE19B3F02DC4F4B777BB2E73169F129DE1 (RuntimeObject * ___arg00, const RuntimeMethod* method);
// System.Int32 AntiAddictionSDK.Api.AntiAddictionStytemSDK::AgeGroupOfCurrentUser()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AntiAddictionStytemSDK_AgeGroupOfCurrentUser_m362F4AE6FB100F74FCEDD0898AE0E70A4FFB9AD1 (AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC * __this, const RuntimeMethod* method);
// System.Int32 AntiAddictionSDK.Api.AntiAddictionStytemSDK::LeftTimeOfCurrentUser()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AntiAddictionStytemSDK_LeftTimeOfCurrentUser_m09A38EFA9426C53D6FE9C21701F71CC007CF7FC9 (AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC * __this, const RuntimeMethod* method);
// System.Void UnityEngine.MonoBehaviour::print(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoBehaviour_print_m171D860AF3370C46648FE8F3EE3E0E6535E1C774 (RuntimeObject * ___message0, const RuntimeMethod* method);
// System.Void UnityEngine.MonoBehaviour::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoBehaviour__ctor_mEAEC84B222C60319D593E456D769B3311DFCEF97 (MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429 * __this, const RuntimeMethod* method);
// System.Void AntiAddictionSDK.iOS.ManagerClient::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManagerClient__ctor_mC7FEB907AC5800C44ECD8E8960C0B556CE4391C1 (ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879 * __this, const RuntimeMethod* method);
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method);
// AntiAddictionSDK.Common.IAntiAddictionClient AntiAddictionSDK.AntiAddictionClientFactory::BuildAntiAddictionClient()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AntiAddictionClientFactory_BuildAntiAddictionClient_m444CFAB8C4E6314C4FBD1D7B4E54039DFEDE68B9 (const RuntimeMethod* method);
// System.Delegate System.Delegate::Combine(System.Delegate,System.Delegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_Combine_mC25D2F7DECAFBA6D9A2F9EBA8A77063F0658ECF1 (Delegate_t * ___a0, Delegate_t * ___b1, const RuntimeMethod* method);
// System.Delegate System.Delegate::Remove(System.Delegate,System.Delegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_Remove_m0B0DB7D1B3AF96B71AFAA72BA0EFE32FBBC2932D (Delegate_t * ___source0, Delegate_t * ___value1, const RuntimeMethod* method);
// System.Void System.EventHandler`1<System.EventArgs>::Invoke(System.Object,!0)
inline void EventHandler_1_Invoke_m47F6593ABD0ABB2502C7BB006CC844D3DDB7AE1C (EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * __this, RuntimeObject * ___sender0, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * ___e1, const RuntimeMethod* method)
{
(( void (*) (EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 *, RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E *, const RuntimeMethod*))EventHandler_1_Invoke_mBF3979EE17B68658C4C1AB3A8D64B24F263E3B98_gshared)(__this, ___sender0, ___e1, method);
}
// System.Void System.EventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7 (EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * __this, const RuntimeMethod* method);
// System.Void AntiAddictionSDK.iOS.ManagerClient::sdkCompletedCallback(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManagerClient_sdkCompletedCallback_mE9042CAE6B015A078085B61EBBD8B890AE786453 (intptr_t ___managerClient0, const RuntimeMethod* method);
// System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.GCHandle::Alloc(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 GCHandle_Alloc_m5BF9DC23B533B904BFEA61136B92916683B46B0F (RuntimeObject * ___value0, const RuntimeMethod* method);
// System.IntPtr System.Runtime.InteropServices.GCHandle::op_Explicit(System.Runtime.InteropServices.GCHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t GCHandle_op_Explicit_mDDDE375E679609F240EF76F20E982C5B73A7D6BA (GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 ___value0, const RuntimeMethod* method);
// System.IntPtr AntiAddictionSDK.iOS.Externs::AACreateManager(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t Externs_AACreateManager_m6BF163B56797A166383DDF0DA47047FD5CC294FA (intptr_t ___managerClient0, const RuntimeMethod* method);
// System.Void AntiAddictionSDK.iOS.ManagerClient/ZAASDKCompletedCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZAASDKCompletedCallback__ctor_m05BC16D857E4FBF3C643437BDCCADB00B850EAA7 (ZAASDKCompletedCallback_t3D65424BA56AEA3F625DBD33E9126DA7ABB8B4F2 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Void AntiAddictionSDK.iOS.Externs::AASetManagerCallbacks(System.IntPtr,AntiAddictionSDK.iOS.ManagerClient/ZAASDKCompletedCallback)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Externs_AASetManagerCallbacks_m71BCF9813B0D1FADE7B7C571D7E4D26E608C9132 (intptr_t ___manager0, ZAASDKCompletedCallback_t3D65424BA56AEA3F625DBD33E9126DA7ABB8B4F2 * ___sdkCompletedCallback1, const RuntimeMethod* method);
// System.IntPtr AntiAddictionSDK.iOS.ManagerClient::get_ManagerPtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t ManagerClient_get_ManagerPtr_mFD4937EE9AF90BBD7333882CA240222917009F08 (ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879 * __this, const RuntimeMethod* method);
// System.IntPtr AntiAddictionSDK.iOS.Externs::AARelease(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t Externs_AARelease_mF96C6018CE5420C53CDDA10FCE5E0CE097388A88 (intptr_t ___obj0, const RuntimeMethod* method);
// System.Void AntiAddictionSDK.iOS.ManagerClient::set_ManagerPtr(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManagerClient_set_ManagerPtr_mE611E2C3E84D6E4FE485EA8E1E403957C626246F (ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879 * __this, intptr_t ___value0, const RuntimeMethod* method);
// System.Int32 AntiAddictionSDK.iOS.Externs::getUserAuthenticationStatus(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Externs_getUserAuthenticationStatus_m6F96E683511FC20200A770D5F694FB812DEF2339 (intptr_t ___manager0, const RuntimeMethod* method);
// System.Int32 AntiAddictionSDK.iOS.Externs::getUserAgeGroup(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Externs_getUserAgeGroup_m5BD5C24E38FEF0598E83158267E2F1B146269074 (intptr_t ___manager0, const RuntimeMethod* method);
// System.Int32 AntiAddictionSDK.iOS.Externs::checkLeftTimeOfCurrentUser(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Externs_checkLeftTimeOfCurrentUser_m535E511742C16384DA5998CF07D9DA4AD1B392D0 (intptr_t ___manager0, const RuntimeMethod* method);
// AntiAddictionSDK.iOS.ManagerClient AntiAddictionSDK.iOS.ManagerClient::IntPtrToManagerClient(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879 * ManagerClient_IntPtrToManagerClient_m94DA6BBE6DE2F8D20A3704D704C55D063149562F (intptr_t ___managerClient0, const RuntimeMethod* method);
// System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.GCHandle::op_Explicit(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 GCHandle_op_Explicit_m12AF9B7126A0899E8011F1CCDCB877AAA56A0C8C (intptr_t ___value0, const RuntimeMethod* method);
// System.Object System.Runtime.InteropServices.GCHandle::get_Target()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GCHandle_get_Target_mDBDEA6883245CF1EF963D9FA945569B2D59DCCF8 (GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * __this, const RuntimeMethod* method);
// System.Void System.Attribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0 (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * __this, const RuntimeMethod* method);
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void AASDKDemoScript::Start()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AASDKDemoScript_Start_m23AA4641C4D9C610BA531FB61574172348058D29 (AASDKDemoScript_t13A2A5435FC6651093130631C38282971B3E1ED9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AASDKDemoScript_Start_m23AA4641C4D9C610BA531FB61574172348058D29_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// antiAddictionSDK = new AntiAddictionStytemSDK();
AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC * L_0 = (AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC *)il2cpp_codegen_object_new(AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC_il2cpp_TypeInfo_var);
AntiAddictionStytemSDK__ctor_m86845274F494BA4033FEF356D008FF4DE7D2582B(L_0, /*hidden argument*/NULL);
__this->set_antiAddictionSDK_4(L_0);
// antiAddictionSDK.ZAASDKCompleted += HandleZAASDKCompleted;
AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC * L_1 = __this->get_antiAddictionSDK_4();
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_2 = (EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 *)il2cpp_codegen_object_new(EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479_il2cpp_TypeInfo_var);
EventHandler_1__ctor_m79F47BE49537EB65303F940C185E373DF718332F(L_2, __this, (intptr_t)((intptr_t)AASDKDemoScript_HandleZAASDKCompleted_m66C60B39F97DD967D67A52284BCC24F0D35BAE5F_RuntimeMethod_var), /*hidden argument*/EventHandler_1__ctor_m79F47BE49537EB65303F940C185E373DF718332F_RuntimeMethod_var);
NullCheck(L_1);
AntiAddictionStytemSDK_add_ZAASDKCompleted_m7F822C6B4866E4BFAA4BB6CA6725E5FDFE8413DE(L_1, L_2, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void AASDKDemoScript::IsAuthenticated()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AASDKDemoScript_IsAuthenticated_mD6F8C81B35D6549AD95BC45155C748E598BF9706 (AASDKDemoScript_t13A2A5435FC6651093130631C38282971B3E1ED9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AASDKDemoScript_IsAuthenticated_mD6F8C81B35D6549AD95BC45155C748E598BF9706_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// statusText.text = "IsAuthenticated";
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_0 = __this->get_statusText_5();
NullCheck(L_0);
VirtActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_0, _stringLiteralF4E9992BCD26B461360322D36EA3CCDB55D3B7AE);
// if (antiAddictionSDK != null)
AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC * L_1 = __this->get_antiAddictionSDK_4();
if (!L_1)
{
goto IL_0038;
}
}
{
// statusText.text = antiAddictionSDK.IsAuthenticated()+"";
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_2 = __this->get_statusText_5();
AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC * L_3 = __this->get_antiAddictionSDK_4();
NullCheck(L_3);
int32_t L_4 = AntiAddictionStytemSDK_IsAuthenticated_m9DEA33DD9B19045780CE873A52BC6E7AEE5F1B9E(L_3, /*hidden argument*/NULL);
int32_t L_5 = L_4;
RuntimeObject * L_6 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_5);
String_t* L_7 = String_Concat_m798542DE19B3F02DC4F4B777BB2E73169F129DE1(L_6, /*hidden argument*/NULL);
NullCheck(L_2);
VirtActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_2, L_7);
}
IL_0038:
{
// }
return;
}
}
// System.Void AASDKDemoScript::GetUserAgeGroup()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AASDKDemoScript_GetUserAgeGroup_m59102031E3A13335E1192B8A241CD3C79A2F5110 (AASDKDemoScript_t13A2A5435FC6651093130631C38282971B3E1ED9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AASDKDemoScript_GetUserAgeGroup_m59102031E3A13335E1192B8A241CD3C79A2F5110_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// statusText.text = "GetUserAgeGroup";
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_0 = __this->get_statusText_5();
NullCheck(L_0);
VirtActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_0, _stringLiteralA3BA60356CED55ECFF78588F8D19A1C7FC5764C6);
// if (antiAddictionSDK != null)
AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC * L_1 = __this->get_antiAddictionSDK_4();
if (!L_1)
{
goto IL_0038;
}
}
{
// statusText.text = antiAddictionSDK.AgeGroupOfCurrentUser()+"";
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_2 = __this->get_statusText_5();
AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC * L_3 = __this->get_antiAddictionSDK_4();
NullCheck(L_3);
int32_t L_4 = AntiAddictionStytemSDK_AgeGroupOfCurrentUser_m362F4AE6FB100F74FCEDD0898AE0E70A4FFB9AD1(L_3, /*hidden argument*/NULL);
int32_t L_5 = L_4;
RuntimeObject * L_6 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_5);
String_t* L_7 = String_Concat_m798542DE19B3F02DC4F4B777BB2E73169F129DE1(L_6, /*hidden argument*/NULL);
NullCheck(L_2);
VirtActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_2, L_7);
}
IL_0038:
{
// }
return;
}
}
// System.Void AASDKDemoScript::LeftTimeOfCurrentUser()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AASDKDemoScript_LeftTimeOfCurrentUser_mEEAB059CF5228E035E1124AA5295DAC8E3967341 (AASDKDemoScript_t13A2A5435FC6651093130631C38282971B3E1ED9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AASDKDemoScript_LeftTimeOfCurrentUser_mEEAB059CF5228E035E1124AA5295DAC8E3967341_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// statusText.text = "LeftTimeOfCurrentUser";
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_0 = __this->get_statusText_5();
NullCheck(L_0);
VirtActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_0, _stringLiteral96E2C2F50FB954085572BA6D69CF0DCD5D0A7BC2);
// if (antiAddictionSDK != null)
AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC * L_1 = __this->get_antiAddictionSDK_4();
if (!L_1)
{
goto IL_0038;
}
}
{
// statusText.text = antiAddictionSDK.LeftTimeOfCurrentUser()+"";
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_2 = __this->get_statusText_5();
AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC * L_3 = __this->get_antiAddictionSDK_4();
NullCheck(L_3);
int32_t L_4 = AntiAddictionStytemSDK_LeftTimeOfCurrentUser_m09A38EFA9426C53D6FE9C21701F71CC007CF7FC9(L_3, /*hidden argument*/NULL);
int32_t L_5 = L_4;
RuntimeObject * L_6 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_5);
String_t* L_7 = String_Concat_m798542DE19B3F02DC4F4B777BB2E73169F129DE1(L_6, /*hidden argument*/NULL);
NullCheck(L_2);
VirtActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_2, L_7);
}
IL_0038:
{
// }
return;
}
}
// System.Void AASDKDemoScript::HandleZAASDKCompleted(System.Object,System.EventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AASDKDemoScript_HandleZAASDKCompleted_m66C60B39F97DD967D67A52284BCC24F0D35BAE5F (AASDKDemoScript_t13A2A5435FC6651093130631C38282971B3E1ED9 * __this, RuntimeObject * ___sender0, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * ___args1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AASDKDemoScript_HandleZAASDKCompleted_m66C60B39F97DD967D67A52284BCC24F0D35BAE5F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// statusText.text = "HandleZAASDKCompleted";
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_0 = __this->get_statusText_5();
NullCheck(L_0);
VirtActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_0, _stringLiteral0C841068A47AF1D6F0F09838BD1303022AB16A2A);
// print("AntiAddiction---HandleZAASDKCompleted");
MonoBehaviour_print_m171D860AF3370C46648FE8F3EE3E0E6535E1C774(_stringLiteral5803073293DEC62D48A19963AC6E56B499C7D0F3, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void AASDKDemoScript::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AASDKDemoScript__ctor_mD188797F3342CFCA127AC757EF6B5D7923F8E7B2 (AASDKDemoScript_t13A2A5435FC6651093130631C38282971B3E1ED9 * __this, const RuntimeMethod* method)
{
{
MonoBehaviour__ctor_mEAEC84B222C60319D593E456D769B3311DFCEF97(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// AntiAddictionSDK.Common.IAntiAddictionClient AntiAddictionSDK.AntiAddictionClientFactory::BuildAntiAddictionClient()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AntiAddictionClientFactory_BuildAntiAddictionClient_m444CFAB8C4E6314C4FBD1D7B4E54039DFEDE68B9 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AntiAddictionClientFactory_BuildAntiAddictionClient_m444CFAB8C4E6314C4FBD1D7B4E54039DFEDE68B9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// return new iOS.ManagerClient();
ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879 * L_0 = (ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879 *)il2cpp_codegen_object_new(ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879_il2cpp_TypeInfo_var);
ManagerClient__ctor_mC7FEB907AC5800C44ECD8E8960C0B556CE4391C1(L_0, /*hidden argument*/NULL);
return L_0;
}
}
// System.Void AntiAddictionSDK.AntiAddictionClientFactory::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AntiAddictionClientFactory__ctor_mB16BD53B447CAC596A2B10DDF6EF58676B2D3F42 (AntiAddictionClientFactory_tAB18C68E7EFD265166169C1525DEE926E49CC3DC * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void AntiAddictionSDK.Api.AntiAddictionStytemSDK::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AntiAddictionStytemSDK__ctor_m86845274F494BA4033FEF356D008FF4DE7D2582B (AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AntiAddictionStytemSDK__ctor_m86845274F494BA4033FEF356D008FF4DE7D2582B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// public AntiAddictionStytemSDK()
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
// client = AntiAddictionClientFactory.BuildAntiAddictionClient();
RuntimeObject* L_0 = AntiAddictionClientFactory_BuildAntiAddictionClient_m444CFAB8C4E6314C4FBD1D7B4E54039DFEDE68B9(/*hidden argument*/NULL);
__this->set_client_1(L_0);
// if (client != null) {
RuntimeObject* L_1 = __this->get_client_1();
if (!L_1)
{
goto IL_0030;
}
}
{
// client.ZAASDKCompleted += (sender, args) =>
// {
// if (ZAASDKCompleted != null)
// {
// ZAASDKCompleted(this, args);
// }
// };
RuntimeObject* L_2 = __this->get_client_1();
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_3 = (EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 *)il2cpp_codegen_object_new(EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479_il2cpp_TypeInfo_var);
EventHandler_1__ctor_m79F47BE49537EB65303F940C185E373DF718332F(L_3, __this, (intptr_t)((intptr_t)AntiAddictionStytemSDK_U3C_ctorU3Eb__2_0_mBE2DA8E8869B8B37CDD498B7C035E034A04C5BC9_RuntimeMethod_var), /*hidden argument*/EventHandler_1__ctor_m79F47BE49537EB65303F940C185E373DF718332F_RuntimeMethod_var);
NullCheck(L_2);
InterfaceActionInvoker1< EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * >::Invoke(0 /* System.Void AntiAddictionSDK.Common.IAntiAddictionClient::add_ZAASDKCompleted(System.EventHandler`1<System.EventArgs>) */, IAntiAddictionClient_tBF6C8A64AE03B4E22D225C2B84F07B0371CA2192_il2cpp_TypeInfo_var, L_2, L_3);
}
IL_0030:
{
// }
return;
}
}
// System.Void AntiAddictionSDK.Api.AntiAddictionStytemSDK::add_ZAASDKCompleted(System.EventHandler`1<System.EventArgs>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AntiAddictionStytemSDK_add_ZAASDKCompleted_m7F822C6B4866E4BFAA4BB6CA6725E5FDFE8413DE (AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC * __this, EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AntiAddictionStytemSDK_add_ZAASDKCompleted_m7F822C6B4866E4BFAA4BB6CA6725E5FDFE8413DE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * V_0 = NULL;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * V_1 = NULL;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * V_2 = NULL;
{
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_0 = __this->get_ZAASDKCompleted_2();
V_0 = L_0;
}
IL_0007:
{
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_1 = V_0;
V_1 = L_1;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_2 = V_1;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_3 = ___value0;
Delegate_t * L_4 = Delegate_Combine_mC25D2F7DECAFBA6D9A2F9EBA8A77063F0658ECF1(L_2, L_3, /*hidden argument*/NULL);
V_2 = ((EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 *)CastclassSealed((RuntimeObject*)L_4, EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479_il2cpp_TypeInfo_var));
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 ** L_5 = __this->get_address_of_ZAASDKCompleted_2();
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_6 = V_2;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_7 = V_1;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_8 = InterlockedCompareExchangeImpl<EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 *>((EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 **)L_5, L_6, L_7);
V_0 = L_8;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_9 = V_0;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_10 = V_1;
if ((!(((RuntimeObject*)(EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 *)L_9) == ((RuntimeObject*)(EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 *)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void AntiAddictionSDK.Api.AntiAddictionStytemSDK::remove_ZAASDKCompleted(System.EventHandler`1<System.EventArgs>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AntiAddictionStytemSDK_remove_ZAASDKCompleted_mFDFDF701BB507AB9BB9EFEC8BD3C4187B41525F2 (AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC * __this, EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AntiAddictionStytemSDK_remove_ZAASDKCompleted_mFDFDF701BB507AB9BB9EFEC8BD3C4187B41525F2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * V_0 = NULL;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * V_1 = NULL;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * V_2 = NULL;
{
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_0 = __this->get_ZAASDKCompleted_2();
V_0 = L_0;
}
IL_0007:
{
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_1 = V_0;
V_1 = L_1;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_2 = V_1;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_3 = ___value0;
Delegate_t * L_4 = Delegate_Remove_m0B0DB7D1B3AF96B71AFAA72BA0EFE32FBBC2932D(L_2, L_3, /*hidden argument*/NULL);
V_2 = ((EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 *)CastclassSealed((RuntimeObject*)L_4, EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479_il2cpp_TypeInfo_var));
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 ** L_5 = __this->get_address_of_ZAASDKCompleted_2();
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_6 = V_2;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_7 = V_1;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_8 = InterlockedCompareExchangeImpl<EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 *>((EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 **)L_5, L_6, L_7);
V_0 = L_8;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_9 = V_0;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_10 = V_1;
if ((!(((RuntimeObject*)(EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 *)L_9) == ((RuntimeObject*)(EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 *)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Int32 AntiAddictionSDK.Api.AntiAddictionStytemSDK::IsAuthenticated()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AntiAddictionStytemSDK_IsAuthenticated_m9DEA33DD9B19045780CE873A52BC6E7AEE5F1B9E (AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AntiAddictionStytemSDK_IsAuthenticated_m9DEA33DD9B19045780CE873A52BC6E7AEE5F1B9E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// return client.IsAuthenticated();
RuntimeObject* L_0 = __this->get_client_1();
NullCheck(L_0);
int32_t L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 AntiAddictionSDK.Common.IAntiAddictionClient::IsAuthenticated() */, IAntiAddictionClient_tBF6C8A64AE03B4E22D225C2B84F07B0371CA2192_il2cpp_TypeInfo_var, L_0);
return L_1;
}
}
// System.Int32 AntiAddictionSDK.Api.AntiAddictionStytemSDK::AgeGroupOfCurrentUser()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AntiAddictionStytemSDK_AgeGroupOfCurrentUser_m362F4AE6FB100F74FCEDD0898AE0E70A4FFB9AD1 (AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AntiAddictionStytemSDK_AgeGroupOfCurrentUser_m362F4AE6FB100F74FCEDD0898AE0E70A4FFB9AD1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// return client.AgeGroupOfCurrentUser();
RuntimeObject* L_0 = __this->get_client_1();
NullCheck(L_0);
int32_t L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(3 /* System.Int32 AntiAddictionSDK.Common.IAntiAddictionClient::AgeGroupOfCurrentUser() */, IAntiAddictionClient_tBF6C8A64AE03B4E22D225C2B84F07B0371CA2192_il2cpp_TypeInfo_var, L_0);
return L_1;
}
}
// System.Int32 AntiAddictionSDK.Api.AntiAddictionStytemSDK::LeftTimeOfCurrentUser()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AntiAddictionStytemSDK_LeftTimeOfCurrentUser_m09A38EFA9426C53D6FE9C21701F71CC007CF7FC9 (AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AntiAddictionStytemSDK_LeftTimeOfCurrentUser_m09A38EFA9426C53D6FE9C21701F71CC007CF7FC9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// return client.LeftTimeOfCurrentUser();
RuntimeObject* L_0 = __this->get_client_1();
NullCheck(L_0);
int32_t L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 AntiAddictionSDK.Common.IAntiAddictionClient::LeftTimeOfCurrentUser() */, IAntiAddictionClient_tBF6C8A64AE03B4E22D225C2B84F07B0371CA2192_il2cpp_TypeInfo_var, L_0);
return L_1;
}
}
// System.Void AntiAddictionSDK.Api.AntiAddictionStytemSDK::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AntiAddictionStytemSDK__cctor_m02D9F4D2C570EF7C72FADFD4715DFCC3D193E5F9 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AntiAddictionStytemSDK__cctor_m02D9F4D2C570EF7C72FADFD4715DFCC3D193E5F9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// static readonly object objLock = new object();
RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_0, /*hidden argument*/NULL);
((AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC_StaticFields*)il2cpp_codegen_static_fields_for(AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC_il2cpp_TypeInfo_var))->set_objLock_0(L_0);
return;
}
}
// System.Void AntiAddictionSDK.Api.AntiAddictionStytemSDK::<.ctor>b__2_0(System.Object,System.EventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AntiAddictionStytemSDK_U3C_ctorU3Eb__2_0_mBE2DA8E8869B8B37CDD498B7C035E034A04C5BC9 (AntiAddictionStytemSDK_t05FC478BE9A93234060C01249DA4874FEB3F05DC * __this, RuntimeObject * ___sender0, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * ___args1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AntiAddictionStytemSDK_U3C_ctorU3Eb__2_0_mBE2DA8E8869B8B37CDD498B7C035E034A04C5BC9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (ZAASDKCompleted != null)
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_0 = __this->get_ZAASDKCompleted_2();
if (!L_0)
{
goto IL_0015;
}
}
{
// ZAASDKCompleted(this, args);
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_1 = __this->get_ZAASDKCompleted_2();
EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * L_2 = ___args1;
NullCheck(L_1);
EventHandler_1_Invoke_m47F6593ABD0ABB2502C7BB006CC844D3DDB7AE1C(L_1, __this, L_2, /*hidden argument*/EventHandler_1_Invoke_m47F6593ABD0ABB2502C7BB006CC844D3DDB7AE1C_RuntimeMethod_var);
}
IL_0015:
{
// };
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32 AntiAddictionSDK.Api.ChannelUserInfoEventArgs::get_RealNameStatus()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ChannelUserInfoEventArgs_get_RealNameStatus_m24D7A5284696A4A1B7132992174F036F4053E012 (ChannelUserInfoEventArgs_t9E55D3905D97108D96141DEE56870EB2478F8A93 * __this, const RuntimeMethod* method)
{
{
// public int RealNameStatus { get; set; }
int32_t L_0 = __this->get_U3CRealNameStatusU3Ek__BackingField_1();
return L_0;
}
}
// System.Void AntiAddictionSDK.Api.ChannelUserInfoEventArgs::set_RealNameStatus(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChannelUserInfoEventArgs_set_RealNameStatus_m2E009404517BFCCADBCE46E7061F8BB03DE6058F (ChannelUserInfoEventArgs_t9E55D3905D97108D96141DEE56870EB2478F8A93 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public int RealNameStatus { get; set; }
int32_t L_0 = ___value0;
__this->set_U3CRealNameStatusU3Ek__BackingField_1(L_0);
return;
}
}
// System.Void AntiAddictionSDK.Api.ChannelUserInfoEventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChannelUserInfoEventArgs__ctor_m91EA4E3F78F42918743A73884A9241434A3EC407 (ChannelUserInfoEventArgs_t9E55D3905D97108D96141DEE56870EB2478F8A93 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChannelUserInfoEventArgs__ctor_m91EA4E3F78F42918743A73884A9241434A3EC407_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var);
EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32 AntiAddictionSDK.Api.GroupIdEventArgs::get_GroupId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GroupIdEventArgs_get_GroupId_m3128ACB206F8A1EC26C83379E011DDC80B35FF89 (GroupIdEventArgs_t3BA659445EA3D701F712CBD889C4E088A17EBEE6 * __this, const RuntimeMethod* method)
{
{
// public int GroupId { get; set; }
int32_t L_0 = __this->get_U3CGroupIdU3Ek__BackingField_1();
return L_0;
}
}
// System.Void AntiAddictionSDK.Api.GroupIdEventArgs::set_GroupId(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupIdEventArgs_set_GroupId_m878F38493B9A73E1469AC724C0D7E4E758787EC8 (GroupIdEventArgs_t3BA659445EA3D701F712CBD889C4E088A17EBEE6 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public int GroupId { get; set; }
int32_t L_0 = ___value0;
__this->set_U3CGroupIdU3Ek__BackingField_1(L_0);
return;
}
}
// System.Void AntiAddictionSDK.Api.GroupIdEventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupIdEventArgs__ctor_m30A92C461528FBEF0A722A31AAC5165859855095 (GroupIdEventArgs_t3BA659445EA3D701F712CBD889C4E088A17EBEE6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GroupIdEventArgs__ctor_m30A92C461528FBEF0A722A31AAC5165859855095_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var);
EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32 AntiAddictionSDK.Api.LeftTimeEventArgs::get_LeftTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LeftTimeEventArgs_get_LeftTime_m1B210F59FA4DDE78077868A611284769BC859A40 (LeftTimeEventArgs_t790BCB0F49D972667D7960B71DE6C01487FE4A1D * __this, const RuntimeMethod* method)
{
{
// public int LeftTime { get; set; }
int32_t L_0 = __this->get_U3CLeftTimeU3Ek__BackingField_1();
return L_0;
}
}
// System.Void AntiAddictionSDK.Api.LeftTimeEventArgs::set_LeftTime(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LeftTimeEventArgs_set_LeftTime_m50CBF9F920453AA67E41826EE9871A6AA60DDB8B (LeftTimeEventArgs_t790BCB0F49D972667D7960B71DE6C01487FE4A1D * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public int LeftTime { get; set; }
int32_t L_0 = ___value0;
__this->set_U3CLeftTimeU3Ek__BackingField_1(L_0);
return;
}
}
// System.Void AntiAddictionSDK.Api.LeftTimeEventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LeftTimeEventArgs__ctor_m1CA25843424650F68851CE494B45D9C326C3329D (LeftTimeEventArgs_t790BCB0F49D972667D7960B71DE6C01487FE4A1D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LeftTimeEventArgs__ctor_m1CA25843424650F68851CE494B45D9C326C3329D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var);
EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String AntiAddictionSDK.Api.LoginSuccessEventArgs::get_Message()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* LoginSuccessEventArgs_get_Message_m1007C8DD5F1D0A653CE594954B3DB210452303EE (LoginSuccessEventArgs_t25425235026D5639842BFABBB2B14E59BED96948 * __this, const RuntimeMethod* method)
{
{
// public string Message { get; set; }
String_t* L_0 = __this->get_U3CMessageU3Ek__BackingField_1();
return L_0;
}
}
// System.Void AntiAddictionSDK.Api.LoginSuccessEventArgs::set_Message(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LoginSuccessEventArgs_set_Message_mE7A19C0B2640902527BBBED5B37E7BBCF4B944A0 (LoginSuccessEventArgs_t25425235026D5639842BFABBB2B14E59BED96948 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string Message { get; set; }
String_t* L_0 = ___value0;
__this->set_U3CMessageU3Ek__BackingField_1(L_0);
return;
}
}
// System.Void AntiAddictionSDK.Api.LoginSuccessEventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LoginSuccessEventArgs__ctor_m71BDDD0B6A018AFDAB77190D4D4C676E232CD74D (LoginSuccessEventArgs_t25425235026D5639842BFABBB2B14E59BED96948 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LoginSuccessEventArgs__ctor_m71BDDD0B6A018AFDAB77190D4D4C676E232CD74D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var);
EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
IL2CPP_EXTERN_C intptr_t DEFAULT_CALL AARelease(intptr_t);
// System.IntPtr AntiAddictionSDK.iOS.Externs::AARelease(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t Externs_AARelease_mF96C6018CE5420C53CDDA10FCE5E0CE097388A88 (intptr_t ___obj0, const RuntimeMethod* method)
{
typedef intptr_t (DEFAULT_CALL *PInvokeFunc) (intptr_t);
// Native function invocation
intptr_t returnValue = reinterpret_cast<PInvokeFunc>(AARelease)(___obj0);
return returnValue;
}
IL2CPP_EXTERN_C intptr_t DEFAULT_CALL AACreateManager(intptr_t);
// System.IntPtr AntiAddictionSDK.iOS.Externs::AACreateManager(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t Externs_AACreateManager_m6BF163B56797A166383DDF0DA47047FD5CC294FA (intptr_t ___managerClient0, const RuntimeMethod* method)
{
typedef intptr_t (DEFAULT_CALL *PInvokeFunc) (intptr_t);
// Native function invocation
intptr_t returnValue = reinterpret_cast<PInvokeFunc>(AACreateManager)(___managerClient0);
return returnValue;
}
IL2CPP_EXTERN_C void DEFAULT_CALL AASetManagerCallbacks(intptr_t, Il2CppMethodPointer);
// System.Void AntiAddictionSDK.iOS.Externs::AASetManagerCallbacks(System.IntPtr,AntiAddictionSDK.iOS.ManagerClient/ZAASDKCompletedCallback)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Externs_AASetManagerCallbacks_m71BCF9813B0D1FADE7B7C571D7E4D26E608C9132 (intptr_t ___manager0, ZAASDKCompletedCallback_t3D65424BA56AEA3F625DBD33E9126DA7ABB8B4F2 * ___sdkCompletedCallback1, const RuntimeMethod* method)
{
typedef void (DEFAULT_CALL *PInvokeFunc) (intptr_t, Il2CppMethodPointer);
// Marshaling of parameter '___sdkCompletedCallback1' to native representation
Il2CppMethodPointer ____sdkCompletedCallback1_marshaled = NULL;
____sdkCompletedCallback1_marshaled = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(___sdkCompletedCallback1));
// Native function invocation
reinterpret_cast<PInvokeFunc>(AASetManagerCallbacks)(___manager0, ____sdkCompletedCallback1_marshaled);
}
IL2CPP_EXTERN_C int32_t DEFAULT_CALL getUserAuthenticationStatus(intptr_t);
// System.Int32 AntiAddictionSDK.iOS.Externs::getUserAuthenticationStatus(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Externs_getUserAuthenticationStatus_m6F96E683511FC20200A770D5F694FB812DEF2339 (intptr_t ___manager0, const RuntimeMethod* method)
{
typedef int32_t (DEFAULT_CALL *PInvokeFunc) (intptr_t);
// Native function invocation
int32_t returnValue = reinterpret_cast<PInvokeFunc>(getUserAuthenticationStatus)(___manager0);
return returnValue;
}
IL2CPP_EXTERN_C int32_t DEFAULT_CALL getUserAgeGroup(intptr_t);
// System.Int32 AntiAddictionSDK.iOS.Externs::getUserAgeGroup(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Externs_getUserAgeGroup_m5BD5C24E38FEF0598E83158267E2F1B146269074 (intptr_t ___manager0, const RuntimeMethod* method)
{
typedef int32_t (DEFAULT_CALL *PInvokeFunc) (intptr_t);
// Native function invocation
int32_t returnValue = reinterpret_cast<PInvokeFunc>(getUserAgeGroup)(___manager0);
return returnValue;
}
IL2CPP_EXTERN_C int32_t DEFAULT_CALL checkLeftTimeOfCurrentUser(intptr_t);
// System.Int32 AntiAddictionSDK.iOS.Externs::checkLeftTimeOfCurrentUser(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Externs_checkLeftTimeOfCurrentUser_m535E511742C16384DA5998CF07D9DA4AD1B392D0 (intptr_t ___manager0, const RuntimeMethod* method)
{
typedef int32_t (DEFAULT_CALL *PInvokeFunc) (intptr_t);
// Native function invocation
int32_t returnValue = reinterpret_cast<PInvokeFunc>(checkLeftTimeOfCurrentUser)(___manager0);
return returnValue;
}
// System.Void AntiAddictionSDK.iOS.Externs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Externs__ctor_m056CCD75CC8DE4D710D715A580D9B13C5FCD04FC (Externs_t7004181DD7995ECFA221EB1E9AE9C4FDF62F79B6 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
extern "C" void DEFAULT_CALL ReversePInvokeWrapper_ManagerClient_sdkCompletedCallback_mE9042CAE6B015A078085B61EBBD8B890AE786453(intptr_t ___managerClient0)
{
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
ManagerClient_sdkCompletedCallback_mE9042CAE6B015A078085B61EBBD8B890AE786453(___managerClient0, NULL);
}
// System.Void AntiAddictionSDK.iOS.ManagerClient::add_ZAASDKCompleted(System.EventHandler`1<System.EventArgs>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManagerClient_add_ZAASDKCompleted_mBB98B5F81C4246E3C4DB3FE8AF8B744342BFAE2D (ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879 * __this, EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ManagerClient_add_ZAASDKCompleted_mBB98B5F81C4246E3C4DB3FE8AF8B744342BFAE2D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * V_0 = NULL;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * V_1 = NULL;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * V_2 = NULL;
{
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_0 = __this->get_ZAASDKCompleted_2();
V_0 = L_0;
}
IL_0007:
{
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_1 = V_0;
V_1 = L_1;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_2 = V_1;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_3 = ___value0;
Delegate_t * L_4 = Delegate_Combine_mC25D2F7DECAFBA6D9A2F9EBA8A77063F0658ECF1(L_2, L_3, /*hidden argument*/NULL);
V_2 = ((EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 *)CastclassSealed((RuntimeObject*)L_4, EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479_il2cpp_TypeInfo_var));
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 ** L_5 = __this->get_address_of_ZAASDKCompleted_2();
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_6 = V_2;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_7 = V_1;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_8 = InterlockedCompareExchangeImpl<EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 *>((EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 **)L_5, L_6, L_7);
V_0 = L_8;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_9 = V_0;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_10 = V_1;
if ((!(((RuntimeObject*)(EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 *)L_9) == ((RuntimeObject*)(EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 *)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void AntiAddictionSDK.iOS.ManagerClient::remove_ZAASDKCompleted(System.EventHandler`1<System.EventArgs>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManagerClient_remove_ZAASDKCompleted_m64AE372D357C79C82EE16924FA855ADC7A5D2D39 (ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879 * __this, EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ManagerClient_remove_ZAASDKCompleted_m64AE372D357C79C82EE16924FA855ADC7A5D2D39_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * V_0 = NULL;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * V_1 = NULL;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * V_2 = NULL;
{
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_0 = __this->get_ZAASDKCompleted_2();
V_0 = L_0;
}
IL_0007:
{
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_1 = V_0;
V_1 = L_1;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_2 = V_1;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_3 = ___value0;
Delegate_t * L_4 = Delegate_Remove_m0B0DB7D1B3AF96B71AFAA72BA0EFE32FBBC2932D(L_2, L_3, /*hidden argument*/NULL);
V_2 = ((EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 *)CastclassSealed((RuntimeObject*)L_4, EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479_il2cpp_TypeInfo_var));
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 ** L_5 = __this->get_address_of_ZAASDKCompleted_2();
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_6 = V_2;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_7 = V_1;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_8 = InterlockedCompareExchangeImpl<EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 *>((EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 **)L_5, L_6, L_7);
V_0 = L_8;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_9 = V_0;
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_10 = V_1;
if ((!(((RuntimeObject*)(EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 *)L_9) == ((RuntimeObject*)(EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 *)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void AntiAddictionSDK.iOS.ManagerClient::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManagerClient__ctor_mC7FEB907AC5800C44ECD8E8960C0B556CE4391C1 (ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ManagerClient__ctor_mC7FEB907AC5800C44ECD8E8960C0B556CE4391C1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// public ManagerClient()
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
// managerClientPtr = (IntPtr)GCHandle.Alloc(this);
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 L_0 = GCHandle_Alloc_m5BF9DC23B533B904BFEA61136B92916683B46B0F(__this, /*hidden argument*/NULL);
intptr_t L_1 = GCHandle_op_Explicit_mDDDE375E679609F240EF76F20E982C5B73A7D6BA(L_0, /*hidden argument*/NULL);
__this->set_managerClientPtr_1((intptr_t)L_1);
// managerPtr = Externs.AACreateManager(managerClientPtr);
intptr_t L_2 = __this->get_managerClientPtr_1();
intptr_t L_3 = Externs_AACreateManager_m6BF163B56797A166383DDF0DA47047FD5CC294FA((intptr_t)L_2, /*hidden argument*/NULL);
__this->set_managerPtr_0((intptr_t)L_3);
// Externs.AASetManagerCallbacks(
// managerPtr,
// sdkCompletedCallback
// );
intptr_t L_4 = __this->get_managerPtr_0();
ZAASDKCompletedCallback_t3D65424BA56AEA3F625DBD33E9126DA7ABB8B4F2 * L_5 = (ZAASDKCompletedCallback_t3D65424BA56AEA3F625DBD33E9126DA7ABB8B4F2 *)il2cpp_codegen_object_new(ZAASDKCompletedCallback_t3D65424BA56AEA3F625DBD33E9126DA7ABB8B4F2_il2cpp_TypeInfo_var);
ZAASDKCompletedCallback__ctor_m05BC16D857E4FBF3C643437BDCCADB00B850EAA7(L_5, NULL, (intptr_t)((intptr_t)ManagerClient_sdkCompletedCallback_mE9042CAE6B015A078085B61EBBD8B890AE786453_RuntimeMethod_var), /*hidden argument*/NULL);
Externs_AASetManagerCallbacks_m71BCF9813B0D1FADE7B7C571D7E4D26E608C9132((intptr_t)L_4, L_5, /*hidden argument*/NULL);
// }
return;
}
}
// System.IntPtr AntiAddictionSDK.iOS.ManagerClient::get_ManagerPtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t ManagerClient_get_ManagerPtr_mFD4937EE9AF90BBD7333882CA240222917009F08 (ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879 * __this, const RuntimeMethod* method)
{
{
// return ManagerPtr;
intptr_t L_0 = ManagerClient_get_ManagerPtr_mFD4937EE9AF90BBD7333882CA240222917009F08(__this, /*hidden argument*/NULL);
return (intptr_t)L_0;
}
}
// System.Void AntiAddictionSDK.iOS.ManagerClient::set_ManagerPtr(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManagerClient_set_ManagerPtr_mE611E2C3E84D6E4FE485EA8E1E403957C626246F (ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879 * __this, intptr_t ___value0, const RuntimeMethod* method)
{
{
// Externs.AARelease(ManagerPtr);
intptr_t L_0 = ManagerClient_get_ManagerPtr_mFD4937EE9AF90BBD7333882CA240222917009F08(__this, /*hidden argument*/NULL);
Externs_AARelease_mF96C6018CE5420C53CDDA10FCE5E0CE097388A88((intptr_t)L_0, /*hidden argument*/NULL);
// ManagerPtr = value;
intptr_t L_1 = ___value0;
ManagerClient_set_ManagerPtr_mE611E2C3E84D6E4FE485EA8E1E403957C626246F(__this, (intptr_t)L_1, /*hidden argument*/NULL);
// }
return;
}
}
// System.Int32 AntiAddictionSDK.iOS.ManagerClient::IsAuthenticated()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ManagerClient_IsAuthenticated_mBA125494EB748A9DD33773CF019014502CDECF1C (ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879 * __this, const RuntimeMethod* method)
{
{
// return Externs.getUserAuthenticationStatus(managerPtr);
intptr_t L_0 = __this->get_managerPtr_0();
int32_t L_1 = Externs_getUserAuthenticationStatus_m6F96E683511FC20200A770D5F694FB812DEF2339((intptr_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Int32 AntiAddictionSDK.iOS.ManagerClient::AgeGroupOfCurrentUser()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ManagerClient_AgeGroupOfCurrentUser_m149B0E56F131DA821DD47953E4C9250F6FCD6D7D (ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879 * __this, const RuntimeMethod* method)
{
{
// return Externs.getUserAgeGroup(managerPtr);
intptr_t L_0 = __this->get_managerPtr_0();
int32_t L_1 = Externs_getUserAgeGroup_m5BD5C24E38FEF0598E83158267E2F1B146269074((intptr_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Int32 AntiAddictionSDK.iOS.ManagerClient::LeftTimeOfCurrentUser()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ManagerClient_LeftTimeOfCurrentUser_mFFDB5F0BFEFE52C4F6918D85B41B1DE3688E303D (ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879 * __this, const RuntimeMethod* method)
{
{
// return Externs.checkLeftTimeOfCurrentUser(managerPtr);
intptr_t L_0 = __this->get_managerPtr_0();
int32_t L_1 = Externs_checkLeftTimeOfCurrentUser_m535E511742C16384DA5998CF07D9DA4AD1B392D0((intptr_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Void AntiAddictionSDK.iOS.ManagerClient::sdkCompletedCallback(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManagerClient_sdkCompletedCallback_mE9042CAE6B015A078085B61EBBD8B890AE786453 (intptr_t ___managerClient0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ManagerClient_sdkCompletedCallback_mE9042CAE6B015A078085B61EBBD8B890AE786453_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879 * V_0 = NULL;
{
// ManagerClient client = IntPtrToManagerClient(managerClient);
intptr_t L_0 = ___managerClient0;
ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879 * L_1 = ManagerClient_IntPtrToManagerClient_m94DA6BBE6DE2F8D20A3704D704C55D063149562F((intptr_t)L_0, /*hidden argument*/NULL);
V_0 = L_1;
// if (client.ZAASDKCompleted != null)
ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879 * L_2 = V_0;
NullCheck(L_2);
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_3 = L_2->get_ZAASDKCompleted_2();
if (!L_3)
{
goto IL_0020;
}
}
{
// client.ZAASDKCompleted(client, EventArgs.Empty);
ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879 * L_4 = V_0;
NullCheck(L_4);
EventHandler_1_t1A2ED46832F9B37E4743C62DC7F242BAD7E46479 * L_5 = L_4->get_ZAASDKCompleted_2();
ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879 * L_6 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var);
EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * L_7 = ((EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_StaticFields*)il2cpp_codegen_static_fields_for(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var))->get_Empty_0();
NullCheck(L_5);
EventHandler_1_Invoke_m47F6593ABD0ABB2502C7BB006CC844D3DDB7AE1C(L_5, L_6, L_7, /*hidden argument*/EventHandler_1_Invoke_m47F6593ABD0ABB2502C7BB006CC844D3DDB7AE1C_RuntimeMethod_var);
}
IL_0020:
{
// }
return;
}
}
// AntiAddictionSDK.iOS.ManagerClient AntiAddictionSDK.iOS.ManagerClient::IntPtrToManagerClient(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879 * ManagerClient_IntPtrToManagerClient_m94DA6BBE6DE2F8D20A3704D704C55D063149562F (intptr_t ___managerClient0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ManagerClient_IntPtrToManagerClient_m94DA6BBE6DE2F8D20A3704D704C55D063149562F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// GCHandle handle = (GCHandle)managerClient;
intptr_t L_0 = ___managerClient0;
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 L_1 = GCHandle_op_Explicit_m12AF9B7126A0899E8011F1CCDCB877AAA56A0C8C((intptr_t)L_0, /*hidden argument*/NULL);
V_0 = L_1;
// return handle.Target as ManagerClient;
RuntimeObject * L_2 = GCHandle_get_Target_mDBDEA6883245CF1EF963D9FA945569B2D59DCCF8((GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(&V_0), /*hidden argument*/NULL);
return ((ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879 *)IsInstClass((RuntimeObject*)L_2, ManagerClient_tC534131ADC9A046844BEFE30EFFE5702FD72A879_il2cpp_TypeInfo_var));
}
}
#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
IL2CPP_EXTERN_C void DelegatePInvokeWrapper_ZAASDKCompletedCallback_t3D65424BA56AEA3F625DBD33E9126DA7ABB8B4F2 (ZAASDKCompletedCallback_t3D65424BA56AEA3F625DBD33E9126DA7ABB8B4F2 * __this, intptr_t ___managerClient0, const RuntimeMethod* method)
{
typedef void (DEFAULT_CALL *PInvokeFunc)(intptr_t);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(((RuntimeDelegate*)__this)->method->nativeFunction);
// Native function invocation
il2cppPInvokeFunc(___managerClient0);
}
// System.Void AntiAddictionSDK.iOS.ManagerClient/ZAASDKCompletedCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZAASDKCompletedCallback__ctor_m05BC16D857E4FBF3C643437BDCCADB00B850EAA7 (ZAASDKCompletedCallback_t3D65424BA56AEA3F625DBD33E9126DA7ABB8B4F2 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void AntiAddictionSDK.iOS.ManagerClient/ZAASDKCompletedCallback::Invoke(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZAASDKCompletedCallback_Invoke_m358B2D130CA1F408C3B136C9BEC76C24EA921FE0 (ZAASDKCompletedCallback_t3D65424BA56AEA3F625DBD33E9126DA7ABB8B4F2 * __this, intptr_t ___managerClient0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (intptr_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___managerClient0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, intptr_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___managerClient0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< intptr_t >::Invoke(targetMethod, targetThis, ___managerClient0);
else
GenericVirtActionInvoker1< intptr_t >::Invoke(targetMethod, targetThis, ___managerClient0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< intptr_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___managerClient0);
else
VirtActionInvoker1< intptr_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___managerClient0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___managerClient0) - 1), targetMethod);
}
typedef void (*FunctionPointerType) (void*, intptr_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___managerClient0, targetMethod);
}
}
}
}
// System.IAsyncResult AntiAddictionSDK.iOS.ManagerClient/ZAASDKCompletedCallback::BeginInvoke(System.IntPtr,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ZAASDKCompletedCallback_BeginInvoke_m275C9A9C6EB1597AF7D701DD872EACA726FBBBC6 (ZAASDKCompletedCallback_t3D65424BA56AEA3F625DBD33E9126DA7ABB8B4F2 * __this, intptr_t ___managerClient0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ZAASDKCompletedCallback_BeginInvoke_m275C9A9C6EB1597AF7D701DD872EACA726FBBBC6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(IntPtr_t_il2cpp_TypeInfo_var, &___managerClient0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void AntiAddictionSDK.iOS.ManagerClient/ZAASDKCompletedCallback::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZAASDKCompletedCallback_EndInvoke_m2BD05465B3E4A198D39A9ACB7696D1954295892B (ZAASDKCompletedCallback_t3D65424BA56AEA3F625DBD33E9126DA7ABB8B4F2 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void AntiAddictionSDK.iOS.MonoPInvokeCallbackAttribute::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoPInvokeCallbackAttribute__ctor_m528458EB7899306FE47144AF01E0F54F838E3FF5 (MonoPInvokeCallbackAttribute_tC3C01454A98F0E9B71B6E4A8DCD89A9D070F86CA * __this, Type_t * ___type0, const RuntimeMethod* method)
{
{
// public MonoPInvokeCallbackAttribute(Type type) { }
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
// public MonoPInvokeCallbackAttribute(Type type) { }
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif