1#[cfg(feature = "app-exptable-types")]
4mod __types {
5 #[allow(unused_imports)] use ::unity::prelude::*;
6
7 use super::*;
8 use crate::{
9 app::{
10 calculatorcommand::{CalculatorCommand, ICalculatorCommand},
11 gamecalculatorcommand::{GameCalculatorCommand, IGameCalculatorCommand},
12 structbase::{IStructBase, StructBase},
13 structdata_1::{IStructData_1, StructData_1},
14 structtemplate_1::{IStructTemplate_1, StructTemplate_1},
15 },
16 system::object::{IObject, Object},
17 };
18
19 #[doc=include_str!(concat!(env!("CARGO_MANIFEST_DIR"),"/","docs/app/exptable/ExpTable.md"))]
20 #[::unity::class(namespace = "App", name = "ExpTable")]
21 #[parent(crate::app::structdata_1::StructData_1<crate::app::exptable::ExpTable>)]
22 pub struct ExpTable {
23 #[static_field]
24 #[rename(name = "Min")]
25 pub min: i32,
26 #[static_field]
27 #[rename(name = "Max")]
28 pub max: i32,
29 #[static_field]
30 #[rename(name = "Num")]
31 pub num: i32,
32 #[offset(368)]
33 #[rename(name = "m_Table")]
34 pub m_table: crate::app::calculatortable::CalculatorTable,
35 }
36
37 #[doc=include_str!(concat!(env!("CARGO_MANIFEST_DIR"),"/","docs/app/exptable/ExpTable_TableCommand.md"))]
38 #[::unity::class(namespace = "App", name = "ExpTable.TableCommand")]
39 #[parent(crate::app::gamecalculatorcommand::GameCalculatorCommand)]
40 pub struct ExpTable_TableCommand {
41 #[offset(48)]
42 #[rename(name = "m_Name")]
43 pub m_name: ::unity::Il2CppString,
44 }
45}
46
47#[cfg(feature = "app-exptable-types")]
48pub use __types::*;
49
50#[cfg(feature = "app-exptable")]
51impl ExpTable {
52 #[doc = "`Load()` overload"]
53 pub fn load() -> () {
54 unsafe {
55 ::unity::il2cpp_call!((::unity::module_base()+0x24e9220usize)as*mut u8,();
56 )
57 }
58 }
59
60 #[doc = "`GetResult(::unity::Il2CppString, i32)` overload"]
61 pub fn get_result(name: impl ::core::convert::Into<::unity::Il2CppString>, value: impl ::core::convert::Into<i32>) -> i32 {
62 unsafe {
63 ::unity::il2cpp_call!((::unity::module_base()+0x24e9d10usize)as*mut u8,i32;
64(::unity::Il2CppString)::core::convert::Into::into(name),(i32)::core::convert::Into::into(value))
65 }
66 }
67}
68
69#[cfg(feature = "app-exptable")]
70pub trait IExpTableMethods: IExpTable {
71 #[doc = "`get_Name()` overload"]
72 fn get_name(self) -> ::unity::Il2CppString {
73 unsafe {
74 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
75 ::unity::il2cpp_call!((::unity::module_base()+0x24e92d0usize)as*mut u8, ::unity::Il2CppString;
76(ExpTable)__receiver)
77 }
78 }
79 #[doc = "`set_Name(::unity::Il2CppString)` overload"]
80 fn set_name(self, value: impl ::core::convert::Into<::unity::Il2CppString>) -> () {
81 unsafe {
82 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
83 ::unity::il2cpp_call!((::unity::module_base()+0x24e92e0usize)as*mut u8,();
84(ExpTable)__receiver,(::unity::Il2CppString)::core::convert::Into::into(value))
85 }
86 }
87 #[doc = "`get_M39()` overload"]
88 fn get_m39(self) -> i32 {
89 unsafe {
90 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
91 ::unity::il2cpp_call!((::unity::module_base()+0x24e92f0usize)as*mut u8,i32;
92(ExpTable)__receiver)
93 }
94 }
95 #[doc = "`set_M39(i32)` overload"]
96 fn set_m39(self, value: impl ::core::convert::Into<i32>) -> () {
97 unsafe {
98 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
99 ::unity::il2cpp_call!((::unity::module_base()+0x24e9300usize)as*mut u8,();
100(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
101 }
102 }
103 #[doc = "`get_M38()` overload"]
104 fn get_m38(self) -> i32 {
105 unsafe {
106 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
107 ::unity::il2cpp_call!((::unity::module_base()+0x24e9310usize)as*mut u8,i32;
108(ExpTable)__receiver)
109 }
110 }
111 #[doc = "`set_M38(i32)` overload"]
112 fn set_m38(self, value: impl ::core::convert::Into<i32>) -> () {
113 unsafe {
114 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
115 ::unity::il2cpp_call!((::unity::module_base()+0x24e9320usize)as*mut u8,();
116(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
117 }
118 }
119 #[doc = "`get_M37()` overload"]
120 fn get_m37(self) -> i32 {
121 unsafe {
122 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
123 ::unity::il2cpp_call!((::unity::module_base()+0x24e9330usize)as*mut u8,i32;
124(ExpTable)__receiver)
125 }
126 }
127 #[doc = "`set_M37(i32)` overload"]
128 fn set_m37(self, value: impl ::core::convert::Into<i32>) -> () {
129 unsafe {
130 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
131 ::unity::il2cpp_call!((::unity::module_base()+0x24e9340usize)as*mut u8,();
132(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
133 }
134 }
135 #[doc = "`get_M36()` overload"]
136 fn get_m36(self) -> i32 {
137 unsafe {
138 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
139 ::unity::il2cpp_call!((::unity::module_base()+0x24e9350usize)as*mut u8,i32;
140(ExpTable)__receiver)
141 }
142 }
143 #[doc = "`set_M36(i32)` overload"]
144 fn set_m36(self, value: impl ::core::convert::Into<i32>) -> () {
145 unsafe {
146 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
147 ::unity::il2cpp_call!((::unity::module_base()+0x24e9360usize)as*mut u8,();
148(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
149 }
150 }
151 #[doc = "`get_M35()` overload"]
152 fn get_m35(self) -> i32 {
153 unsafe {
154 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
155 ::unity::il2cpp_call!((::unity::module_base()+0x24e9370usize)as*mut u8,i32;
156(ExpTable)__receiver)
157 }
158 }
159 #[doc = "`set_M35(i32)` overload"]
160 fn set_m35(self, value: impl ::core::convert::Into<i32>) -> () {
161 unsafe {
162 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
163 ::unity::il2cpp_call!((::unity::module_base()+0x24e9380usize)as*mut u8,();
164(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
165 }
166 }
167 #[doc = "`get_M34()` overload"]
168 fn get_m34(self) -> i32 {
169 unsafe {
170 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
171 ::unity::il2cpp_call!((::unity::module_base()+0x24e9390usize)as*mut u8,i32;
172(ExpTable)__receiver)
173 }
174 }
175 #[doc = "`set_M34(i32)` overload"]
176 fn set_m34(self, value: impl ::core::convert::Into<i32>) -> () {
177 unsafe {
178 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
179 ::unity::il2cpp_call!((::unity::module_base()+0x24e93a0usize)as*mut u8,();
180(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
181 }
182 }
183 #[doc = "`get_M33()` overload"]
184 fn get_m33(self) -> i32 {
185 unsafe {
186 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
187 ::unity::il2cpp_call!((::unity::module_base()+0x24e93b0usize)as*mut u8,i32;
188(ExpTable)__receiver)
189 }
190 }
191 #[doc = "`set_M33(i32)` overload"]
192 fn set_m33(self, value: impl ::core::convert::Into<i32>) -> () {
193 unsafe {
194 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
195 ::unity::il2cpp_call!((::unity::module_base()+0x24e93c0usize)as*mut u8,();
196(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
197 }
198 }
199 #[doc = "`get_M32()` overload"]
200 fn get_m32(self) -> i32 {
201 unsafe {
202 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
203 ::unity::il2cpp_call!((::unity::module_base()+0x24e93d0usize)as*mut u8,i32;
204(ExpTable)__receiver)
205 }
206 }
207 #[doc = "`set_M32(i32)` overload"]
208 fn set_m32(self, value: impl ::core::convert::Into<i32>) -> () {
209 unsafe {
210 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
211 ::unity::il2cpp_call!((::unity::module_base()+0x24e93e0usize)as*mut u8,();
212(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
213 }
214 }
215 #[doc = "`get_M31()` overload"]
216 fn get_m31(self) -> i32 {
217 unsafe {
218 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
219 ::unity::il2cpp_call!((::unity::module_base()+0x24e93f0usize)as*mut u8,i32;
220(ExpTable)__receiver)
221 }
222 }
223 #[doc = "`set_M31(i32)` overload"]
224 fn set_m31(self, value: impl ::core::convert::Into<i32>) -> () {
225 unsafe {
226 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
227 ::unity::il2cpp_call!((::unity::module_base()+0x24e9400usize)as*mut u8,();
228(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
229 }
230 }
231 #[doc = "`get_M30()` overload"]
232 fn get_m30(self) -> i32 {
233 unsafe {
234 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
235 ::unity::il2cpp_call!((::unity::module_base()+0x24e9410usize)as*mut u8,i32;
236(ExpTable)__receiver)
237 }
238 }
239 #[doc = "`set_M30(i32)` overload"]
240 fn set_m30(self, value: impl ::core::convert::Into<i32>) -> () {
241 unsafe {
242 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
243 ::unity::il2cpp_call!((::unity::module_base()+0x24e9420usize)as*mut u8,();
244(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
245 }
246 }
247 #[doc = "`get_M29()` overload"]
248 fn get_m29(self) -> i32 {
249 unsafe {
250 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
251 ::unity::il2cpp_call!((::unity::module_base()+0x24e9430usize)as*mut u8,i32;
252(ExpTable)__receiver)
253 }
254 }
255 #[doc = "`set_M29(i32)` overload"]
256 fn set_m29(self, value: impl ::core::convert::Into<i32>) -> () {
257 unsafe {
258 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
259 ::unity::il2cpp_call!((::unity::module_base()+0x24e9440usize)as*mut u8,();
260(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
261 }
262 }
263 #[doc = "`get_M28()` overload"]
264 fn get_m28(self) -> i32 {
265 unsafe {
266 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
267 ::unity::il2cpp_call!((::unity::module_base()+0x24e9450usize)as*mut u8,i32;
268(ExpTable)__receiver)
269 }
270 }
271 #[doc = "`set_M28(i32)` overload"]
272 fn set_m28(self, value: impl ::core::convert::Into<i32>) -> () {
273 unsafe {
274 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
275 ::unity::il2cpp_call!((::unity::module_base()+0x24e9460usize)as*mut u8,();
276(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
277 }
278 }
279 #[doc = "`get_M27()` overload"]
280 fn get_m27(self) -> i32 {
281 unsafe {
282 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
283 ::unity::il2cpp_call!((::unity::module_base()+0x24e9470usize)as*mut u8,i32;
284(ExpTable)__receiver)
285 }
286 }
287 #[doc = "`set_M27(i32)` overload"]
288 fn set_m27(self, value: impl ::core::convert::Into<i32>) -> () {
289 unsafe {
290 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
291 ::unity::il2cpp_call!((::unity::module_base()+0x24e9480usize)as*mut u8,();
292(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
293 }
294 }
295 #[doc = "`get_M26()` overload"]
296 fn get_m26(self) -> i32 {
297 unsafe {
298 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
299 ::unity::il2cpp_call!((::unity::module_base()+0x24e9490usize)as*mut u8,i32;
300(ExpTable)__receiver)
301 }
302 }
303 #[doc = "`set_M26(i32)` overload"]
304 fn set_m26(self, value: impl ::core::convert::Into<i32>) -> () {
305 unsafe {
306 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
307 ::unity::il2cpp_call!((::unity::module_base()+0x24e94a0usize)as*mut u8,();
308(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
309 }
310 }
311 #[doc = "`get_M25()` overload"]
312 fn get_m25(self) -> i32 {
313 unsafe {
314 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
315 ::unity::il2cpp_call!((::unity::module_base()+0x24e94b0usize)as*mut u8,i32;
316(ExpTable)__receiver)
317 }
318 }
319 #[doc = "`set_M25(i32)` overload"]
320 fn set_m25(self, value: impl ::core::convert::Into<i32>) -> () {
321 unsafe {
322 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
323 ::unity::il2cpp_call!((::unity::module_base()+0x24e94c0usize)as*mut u8,();
324(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
325 }
326 }
327 #[doc = "`get_M24()` overload"]
328 fn get_m24(self) -> i32 {
329 unsafe {
330 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
331 ::unity::il2cpp_call!((::unity::module_base()+0x24e94d0usize)as*mut u8,i32;
332(ExpTable)__receiver)
333 }
334 }
335 #[doc = "`set_M24(i32)` overload"]
336 fn set_m24(self, value: impl ::core::convert::Into<i32>) -> () {
337 unsafe {
338 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
339 ::unity::il2cpp_call!((::unity::module_base()+0x24e94e0usize)as*mut u8,();
340(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
341 }
342 }
343 #[doc = "`get_M23()` overload"]
344 fn get_m23(self) -> i32 {
345 unsafe {
346 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
347 ::unity::il2cpp_call!((::unity::module_base()+0x24e94f0usize)as*mut u8,i32;
348(ExpTable)__receiver)
349 }
350 }
351 #[doc = "`set_M23(i32)` overload"]
352 fn set_m23(self, value: impl ::core::convert::Into<i32>) -> () {
353 unsafe {
354 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
355 ::unity::il2cpp_call!((::unity::module_base()+0x24e9500usize)as*mut u8,();
356(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
357 }
358 }
359 #[doc = "`get_M22()` overload"]
360 fn get_m22(self) -> i32 {
361 unsafe {
362 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
363 ::unity::il2cpp_call!((::unity::module_base()+0x24e9510usize)as*mut u8,i32;
364(ExpTable)__receiver)
365 }
366 }
367 #[doc = "`set_M22(i32)` overload"]
368 fn set_m22(self, value: impl ::core::convert::Into<i32>) -> () {
369 unsafe {
370 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
371 ::unity::il2cpp_call!((::unity::module_base()+0x24e9520usize)as*mut u8,();
372(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
373 }
374 }
375 #[doc = "`get_M21()` overload"]
376 fn get_m21(self) -> i32 {
377 unsafe {
378 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
379 ::unity::il2cpp_call!((::unity::module_base()+0x24e9530usize)as*mut u8,i32;
380(ExpTable)__receiver)
381 }
382 }
383 #[doc = "`set_M21(i32)` overload"]
384 fn set_m21(self, value: impl ::core::convert::Into<i32>) -> () {
385 unsafe {
386 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
387 ::unity::il2cpp_call!((::unity::module_base()+0x24e9540usize)as*mut u8,();
388(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
389 }
390 }
391 #[doc = "`get_M20()` overload"]
392 fn get_m20(self) -> i32 {
393 unsafe {
394 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
395 ::unity::il2cpp_call!((::unity::module_base()+0x24e9550usize)as*mut u8,i32;
396(ExpTable)__receiver)
397 }
398 }
399 #[doc = "`set_M20(i32)` overload"]
400 fn set_m20(self, value: impl ::core::convert::Into<i32>) -> () {
401 unsafe {
402 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
403 ::unity::il2cpp_call!((::unity::module_base()+0x24e9560usize)as*mut u8,();
404(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
405 }
406 }
407 #[doc = "`get_M19()` overload"]
408 fn get_m19(self) -> i32 {
409 unsafe {
410 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
411 ::unity::il2cpp_call!((::unity::module_base()+0x24e9570usize)as*mut u8,i32;
412(ExpTable)__receiver)
413 }
414 }
415 #[doc = "`set_M19(i32)` overload"]
416 fn set_m19(self, value: impl ::core::convert::Into<i32>) -> () {
417 unsafe {
418 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
419 ::unity::il2cpp_call!((::unity::module_base()+0x24e9580usize)as*mut u8,();
420(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
421 }
422 }
423 #[doc = "`get_M18()` overload"]
424 fn get_m18(self) -> i32 {
425 unsafe {
426 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
427 ::unity::il2cpp_call!((::unity::module_base()+0x24e9590usize)as*mut u8,i32;
428(ExpTable)__receiver)
429 }
430 }
431 #[doc = "`set_M18(i32)` overload"]
432 fn set_m18(self, value: impl ::core::convert::Into<i32>) -> () {
433 unsafe {
434 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
435 ::unity::il2cpp_call!((::unity::module_base()+0x24e95a0usize)as*mut u8,();
436(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
437 }
438 }
439 #[doc = "`get_M17()` overload"]
440 fn get_m17(self) -> i32 {
441 unsafe {
442 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
443 ::unity::il2cpp_call!((::unity::module_base()+0x24e95b0usize)as*mut u8,i32;
444(ExpTable)__receiver)
445 }
446 }
447 #[doc = "`set_M17(i32)` overload"]
448 fn set_m17(self, value: impl ::core::convert::Into<i32>) -> () {
449 unsafe {
450 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
451 ::unity::il2cpp_call!((::unity::module_base()+0x24e95c0usize)as*mut u8,();
452(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
453 }
454 }
455 #[doc = "`get_M16()` overload"]
456 fn get_m16(self) -> i32 {
457 unsafe {
458 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
459 ::unity::il2cpp_call!((::unity::module_base()+0x24e95d0usize)as*mut u8,i32;
460(ExpTable)__receiver)
461 }
462 }
463 #[doc = "`set_M16(i32)` overload"]
464 fn set_m16(self, value: impl ::core::convert::Into<i32>) -> () {
465 unsafe {
466 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
467 ::unity::il2cpp_call!((::unity::module_base()+0x24e95e0usize)as*mut u8,();
468(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
469 }
470 }
471 #[doc = "`get_M15()` overload"]
472 fn get_m15(self) -> i32 {
473 unsafe {
474 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
475 ::unity::il2cpp_call!((::unity::module_base()+0x24e95f0usize)as*mut u8,i32;
476(ExpTable)__receiver)
477 }
478 }
479 #[doc = "`set_M15(i32)` overload"]
480 fn set_m15(self, value: impl ::core::convert::Into<i32>) -> () {
481 unsafe {
482 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
483 ::unity::il2cpp_call!((::unity::module_base()+0x24e9600usize)as*mut u8,();
484(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
485 }
486 }
487 #[doc = "`get_M14()` overload"]
488 fn get_m14(self) -> i32 {
489 unsafe {
490 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
491 ::unity::il2cpp_call!((::unity::module_base()+0x24e9610usize)as*mut u8,i32;
492(ExpTable)__receiver)
493 }
494 }
495 #[doc = "`set_M14(i32)` overload"]
496 fn set_m14(self, value: impl ::core::convert::Into<i32>) -> () {
497 unsafe {
498 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
499 ::unity::il2cpp_call!((::unity::module_base()+0x24e9620usize)as*mut u8,();
500(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
501 }
502 }
503 #[doc = "`get_M13()` overload"]
504 fn get_m13(self) -> i32 {
505 unsafe {
506 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
507 ::unity::il2cpp_call!((::unity::module_base()+0x24e9630usize)as*mut u8,i32;
508(ExpTable)__receiver)
509 }
510 }
511 #[doc = "`set_M13(i32)` overload"]
512 fn set_m13(self, value: impl ::core::convert::Into<i32>) -> () {
513 unsafe {
514 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
515 ::unity::il2cpp_call!((::unity::module_base()+0x24e9640usize)as*mut u8,();
516(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
517 }
518 }
519 #[doc = "`get_M12()` overload"]
520 fn get_m12(self) -> i32 {
521 unsafe {
522 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
523 ::unity::il2cpp_call!((::unity::module_base()+0x24e9650usize)as*mut u8,i32;
524(ExpTable)__receiver)
525 }
526 }
527 #[doc = "`set_M12(i32)` overload"]
528 fn set_m12(self, value: impl ::core::convert::Into<i32>) -> () {
529 unsafe {
530 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
531 ::unity::il2cpp_call!((::unity::module_base()+0x24e9660usize)as*mut u8,();
532(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
533 }
534 }
535 #[doc = "`get_M11()` overload"]
536 fn get_m11(self) -> i32 {
537 unsafe {
538 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
539 ::unity::il2cpp_call!((::unity::module_base()+0x24e9670usize)as*mut u8,i32;
540(ExpTable)__receiver)
541 }
542 }
543 #[doc = "`set_M11(i32)` overload"]
544 fn set_m11(self, value: impl ::core::convert::Into<i32>) -> () {
545 unsafe {
546 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
547 ::unity::il2cpp_call!((::unity::module_base()+0x24e9680usize)as*mut u8,();
548(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
549 }
550 }
551 #[doc = "`get_M10()` overload"]
552 fn get_m10(self) -> i32 {
553 unsafe {
554 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
555 ::unity::il2cpp_call!((::unity::module_base()+0x24e9690usize)as*mut u8,i32;
556(ExpTable)__receiver)
557 }
558 }
559 #[doc = "`set_M10(i32)` overload"]
560 fn set_m10(self, value: impl ::core::convert::Into<i32>) -> () {
561 unsafe {
562 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
563 ::unity::il2cpp_call!((::unity::module_base()+0x24e96a0usize)as*mut u8,();
564(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
565 }
566 }
567 #[doc = "`get_M09()` overload"]
568 fn get_m09(self) -> i32 {
569 unsafe {
570 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
571 ::unity::il2cpp_call!((::unity::module_base()+0x24e96b0usize)as*mut u8,i32;
572(ExpTable)__receiver)
573 }
574 }
575 #[doc = "`set_M09(i32)` overload"]
576 fn set_m09(self, value: impl ::core::convert::Into<i32>) -> () {
577 unsafe {
578 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
579 ::unity::il2cpp_call!((::unity::module_base()+0x24e96c0usize)as*mut u8,();
580(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
581 }
582 }
583 #[doc = "`get_M08()` overload"]
584 fn get_m08(self) -> i32 {
585 unsafe {
586 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
587 ::unity::il2cpp_call!((::unity::module_base()+0x24e96d0usize)as*mut u8,i32;
588(ExpTable)__receiver)
589 }
590 }
591 #[doc = "`set_M08(i32)` overload"]
592 fn set_m08(self, value: impl ::core::convert::Into<i32>) -> () {
593 unsafe {
594 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
595 ::unity::il2cpp_call!((::unity::module_base()+0x24e96e0usize)as*mut u8,();
596(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
597 }
598 }
599 #[doc = "`get_M07()` overload"]
600 fn get_m07(self) -> i32 {
601 unsafe {
602 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
603 ::unity::il2cpp_call!((::unity::module_base()+0x24e96f0usize)as*mut u8,i32;
604(ExpTable)__receiver)
605 }
606 }
607 #[doc = "`set_M07(i32)` overload"]
608 fn set_m07(self, value: impl ::core::convert::Into<i32>) -> () {
609 unsafe {
610 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
611 ::unity::il2cpp_call!((::unity::module_base()+0x24e9700usize)as*mut u8,();
612(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
613 }
614 }
615 #[doc = "`get_M06()` overload"]
616 fn get_m06(self) -> i32 {
617 unsafe {
618 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
619 ::unity::il2cpp_call!((::unity::module_base()+0x24e9710usize)as*mut u8,i32;
620(ExpTable)__receiver)
621 }
622 }
623 #[doc = "`set_M06(i32)` overload"]
624 fn set_m06(self, value: impl ::core::convert::Into<i32>) -> () {
625 unsafe {
626 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
627 ::unity::il2cpp_call!((::unity::module_base()+0x24e9720usize)as*mut u8,();
628(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
629 }
630 }
631 #[doc = "`get_M05()` overload"]
632 fn get_m05(self) -> i32 {
633 unsafe {
634 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
635 ::unity::il2cpp_call!((::unity::module_base()+0x24e9730usize)as*mut u8,i32;
636(ExpTable)__receiver)
637 }
638 }
639 #[doc = "`set_M05(i32)` overload"]
640 fn set_m05(self, value: impl ::core::convert::Into<i32>) -> () {
641 unsafe {
642 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
643 ::unity::il2cpp_call!((::unity::module_base()+0x24e9740usize)as*mut u8,();
644(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
645 }
646 }
647 #[doc = "`get_M04()` overload"]
648 fn get_m04(self) -> i32 {
649 unsafe {
650 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
651 ::unity::il2cpp_call!((::unity::module_base()+0x24e9750usize)as*mut u8,i32;
652(ExpTable)__receiver)
653 }
654 }
655 #[doc = "`set_M04(i32)` overload"]
656 fn set_m04(self, value: impl ::core::convert::Into<i32>) -> () {
657 unsafe {
658 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
659 ::unity::il2cpp_call!((::unity::module_base()+0x24e9760usize)as*mut u8,();
660(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
661 }
662 }
663 #[doc = "`get_M03()` overload"]
664 fn get_m03(self) -> i32 {
665 unsafe {
666 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
667 ::unity::il2cpp_call!((::unity::module_base()+0x24e9770usize)as*mut u8,i32;
668(ExpTable)__receiver)
669 }
670 }
671 #[doc = "`set_M03(i32)` overload"]
672 fn set_m03(self, value: impl ::core::convert::Into<i32>) -> () {
673 unsafe {
674 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
675 ::unity::il2cpp_call!((::unity::module_base()+0x24e9780usize)as*mut u8,();
676(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
677 }
678 }
679 #[doc = "`get_M02()` overload"]
680 fn get_m02(self) -> i32 {
681 unsafe {
682 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
683 ::unity::il2cpp_call!((::unity::module_base()+0x24e9790usize)as*mut u8,i32;
684(ExpTable)__receiver)
685 }
686 }
687 #[doc = "`set_M02(i32)` overload"]
688 fn set_m02(self, value: impl ::core::convert::Into<i32>) -> () {
689 unsafe {
690 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
691 ::unity::il2cpp_call!((::unity::module_base()+0x24e97a0usize)as*mut u8,();
692(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
693 }
694 }
695 #[doc = "`get_M01()` overload"]
696 fn get_m01(self) -> i32 {
697 unsafe {
698 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
699 ::unity::il2cpp_call!((::unity::module_base()+0x24e97b0usize)as*mut u8,i32;
700(ExpTable)__receiver)
701 }
702 }
703 #[doc = "`set_M01(i32)` overload"]
704 fn set_m01(self, value: impl ::core::convert::Into<i32>) -> () {
705 unsafe {
706 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
707 ::unity::il2cpp_call!((::unity::module_base()+0x24e97c0usize)as*mut u8,();
708(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
709 }
710 }
711 #[doc = "`get_N00()` overload"]
712 fn get_n00(self) -> i32 {
713 unsafe {
714 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
715 ::unity::il2cpp_call!((::unity::module_base()+0x24e97d0usize)as*mut u8,i32;
716(ExpTable)__receiver)
717 }
718 }
719 #[doc = "`set_N00(i32)` overload"]
720 fn set_n00(self, value: impl ::core::convert::Into<i32>) -> () {
721 unsafe {
722 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
723 ::unity::il2cpp_call!((::unity::module_base()+0x24e97e0usize)as*mut u8,();
724(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
725 }
726 }
727 #[doc = "`get_P00()` overload"]
728 fn get_p00(self) -> i32 {
729 unsafe {
730 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
731 ::unity::il2cpp_call!((::unity::module_base()+0x24e97f0usize)as*mut u8,i32;
732(ExpTable)__receiver)
733 }
734 }
735 #[doc = "`set_P00(i32)` overload"]
736 fn set_p00(self, value: impl ::core::convert::Into<i32>) -> () {
737 unsafe {
738 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
739 ::unity::il2cpp_call!((::unity::module_base()+0x24e9800usize)as*mut u8,();
740(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
741 }
742 }
743 #[doc = "`get_P01()` overload"]
744 fn get_p01(self) -> i32 {
745 unsafe {
746 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
747 ::unity::il2cpp_call!((::unity::module_base()+0x24e9810usize)as*mut u8,i32;
748(ExpTable)__receiver)
749 }
750 }
751 #[doc = "`set_P01(i32)` overload"]
752 fn set_p01(self, value: impl ::core::convert::Into<i32>) -> () {
753 unsafe {
754 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
755 ::unity::il2cpp_call!((::unity::module_base()+0x24e9820usize)as*mut u8,();
756(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
757 }
758 }
759 #[doc = "`get_P02()` overload"]
760 fn get_p02(self) -> i32 {
761 unsafe {
762 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
763 ::unity::il2cpp_call!((::unity::module_base()+0x24e9830usize)as*mut u8,i32;
764(ExpTable)__receiver)
765 }
766 }
767 #[doc = "`set_P02(i32)` overload"]
768 fn set_p02(self, value: impl ::core::convert::Into<i32>) -> () {
769 unsafe {
770 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
771 ::unity::il2cpp_call!((::unity::module_base()+0x24e9840usize)as*mut u8,();
772(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
773 }
774 }
775 #[doc = "`get_P03()` overload"]
776 fn get_p03(self) -> i32 {
777 unsafe {
778 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
779 ::unity::il2cpp_call!((::unity::module_base()+0x24e9850usize)as*mut u8,i32;
780(ExpTable)__receiver)
781 }
782 }
783 #[doc = "`set_P03(i32)` overload"]
784 fn set_p03(self, value: impl ::core::convert::Into<i32>) -> () {
785 unsafe {
786 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
787 ::unity::il2cpp_call!((::unity::module_base()+0x24e9860usize)as*mut u8,();
788(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
789 }
790 }
791 #[doc = "`get_P04()` overload"]
792 fn get_p04(self) -> i32 {
793 unsafe {
794 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
795 ::unity::il2cpp_call!((::unity::module_base()+0x24e9870usize)as*mut u8,i32;
796(ExpTable)__receiver)
797 }
798 }
799 #[doc = "`set_P04(i32)` overload"]
800 fn set_p04(self, value: impl ::core::convert::Into<i32>) -> () {
801 unsafe {
802 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
803 ::unity::il2cpp_call!((::unity::module_base()+0x24e9880usize)as*mut u8,();
804(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
805 }
806 }
807 #[doc = "`get_P05()` overload"]
808 fn get_p05(self) -> i32 {
809 unsafe {
810 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
811 ::unity::il2cpp_call!((::unity::module_base()+0x24e9890usize)as*mut u8,i32;
812(ExpTable)__receiver)
813 }
814 }
815 #[doc = "`set_P05(i32)` overload"]
816 fn set_p05(self, value: impl ::core::convert::Into<i32>) -> () {
817 unsafe {
818 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
819 ::unity::il2cpp_call!((::unity::module_base()+0x24e98a0usize)as*mut u8,();
820(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
821 }
822 }
823 #[doc = "`get_P06()` overload"]
824 fn get_p06(self) -> i32 {
825 unsafe {
826 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
827 ::unity::il2cpp_call!((::unity::module_base()+0x24e98b0usize)as*mut u8,i32;
828(ExpTable)__receiver)
829 }
830 }
831 #[doc = "`set_P06(i32)` overload"]
832 fn set_p06(self, value: impl ::core::convert::Into<i32>) -> () {
833 unsafe {
834 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
835 ::unity::il2cpp_call!((::unity::module_base()+0x24e98c0usize)as*mut u8,();
836(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
837 }
838 }
839 #[doc = "`get_P07()` overload"]
840 fn get_p07(self) -> i32 {
841 unsafe {
842 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
843 ::unity::il2cpp_call!((::unity::module_base()+0x24e98d0usize)as*mut u8,i32;
844(ExpTable)__receiver)
845 }
846 }
847 #[doc = "`set_P07(i32)` overload"]
848 fn set_p07(self, value: impl ::core::convert::Into<i32>) -> () {
849 unsafe {
850 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
851 ::unity::il2cpp_call!((::unity::module_base()+0x24e98e0usize)as*mut u8,();
852(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
853 }
854 }
855 #[doc = "`get_P08()` overload"]
856 fn get_p08(self) -> i32 {
857 unsafe {
858 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
859 ::unity::il2cpp_call!((::unity::module_base()+0x24e98f0usize)as*mut u8,i32;
860(ExpTable)__receiver)
861 }
862 }
863 #[doc = "`set_P08(i32)` overload"]
864 fn set_p08(self, value: impl ::core::convert::Into<i32>) -> () {
865 unsafe {
866 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
867 ::unity::il2cpp_call!((::unity::module_base()+0x24e9900usize)as*mut u8,();
868(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
869 }
870 }
871 #[doc = "`get_P09()` overload"]
872 fn get_p09(self) -> i32 {
873 unsafe {
874 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
875 ::unity::il2cpp_call!((::unity::module_base()+0x24e9910usize)as*mut u8,i32;
876(ExpTable)__receiver)
877 }
878 }
879 #[doc = "`set_P09(i32)` overload"]
880 fn set_p09(self, value: impl ::core::convert::Into<i32>) -> () {
881 unsafe {
882 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
883 ::unity::il2cpp_call!((::unity::module_base()+0x24e9920usize)as*mut u8,();
884(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
885 }
886 }
887 #[doc = "`get_P10()` overload"]
888 fn get_p10(self) -> i32 {
889 unsafe {
890 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
891 ::unity::il2cpp_call!((::unity::module_base()+0x24e9930usize)as*mut u8,i32;
892(ExpTable)__receiver)
893 }
894 }
895 #[doc = "`set_P10(i32)` overload"]
896 fn set_p10(self, value: impl ::core::convert::Into<i32>) -> () {
897 unsafe {
898 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
899 ::unity::il2cpp_call!((::unity::module_base()+0x24e9940usize)as*mut u8,();
900(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
901 }
902 }
903 #[doc = "`get_P11()` overload"]
904 fn get_p11(self) -> i32 {
905 unsafe {
906 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
907 ::unity::il2cpp_call!((::unity::module_base()+0x24e9950usize)as*mut u8,i32;
908(ExpTable)__receiver)
909 }
910 }
911 #[doc = "`set_P11(i32)` overload"]
912 fn set_p11(self, value: impl ::core::convert::Into<i32>) -> () {
913 unsafe {
914 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
915 ::unity::il2cpp_call!((::unity::module_base()+0x24e9960usize)as*mut u8,();
916(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
917 }
918 }
919 #[doc = "`get_P12()` overload"]
920 fn get_p12(self) -> i32 {
921 unsafe {
922 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
923 ::unity::il2cpp_call!((::unity::module_base()+0x24e9970usize)as*mut u8,i32;
924(ExpTable)__receiver)
925 }
926 }
927 #[doc = "`set_P12(i32)` overload"]
928 fn set_p12(self, value: impl ::core::convert::Into<i32>) -> () {
929 unsafe {
930 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
931 ::unity::il2cpp_call!((::unity::module_base()+0x24e9980usize)as*mut u8,();
932(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
933 }
934 }
935 #[doc = "`get_P13()` overload"]
936 fn get_p13(self) -> i32 {
937 unsafe {
938 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
939 ::unity::il2cpp_call!((::unity::module_base()+0x24e9990usize)as*mut u8,i32;
940(ExpTable)__receiver)
941 }
942 }
943 #[doc = "`set_P13(i32)` overload"]
944 fn set_p13(self, value: impl ::core::convert::Into<i32>) -> () {
945 unsafe {
946 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
947 ::unity::il2cpp_call!((::unity::module_base()+0x24e99a0usize)as*mut u8,();
948(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
949 }
950 }
951 #[doc = "`get_P14()` overload"]
952 fn get_p14(self) -> i32 {
953 unsafe {
954 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
955 ::unity::il2cpp_call!((::unity::module_base()+0x24e99b0usize)as*mut u8,i32;
956(ExpTable)__receiver)
957 }
958 }
959 #[doc = "`set_P14(i32)` overload"]
960 fn set_p14(self, value: impl ::core::convert::Into<i32>) -> () {
961 unsafe {
962 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
963 ::unity::il2cpp_call!((::unity::module_base()+0x24e99c0usize)as*mut u8,();
964(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
965 }
966 }
967 #[doc = "`get_P15()` overload"]
968 fn get_p15(self) -> i32 {
969 unsafe {
970 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
971 ::unity::il2cpp_call!((::unity::module_base()+0x24e99d0usize)as*mut u8,i32;
972(ExpTable)__receiver)
973 }
974 }
975 #[doc = "`set_P15(i32)` overload"]
976 fn set_p15(self, value: impl ::core::convert::Into<i32>) -> () {
977 unsafe {
978 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
979 ::unity::il2cpp_call!((::unity::module_base()+0x24e99e0usize)as*mut u8,();
980(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
981 }
982 }
983 #[doc = "`get_P16()` overload"]
984 fn get_p16(self) -> i32 {
985 unsafe {
986 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
987 ::unity::il2cpp_call!((::unity::module_base()+0x24e99f0usize)as*mut u8,i32;
988(ExpTable)__receiver)
989 }
990 }
991 #[doc = "`set_P16(i32)` overload"]
992 fn set_p16(self, value: impl ::core::convert::Into<i32>) -> () {
993 unsafe {
994 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
995 ::unity::il2cpp_call!((::unity::module_base()+0x24e9a00usize)as*mut u8,();
996(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
997 }
998 }
999 #[doc = "`get_P17()` overload"]
1000 fn get_p17(self) -> i32 {
1001 unsafe {
1002 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1003 ::unity::il2cpp_call!((::unity::module_base()+0x24e9a10usize)as*mut u8,i32;
1004(ExpTable)__receiver)
1005 }
1006 }
1007 #[doc = "`set_P17(i32)` overload"]
1008 fn set_p17(self, value: impl ::core::convert::Into<i32>) -> () {
1009 unsafe {
1010 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1011 ::unity::il2cpp_call!((::unity::module_base()+0x24e9a20usize)as*mut u8,();
1012(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
1013 }
1014 }
1015 #[doc = "`get_P18()` overload"]
1016 fn get_p18(self) -> i32 {
1017 unsafe {
1018 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1019 ::unity::il2cpp_call!((::unity::module_base()+0x24e9a30usize)as*mut u8,i32;
1020(ExpTable)__receiver)
1021 }
1022 }
1023 #[doc = "`set_P18(i32)` overload"]
1024 fn set_p18(self, value: impl ::core::convert::Into<i32>) -> () {
1025 unsafe {
1026 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1027 ::unity::il2cpp_call!((::unity::module_base()+0x24e9a40usize)as*mut u8,();
1028(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
1029 }
1030 }
1031 #[doc = "`get_P19()` overload"]
1032 fn get_p19(self) -> i32 {
1033 unsafe {
1034 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1035 ::unity::il2cpp_call!((::unity::module_base()+0x24e9a50usize)as*mut u8,i32;
1036(ExpTable)__receiver)
1037 }
1038 }
1039 #[doc = "`set_P19(i32)` overload"]
1040 fn set_p19(self, value: impl ::core::convert::Into<i32>) -> () {
1041 unsafe {
1042 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1043 ::unity::il2cpp_call!((::unity::module_base()+0x24e9a60usize)as*mut u8,();
1044(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
1045 }
1046 }
1047 #[doc = "`get_P20()` overload"]
1048 fn get_p20(self) -> i32 {
1049 unsafe {
1050 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1051 ::unity::il2cpp_call!((::unity::module_base()+0x24e9a70usize)as*mut u8,i32;
1052(ExpTable)__receiver)
1053 }
1054 }
1055 #[doc = "`set_P20(i32)` overload"]
1056 fn set_p20(self, value: impl ::core::convert::Into<i32>) -> () {
1057 unsafe {
1058 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1059 ::unity::il2cpp_call!((::unity::module_base()+0x24e9a80usize)as*mut u8,();
1060(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
1061 }
1062 }
1063 #[doc = "`get_P21()` overload"]
1064 fn get_p21(self) -> i32 {
1065 unsafe {
1066 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1067 ::unity::il2cpp_call!((::unity::module_base()+0x24e9a90usize)as*mut u8,i32;
1068(ExpTable)__receiver)
1069 }
1070 }
1071 #[doc = "`set_P21(i32)` overload"]
1072 fn set_p21(self, value: impl ::core::convert::Into<i32>) -> () {
1073 unsafe {
1074 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1075 ::unity::il2cpp_call!((::unity::module_base()+0x24e9aa0usize)as*mut u8,();
1076(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
1077 }
1078 }
1079 #[doc = "`get_P22()` overload"]
1080 fn get_p22(self) -> i32 {
1081 unsafe {
1082 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1083 ::unity::il2cpp_call!((::unity::module_base()+0x24e9ab0usize)as*mut u8,i32;
1084(ExpTable)__receiver)
1085 }
1086 }
1087 #[doc = "`set_P22(i32)` overload"]
1088 fn set_p22(self, value: impl ::core::convert::Into<i32>) -> () {
1089 unsafe {
1090 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1091 ::unity::il2cpp_call!((::unity::module_base()+0x24e9ac0usize)as*mut u8,();
1092(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
1093 }
1094 }
1095 #[doc = "`get_P23()` overload"]
1096 fn get_p23(self) -> i32 {
1097 unsafe {
1098 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1099 ::unity::il2cpp_call!((::unity::module_base()+0x24e9ad0usize)as*mut u8,i32;
1100(ExpTable)__receiver)
1101 }
1102 }
1103 #[doc = "`set_P23(i32)` overload"]
1104 fn set_p23(self, value: impl ::core::convert::Into<i32>) -> () {
1105 unsafe {
1106 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1107 ::unity::il2cpp_call!((::unity::module_base()+0x24e9ae0usize)as*mut u8,();
1108(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
1109 }
1110 }
1111 #[doc = "`get_P24()` overload"]
1112 fn get_p24(self) -> i32 {
1113 unsafe {
1114 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1115 ::unity::il2cpp_call!((::unity::module_base()+0x24e9af0usize)as*mut u8,i32;
1116(ExpTable)__receiver)
1117 }
1118 }
1119 #[doc = "`set_P24(i32)` overload"]
1120 fn set_p24(self, value: impl ::core::convert::Into<i32>) -> () {
1121 unsafe {
1122 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1123 ::unity::il2cpp_call!((::unity::module_base()+0x24e9b00usize)as*mut u8,();
1124(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
1125 }
1126 }
1127 #[doc = "`get_P25()` overload"]
1128 fn get_p25(self) -> i32 {
1129 unsafe {
1130 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1131 ::unity::il2cpp_call!((::unity::module_base()+0x24e9b10usize)as*mut u8,i32;
1132(ExpTable)__receiver)
1133 }
1134 }
1135 #[doc = "`set_P25(i32)` overload"]
1136 fn set_p25(self, value: impl ::core::convert::Into<i32>) -> () {
1137 unsafe {
1138 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1139 ::unity::il2cpp_call!((::unity::module_base()+0x24e9b20usize)as*mut u8,();
1140(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
1141 }
1142 }
1143 #[doc = "`get_P26()` overload"]
1144 fn get_p26(self) -> i32 {
1145 unsafe {
1146 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1147 ::unity::il2cpp_call!((::unity::module_base()+0x24e9b30usize)as*mut u8,i32;
1148(ExpTable)__receiver)
1149 }
1150 }
1151 #[doc = "`set_P26(i32)` overload"]
1152 fn set_p26(self, value: impl ::core::convert::Into<i32>) -> () {
1153 unsafe {
1154 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1155 ::unity::il2cpp_call!((::unity::module_base()+0x24e9b40usize)as*mut u8,();
1156(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
1157 }
1158 }
1159 #[doc = "`get_P27()` overload"]
1160 fn get_p27(self) -> i32 {
1161 unsafe {
1162 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1163 ::unity::il2cpp_call!((::unity::module_base()+0x24e9b50usize)as*mut u8,i32;
1164(ExpTable)__receiver)
1165 }
1166 }
1167 #[doc = "`set_P27(i32)` overload"]
1168 fn set_p27(self, value: impl ::core::convert::Into<i32>) -> () {
1169 unsafe {
1170 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1171 ::unity::il2cpp_call!((::unity::module_base()+0x24e9b60usize)as*mut u8,();
1172(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
1173 }
1174 }
1175 #[doc = "`get_P28()` overload"]
1176 fn get_p28(self) -> i32 {
1177 unsafe {
1178 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1179 ::unity::il2cpp_call!((::unity::module_base()+0x24e9b70usize)as*mut u8,i32;
1180(ExpTable)__receiver)
1181 }
1182 }
1183 #[doc = "`set_P28(i32)` overload"]
1184 fn set_p28(self, value: impl ::core::convert::Into<i32>) -> () {
1185 unsafe {
1186 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1187 ::unity::il2cpp_call!((::unity::module_base()+0x24e9b80usize)as*mut u8,();
1188(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
1189 }
1190 }
1191 #[doc = "`get_P29()` overload"]
1192 fn get_p29(self) -> i32 {
1193 unsafe {
1194 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1195 ::unity::il2cpp_call!((::unity::module_base()+0x24e9b90usize)as*mut u8,i32;
1196(ExpTable)__receiver)
1197 }
1198 }
1199 #[doc = "`set_P29(i32)` overload"]
1200 fn set_p29(self, value: impl ::core::convert::Into<i32>) -> () {
1201 unsafe {
1202 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1203 ::unity::il2cpp_call!((::unity::module_base()+0x24e9ba0usize)as*mut u8,();
1204(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
1205 }
1206 }
1207 #[doc = "`get_P30()` overload"]
1208 fn get_p30(self) -> i32 {
1209 unsafe {
1210 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1211 ::unity::il2cpp_call!((::unity::module_base()+0x24e9bb0usize)as*mut u8,i32;
1212(ExpTable)__receiver)
1213 }
1214 }
1215 #[doc = "`set_P30(i32)` overload"]
1216 fn set_p30(self, value: impl ::core::convert::Into<i32>) -> () {
1217 unsafe {
1218 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1219 ::unity::il2cpp_call!((::unity::module_base()+0x24e9bc0usize)as*mut u8,();
1220(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
1221 }
1222 }
1223 #[doc = "`get_P31()` overload"]
1224 fn get_p31(self) -> i32 {
1225 unsafe {
1226 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1227 ::unity::il2cpp_call!((::unity::module_base()+0x24e9bd0usize)as*mut u8,i32;
1228(ExpTable)__receiver)
1229 }
1230 }
1231 #[doc = "`set_P31(i32)` overload"]
1232 fn set_p31(self, value: impl ::core::convert::Into<i32>) -> () {
1233 unsafe {
1234 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1235 ::unity::il2cpp_call!((::unity::module_base()+0x24e9be0usize)as*mut u8,();
1236(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
1237 }
1238 }
1239 #[doc = "`get_P32()` overload"]
1240 fn get_p32(self) -> i32 {
1241 unsafe {
1242 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1243 ::unity::il2cpp_call!((::unity::module_base()+0x24e9bf0usize)as*mut u8,i32;
1244(ExpTable)__receiver)
1245 }
1246 }
1247 #[doc = "`set_P32(i32)` overload"]
1248 fn set_p32(self, value: impl ::core::convert::Into<i32>) -> () {
1249 unsafe {
1250 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1251 ::unity::il2cpp_call!((::unity::module_base()+0x24e9c00usize)as*mut u8,();
1252(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
1253 }
1254 }
1255 #[doc = "`get_P33()` overload"]
1256 fn get_p33(self) -> i32 {
1257 unsafe {
1258 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1259 ::unity::il2cpp_call!((::unity::module_base()+0x24e9c10usize)as*mut u8,i32;
1260(ExpTable)__receiver)
1261 }
1262 }
1263 #[doc = "`set_P33(i32)` overload"]
1264 fn set_p33(self, value: impl ::core::convert::Into<i32>) -> () {
1265 unsafe {
1266 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1267 ::unity::il2cpp_call!((::unity::module_base()+0x24e9c20usize)as*mut u8,();
1268(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
1269 }
1270 }
1271 #[doc = "`get_P34()` overload"]
1272 fn get_p34(self) -> i32 {
1273 unsafe {
1274 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1275 ::unity::il2cpp_call!((::unity::module_base()+0x24e9c30usize)as*mut u8,i32;
1276(ExpTable)__receiver)
1277 }
1278 }
1279 #[doc = "`set_P34(i32)` overload"]
1280 fn set_p34(self, value: impl ::core::convert::Into<i32>) -> () {
1281 unsafe {
1282 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1283 ::unity::il2cpp_call!((::unity::module_base()+0x24e9c40usize)as*mut u8,();
1284(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
1285 }
1286 }
1287 #[doc = "`get_P35()` overload"]
1288 fn get_p35(self) -> i32 {
1289 unsafe {
1290 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1291 ::unity::il2cpp_call!((::unity::module_base()+0x24e9c50usize)as*mut u8,i32;
1292(ExpTable)__receiver)
1293 }
1294 }
1295 #[doc = "`set_P35(i32)` overload"]
1296 fn set_p35(self, value: impl ::core::convert::Into<i32>) -> () {
1297 unsafe {
1298 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1299 ::unity::il2cpp_call!((::unity::module_base()+0x24e9c60usize)as*mut u8,();
1300(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
1301 }
1302 }
1303 #[doc = "`get_P36()` overload"]
1304 fn get_p36(self) -> i32 {
1305 unsafe {
1306 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1307 ::unity::il2cpp_call!((::unity::module_base()+0x24e9c70usize)as*mut u8,i32;
1308(ExpTable)__receiver)
1309 }
1310 }
1311 #[doc = "`set_P36(i32)` overload"]
1312 fn set_p36(self, value: impl ::core::convert::Into<i32>) -> () {
1313 unsafe {
1314 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1315 ::unity::il2cpp_call!((::unity::module_base()+0x24e9c80usize)as*mut u8,();
1316(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
1317 }
1318 }
1319 #[doc = "`get_P37()` overload"]
1320 fn get_p37(self) -> i32 {
1321 unsafe {
1322 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1323 ::unity::il2cpp_call!((::unity::module_base()+0x24e9c90usize)as*mut u8,i32;
1324(ExpTable)__receiver)
1325 }
1326 }
1327 #[doc = "`set_P37(i32)` overload"]
1328 fn set_p37(self, value: impl ::core::convert::Into<i32>) -> () {
1329 unsafe {
1330 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1331 ::unity::il2cpp_call!((::unity::module_base()+0x24e9ca0usize)as*mut u8,();
1332(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
1333 }
1334 }
1335 #[doc = "`get_P38()` overload"]
1336 fn get_p38(self) -> i32 {
1337 unsafe {
1338 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1339 ::unity::il2cpp_call!((::unity::module_base()+0x24e9cb0usize)as*mut u8,i32;
1340(ExpTable)__receiver)
1341 }
1342 }
1343 #[doc = "`set_P38(i32)` overload"]
1344 fn set_p38(self, value: impl ::core::convert::Into<i32>) -> () {
1345 unsafe {
1346 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1347 ::unity::il2cpp_call!((::unity::module_base()+0x24e9cc0usize)as*mut u8,();
1348(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
1349 }
1350 }
1351 #[doc = "`get_P39()` overload"]
1352 fn get_p39(self) -> i32 {
1353 unsafe {
1354 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1355 ::unity::il2cpp_call!((::unity::module_base()+0x24e9cd0usize)as*mut u8,i32;
1356(ExpTable)__receiver)
1357 }
1358 }
1359 #[doc = "`set_P39(i32)` overload"]
1360 fn set_p39(self, value: impl ::core::convert::Into<i32>) -> () {
1361 unsafe {
1362 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1363 ::unity::il2cpp_call!((::unity::module_base()+0x24e9ce0usize)as*mut u8,();
1364(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
1365 }
1366 }
1367 #[doc = "`get_P40()` overload"]
1368 fn get_p40(self) -> i32 {
1369 unsafe {
1370 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1371 ::unity::il2cpp_call!((::unity::module_base()+0x24e9cf0usize)as*mut u8,i32;
1372(ExpTable)__receiver)
1373 }
1374 }
1375 #[doc = "`set_P40(i32)` overload"]
1376 fn set_p40(self, value: impl ::core::convert::Into<i32>) -> () {
1377 unsafe {
1378 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1379 ::unity::il2cpp_call!((::unity::module_base()+0x24e9d00usize)as*mut u8,();
1380(ExpTable)__receiver,(i32)::core::convert::Into::into(value))
1381 }
1382 }
1383 #[doc = "`OnBuild()` overload"]
1384 fn on_build(self) -> () {
1385 unsafe {
1386 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1387 {
1388 let __vt = ::unity::Cast::get_class(__receiver).raw().get_vtable();
1389 let __vi = *__vt.get(4usize).unwrap_or_else(|| {
1390 panic!(
1391 "unity: virtual slot {}
1392 out of range (vtable len {}
1393) on the runtime class behind {}
1394 (method `{}
1395`)",
1396 4usize,
1397 __vt.len(),
1398 <ExpTable as ::unity::ClassIdentity>::NAME,
1399 "OnBuild",
1400 )
1401 });
1402 let __inner: extern "C" fn(ExpTable, ::unity::OptionalMethod) -> () = ::core::mem::transmute(__vi.method_ptr);
1403 let __mi: ::unity::OptionalMethod = ::core::option::Option::Some(&*(__vi.method_info as *const ::unity::MethodInfo as *const ()));
1404 __inner(__receiver, __mi)
1405 }
1406 }
1407 }
1408 #[doc = "`OnRelease()` overload"]
1409 fn on_release(self) -> () {
1410 unsafe {
1411 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1412 {
1413 let __vt = ::unity::Cast::get_class(__receiver).raw().get_vtable();
1414 let __vi = *__vt.get(7usize).unwrap_or_else(|| {
1415 panic!(
1416 "unity: virtual slot {}
1417 out of range (vtable len {}
1418) on the runtime class behind {}
1419 (method `{}
1420`)",
1421 7usize,
1422 __vt.len(),
1423 <ExpTable as ::unity::ClassIdentity>::NAME,
1424 "OnRelease",
1425 )
1426 });
1427 let __inner: extern "C" fn(ExpTable, ::unity::OptionalMethod) -> () = ::core::mem::transmute(__vi.method_ptr);
1428 let __mi: ::unity::OptionalMethod = ::core::option::Option::Some(&*(__vi.method_info as *const ::unity::MethodInfo as *const ()));
1429 __inner(__receiver, __mi)
1430 }
1431 }
1432 }
1433 #[doc = "`GetDebugName()` overload"]
1434 fn get_debug_name(self) -> ::unity::Il2CppString {
1435 unsafe {
1436 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1437 {
1438 let __vt = ::unity::Cast::get_class(__receiver).raw().get_vtable();
1439 let __vi = *__vt.get(8usize).unwrap_or_else(|| {
1440 panic!(
1441 "unity: virtual slot {}
1442 out of range (vtable len {}
1443) on the runtime class behind {}
1444 (method `{}
1445`)",
1446 8usize,
1447 __vt.len(),
1448 <ExpTable as ::unity::ClassIdentity>::NAME,
1449 "GetDebugName",
1450 )
1451 });
1452 let __inner: extern "C" fn(ExpTable, ::unity::OptionalMethod) -> ::unity::Il2CppString = ::core::mem::transmute(__vi.method_ptr);
1453 let __mi: ::unity::OptionalMethod = ::core::option::Option::Some(&*(__vi.method_info as *const ::unity::MethodInfo as *const ()));
1454 __inner(__receiver, __mi)
1455 }
1456 }
1457 }
1458 #[doc = "`.ctor()` overload"]
1459 fn ctor(self) -> () {
1460 unsafe {
1461 let __receiver = <ExpTable as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1462 ::unity::il2cpp_call!((::unity::module_base()+0x24ea4a0usize)as*mut u8,();
1463(ExpTable)__receiver)
1464 }
1465 }
1466}
1467
1468#[cfg(feature = "app-exptable")]
1469impl<__T: IExpTable> IExpTableMethods for __T {}
1470
1471#[cfg(feature = "app-exptable")]
1472impl ExpTable {
1473 pub fn load_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1474 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[0]
1475 }
1476
1477 pub fn get_name_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1478 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[1]
1479 }
1480
1481 pub fn set_name_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1482 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[2]
1483 }
1484
1485 pub fn get_m39_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1486 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[3]
1487 }
1488
1489 pub fn set_m39_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1490 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[4]
1491 }
1492
1493 pub fn get_m38_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1494 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[5]
1495 }
1496
1497 pub fn set_m38_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1498 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[6]
1499 }
1500
1501 pub fn get_m37_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1502 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[7]
1503 }
1504
1505 pub fn set_m37_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1506 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[8]
1507 }
1508
1509 pub fn get_m36_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1510 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[9]
1511 }
1512
1513 pub fn set_m36_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1514 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[10]
1515 }
1516
1517 pub fn get_m35_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1518 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[11]
1519 }
1520
1521 pub fn set_m35_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1522 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[12]
1523 }
1524
1525 pub fn get_m34_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1526 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[13]
1527 }
1528
1529 pub fn set_m34_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1530 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[14]
1531 }
1532
1533 pub fn get_m33_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1534 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[15]
1535 }
1536
1537 pub fn set_m33_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1538 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[16]
1539 }
1540
1541 pub fn get_m32_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1542 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[17]
1543 }
1544
1545 pub fn set_m32_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1546 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[18]
1547 }
1548
1549 pub fn get_m31_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1550 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[19]
1551 }
1552
1553 pub fn set_m31_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1554 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[20]
1555 }
1556
1557 pub fn get_m30_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1558 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[21]
1559 }
1560
1561 pub fn set_m30_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1562 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[22]
1563 }
1564
1565 pub fn get_m29_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1566 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[23]
1567 }
1568
1569 pub fn set_m29_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1570 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[24]
1571 }
1572
1573 pub fn get_m28_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1574 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[25]
1575 }
1576
1577 pub fn set_m28_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1578 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[26]
1579 }
1580
1581 pub fn get_m27_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1582 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[27]
1583 }
1584
1585 pub fn set_m27_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1586 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[28]
1587 }
1588
1589 pub fn get_m26_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1590 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[29]
1591 }
1592
1593 pub fn set_m26_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1594 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[30]
1595 }
1596
1597 pub fn get_m25_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1598 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[31]
1599 }
1600
1601 pub fn set_m25_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1602 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[32]
1603 }
1604
1605 pub fn get_m24_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1606 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[33]
1607 }
1608
1609 pub fn set_m24_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1610 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[34]
1611 }
1612
1613 pub fn get_m23_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1614 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[35]
1615 }
1616
1617 pub fn set_m23_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1618 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[36]
1619 }
1620
1621 pub fn get_m22_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1622 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[37]
1623 }
1624
1625 pub fn set_m22_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1626 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[38]
1627 }
1628
1629 pub fn get_m21_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1630 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[39]
1631 }
1632
1633 pub fn set_m21_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1634 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[40]
1635 }
1636
1637 pub fn get_m20_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1638 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[41]
1639 }
1640
1641 pub fn set_m20_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1642 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[42]
1643 }
1644
1645 pub fn get_m19_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1646 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[43]
1647 }
1648
1649 pub fn set_m19_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1650 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[44]
1651 }
1652
1653 pub fn get_m18_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1654 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[45]
1655 }
1656
1657 pub fn set_m18_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1658 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[46]
1659 }
1660
1661 pub fn get_m17_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1662 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[47]
1663 }
1664
1665 pub fn set_m17_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1666 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[48]
1667 }
1668
1669 pub fn get_m16_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1670 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[49]
1671 }
1672
1673 pub fn set_m16_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1674 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[50]
1675 }
1676
1677 pub fn get_m15_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1678 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[51]
1679 }
1680
1681 pub fn set_m15_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1682 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[52]
1683 }
1684
1685 pub fn get_m14_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1686 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[53]
1687 }
1688
1689 pub fn set_m14_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1690 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[54]
1691 }
1692
1693 pub fn get_m13_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1694 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[55]
1695 }
1696
1697 pub fn set_m13_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1698 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[56]
1699 }
1700
1701 pub fn get_m12_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1702 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[57]
1703 }
1704
1705 pub fn set_m12_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1706 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[58]
1707 }
1708
1709 pub fn get_m11_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1710 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[59]
1711 }
1712
1713 pub fn set_m11_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1714 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[60]
1715 }
1716
1717 pub fn get_m10_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1718 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[61]
1719 }
1720
1721 pub fn set_m10_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1722 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[62]
1723 }
1724
1725 pub fn get_m09_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1726 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[63]
1727 }
1728
1729 pub fn set_m09_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1730 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[64]
1731 }
1732
1733 pub fn get_m08_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1734 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[65]
1735 }
1736
1737 pub fn set_m08_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1738 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[66]
1739 }
1740
1741 pub fn get_m07_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1742 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[67]
1743 }
1744
1745 pub fn set_m07_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1746 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[68]
1747 }
1748
1749 pub fn get_m06_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1750 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[69]
1751 }
1752
1753 pub fn set_m06_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1754 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[70]
1755 }
1756
1757 pub fn get_m05_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1758 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[71]
1759 }
1760
1761 pub fn set_m05_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1762 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[72]
1763 }
1764
1765 pub fn get_m04_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1766 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[73]
1767 }
1768
1769 pub fn set_m04_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1770 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[74]
1771 }
1772
1773 pub fn get_m03_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1774 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[75]
1775 }
1776
1777 pub fn set_m03_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1778 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[76]
1779 }
1780
1781 pub fn get_m02_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1782 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[77]
1783 }
1784
1785 pub fn set_m02_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1786 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[78]
1787 }
1788
1789 pub fn get_m01_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1790 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[79]
1791 }
1792
1793 pub fn set_m01_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1794 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[80]
1795 }
1796
1797 pub fn get_n00_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1798 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[81]
1799 }
1800
1801 pub fn set_n00_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1802 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[82]
1803 }
1804
1805 pub fn get_p00_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1806 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[83]
1807 }
1808
1809 pub fn set_p00_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1810 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[84]
1811 }
1812
1813 pub fn get_p01_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1814 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[85]
1815 }
1816
1817 pub fn set_p01_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1818 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[86]
1819 }
1820
1821 pub fn get_p02_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1822 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[87]
1823 }
1824
1825 pub fn set_p02_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1826 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[88]
1827 }
1828
1829 pub fn get_p03_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1830 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[89]
1831 }
1832
1833 pub fn set_p03_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1834 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[90]
1835 }
1836
1837 pub fn get_p04_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1838 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[91]
1839 }
1840
1841 pub fn set_p04_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1842 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[92]
1843 }
1844
1845 pub fn get_p05_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1846 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[93]
1847 }
1848
1849 pub fn set_p05_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1850 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[94]
1851 }
1852
1853 pub fn get_p06_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1854 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[95]
1855 }
1856
1857 pub fn set_p06_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1858 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[96]
1859 }
1860
1861 pub fn get_p07_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1862 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[97]
1863 }
1864
1865 pub fn set_p07_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1866 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[98]
1867 }
1868
1869 pub fn get_p08_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1870 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[99]
1871 }
1872
1873 pub fn set_p08_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1874 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[100]
1875 }
1876
1877 pub fn get_p09_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1878 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[101]
1879 }
1880
1881 pub fn set_p09_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1882 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[102]
1883 }
1884
1885 pub fn get_p10_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1886 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[103]
1887 }
1888
1889 pub fn set_p10_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1890 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[104]
1891 }
1892
1893 pub fn get_p11_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1894 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[105]
1895 }
1896
1897 pub fn set_p11_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1898 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[106]
1899 }
1900
1901 pub fn get_p12_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1902 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[107]
1903 }
1904
1905 pub fn set_p12_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1906 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[108]
1907 }
1908
1909 pub fn get_p13_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1910 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[109]
1911 }
1912
1913 pub fn set_p13_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1914 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[110]
1915 }
1916
1917 pub fn get_p14_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1918 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[111]
1919 }
1920
1921 pub fn set_p14_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1922 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[112]
1923 }
1924
1925 pub fn get_p15_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1926 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[113]
1927 }
1928
1929 pub fn set_p15_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1930 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[114]
1931 }
1932
1933 pub fn get_p16_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1934 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[115]
1935 }
1936
1937 pub fn set_p16_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1938 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[116]
1939 }
1940
1941 pub fn get_p17_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1942 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[117]
1943 }
1944
1945 pub fn set_p17_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1946 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[118]
1947 }
1948
1949 pub fn get_p18_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1950 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[119]
1951 }
1952
1953 pub fn set_p18_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1954 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[120]
1955 }
1956
1957 pub fn get_p19_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1958 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[121]
1959 }
1960
1961 pub fn set_p19_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1962 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[122]
1963 }
1964
1965 pub fn get_p20_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1966 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[123]
1967 }
1968
1969 pub fn set_p20_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1970 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[124]
1971 }
1972
1973 pub fn get_p21_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1974 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[125]
1975 }
1976
1977 pub fn set_p21_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1978 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[126]
1979 }
1980
1981 pub fn get_p22_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1982 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[127]
1983 }
1984
1985 pub fn set_p22_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1986 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[128]
1987 }
1988
1989 pub fn get_p23_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1990 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[129]
1991 }
1992
1993 pub fn set_p23_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1994 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[130]
1995 }
1996
1997 pub fn get_p24_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1998 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[131]
1999 }
2000
2001 pub fn set_p24_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2002 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[132]
2003 }
2004
2005 pub fn get_p25_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2006 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[133]
2007 }
2008
2009 pub fn set_p25_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2010 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[134]
2011 }
2012
2013 pub fn get_p26_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2014 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[135]
2015 }
2016
2017 pub fn set_p26_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2018 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[136]
2019 }
2020
2021 pub fn get_p27_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2022 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[137]
2023 }
2024
2025 pub fn set_p27_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2026 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[138]
2027 }
2028
2029 pub fn get_p28_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2030 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[139]
2031 }
2032
2033 pub fn set_p28_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2034 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[140]
2035 }
2036
2037 pub fn get_p29_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2038 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[141]
2039 }
2040
2041 pub fn set_p29_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2042 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[142]
2043 }
2044
2045 pub fn get_p30_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2046 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[143]
2047 }
2048
2049 pub fn set_p30_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2050 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[144]
2051 }
2052
2053 pub fn get_p31_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2054 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[145]
2055 }
2056
2057 pub fn set_p31_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2058 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[146]
2059 }
2060
2061 pub fn get_p32_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2062 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[147]
2063 }
2064
2065 pub fn set_p32_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2066 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[148]
2067 }
2068
2069 pub fn get_p33_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2070 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[149]
2071 }
2072
2073 pub fn set_p33_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2074 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[150]
2075 }
2076
2077 pub fn get_p34_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2078 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[151]
2079 }
2080
2081 pub fn set_p34_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2082 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[152]
2083 }
2084
2085 pub fn get_p35_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2086 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[153]
2087 }
2088
2089 pub fn set_p35_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2090 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[154]
2091 }
2092
2093 pub fn get_p36_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2094 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[155]
2095 }
2096
2097 pub fn set_p36_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2098 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[156]
2099 }
2100
2101 pub fn get_p37_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2102 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[157]
2103 }
2104
2105 pub fn set_p37_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2106 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[158]
2107 }
2108
2109 pub fn get_p38_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2110 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[159]
2111 }
2112
2113 pub fn set_p38_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2114 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[160]
2115 }
2116
2117 pub fn get_p39_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2118 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[161]
2119 }
2120
2121 pub fn set_p39_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2122 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[162]
2123 }
2124
2125 pub fn get_p40_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2126 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[163]
2127 }
2128
2129 pub fn set_p40_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2130 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[164]
2131 }
2132
2133 pub fn get_result_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2134 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[165]
2135 }
2136
2137 pub fn on_build_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2138 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[166]
2139 }
2140
2141 pub fn on_release_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2142 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[167]
2143 }
2144
2145 pub fn get_debug_name_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2146 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[168]
2147 }
2148
2149 pub fn ctor_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2150 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[169]
2151 }
2152}
2153
2154#[cfg(feature = "app-exptable")]
2155impl ExpTable {
2156 #[doc = "Direct (non-virtual) call to `ExpTable`'s own `OnBuild`. Bypasses the vtable, so it won't hit an override/patch — use it for base calls."]
2157 pub unsafe fn on_build(this: impl ::core::convert::Into<::unity::IlInstance>) -> () {
2158 let __mi = Self::on_build_method_info();
2159 let __inner: extern "C" fn(::unity::IlInstance, ::unity::OptionalMethod) -> () = ::core::mem::transmute(__mi.method_ptr);
2160 __inner(this.into(), ::core::option::Option::None)
2161 }
2162
2163 #[doc = "Direct (non-virtual) call to `ExpTable`'s own `OnRelease`. Bypasses the vtable, so it won't hit an override/patch — use it for base calls."]
2164 pub unsafe fn on_release(this: impl ::core::convert::Into<::unity::IlInstance>) -> () {
2165 let __mi = Self::on_release_method_info();
2166 let __inner: extern "C" fn(::unity::IlInstance, ::unity::OptionalMethod) -> () = ::core::mem::transmute(__mi.method_ptr);
2167 __inner(this.into(), ::core::option::Option::None)
2168 }
2169
2170 #[doc = "Direct (non-virtual) call to `ExpTable`'s own `GetDebugName`. Bypasses the vtable, so it won't hit an override/patch — use it for base calls."]
2171 pub unsafe fn get_debug_name(this: impl ::core::convert::Into<::unity::IlInstance>) -> ::unity::Il2CppString {
2172 let __mi = Self::get_debug_name_method_info();
2173 let __inner: extern "C" fn(::unity::IlInstance, ::unity::OptionalMethod) -> ::unity::Il2CppString = ::core::mem::transmute(__mi.method_ptr);
2174 __inner(this.into(), ::core::option::Option::None)
2175 }
2176}
2177
2178#[cfg(feature = "app-exptable")]
2179impl ExpTable {
2180 #[doc = "`.ctor()` — no args"]
2181 pub fn new() -> Self {
2182 let this = <Self as ::unity::FromIlInstance>::instantiate().unwrap_or_else(|| {
2183 panic!(
2184 "{}
2185::{}
2186 failed to instantiate",
2187 ::core::stringify!(ExpTable),
2188 ::core::stringify!(new),
2189 )
2190 });
2191 <Self as IExpTableMethods>::ctor(this);
2192 this
2193 }
2194}
2195
2196#[cfg(feature = "app-exptable")]
2197pub trait IExpTable_TableCommandMethods: IExpTable_TableCommand {
2198 #[doc = "`.ctor(::unity::Il2CppString)` overload"]
2199 fn ctor(self, name: impl ::core::convert::Into<::unity::Il2CppString>) -> () {
2200 unsafe {
2201 let __receiver = <ExpTable_TableCommand as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
2202 ::unity::il2cpp_call!((::unity::module_base()+0x1e59e10usize)as*mut u8,();
2203(ExpTable_TableCommand)__receiver,(::unity::Il2CppString)::core::convert::Into::into(name))
2204 }
2205 }
2206 #[doc = "`get_Name()` overload"]
2207 fn get_name(self) -> ::unity::Il2CppString {
2208 unsafe {
2209 let __receiver = <ExpTable_TableCommand as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
2210 {
2211 let __vt = ::unity::Cast::get_class(__receiver).raw().get_vtable();
2212 let __vi = *__vt.get(4usize).unwrap_or_else(|| {
2213 panic!(
2214 "unity: virtual slot {}
2215 out of range (vtable len {}
2216) on the runtime class behind {}
2217 (method `{}
2218`)",
2219 4usize,
2220 __vt.len(),
2221 <ExpTable_TableCommand as ::unity::ClassIdentity>::NAME,
2222 "get_Name",
2223 )
2224 });
2225 let __inner: extern "C" fn(ExpTable_TableCommand, ::unity::OptionalMethod) -> ::unity::Il2CppString =
2226 ::core::mem::transmute(__vi.method_ptr);
2227 let __mi: ::unity::OptionalMethod = ::core::option::Option::Some(&*(__vi.method_info as *const ::unity::MethodInfo as *const ()));
2228 __inner(__receiver, __mi)
2229 }
2230 }
2231 }
2232 #[doc = "`FuncImpl(crate::app::unit::Unit, crate::system::collections::generic::list_1::List_1<f32>)` overload"]
2233 fn func_impl(
2234 self,
2235 unit: impl ::core::convert::Into<crate::app::unit::Unit>,
2236 args: impl ::core::convert::Into<crate::system::collections::generic::list_1::List_1<f32>>,
2237 ) -> f32 {
2238 unsafe {
2239 let __receiver = <ExpTable_TableCommand as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
2240 {
2241 let __vt = ::unity::Cast::get_class(__receiver).raw().get_vtable();
2242 let __vi = *__vt.get(34usize).unwrap_or_else(|| {
2243 panic!(
2244 "unity: virtual slot {}
2245 out of range (vtable len {}
2246) on the runtime class behind {}
2247 (method `{}
2248`)",
2249 34usize,
2250 __vt.len(),
2251 <ExpTable_TableCommand as ::unity::ClassIdentity>::NAME,
2252 "FuncImpl",
2253 )
2254 });
2255 let __inner: extern "C" fn(
2256 ExpTable_TableCommand,
2257 crate::app::unit::Unit,
2258 crate::system::collections::generic::list_1::List_1<f32>,
2259 ::unity::OptionalMethod,
2260 ) -> f32 = ::core::mem::transmute(__vi.method_ptr);
2261 let __mi: ::unity::OptionalMethod = ::core::option::Option::Some(&*(__vi.method_info as *const ::unity::MethodInfo as *const ()));
2262 __inner(__receiver, ::core::convert::Into::into(unit), ::core::convert::Into::into(args), __mi)
2263 }
2264 }
2265 }
2266}
2267
2268#[cfg(feature = "app-exptable")]
2269impl<__T: IExpTable_TableCommand> IExpTable_TableCommandMethods for __T {}
2270
2271#[cfg(feature = "app-exptable")]
2272impl ExpTable_TableCommand {
2273 pub fn ctor_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2274 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[0]
2275 }
2276
2277 pub fn get_name_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2278 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[1]
2279 }
2280
2281 pub fn func_impl_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2282 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[2]
2283 }
2284}
2285
2286#[cfg(feature = "app-exptable")]
2287impl ExpTable_TableCommand {
2288 #[doc = "Direct (non-virtual) call to `ExpTable_TableCommand`'s own `get_Name`. Bypasses the vtable, so it won't hit an override/patch — use it for base calls."]
2289 pub unsafe fn get_name(this: impl ::core::convert::Into<::unity::IlInstance>) -> ::unity::Il2CppString {
2290 let __mi = Self::get_name_method_info();
2291 let __inner: extern "C" fn(::unity::IlInstance, ::unity::OptionalMethod) -> ::unity::Il2CppString = ::core::mem::transmute(__mi.method_ptr);
2292 __inner(this.into(), ::core::option::Option::None)
2293 }
2294
2295 #[doc = "Direct (non-virtual) call to `ExpTable_TableCommand`'s own `FuncImpl`. Bypasses the vtable, so it won't hit an override/patch — use it for base calls."]
2296 pub unsafe fn func_impl(
2297 this: impl ::core::convert::Into<::unity::IlInstance>,
2298 unit: crate::app::unit::Unit,
2299 args: crate::system::collections::generic::list_1::List_1<f32>,
2300 ) -> f32 {
2301 let __mi = Self::func_impl_method_info();
2302 let __inner: extern "C" fn(
2303 ::unity::IlInstance,
2304 crate::app::unit::Unit,
2305 crate::system::collections::generic::list_1::List_1<f32>,
2306 ::unity::OptionalMethod,
2307 ) -> f32 = ::core::mem::transmute(__mi.method_ptr);
2308 __inner(this.into(), unit, args, ::core::option::Option::None)
2309 }
2310}
2311
2312#[cfg(feature = "app-exptable")]
2313impl ExpTable_TableCommand {
2314 #[doc = "`.ctor(::unity::Il2CppString)` — overload selector"]
2315 pub fn new(name: ::unity::Il2CppString) -> Self {
2316 let this = <Self as ::unity::FromIlInstance>::instantiate().unwrap_or_else(|| {
2317 panic!(
2318 "{}
2319::{}
2320 failed to instantiate",
2321 ::core::stringify!(ExpTable_TableCommand),
2322 ::core::stringify!(new),
2323 )
2324 });
2325 <Self as IExpTable_TableCommandMethods>::ctor(this, name);
2326 this
2327 }
2328}
2329
2330#[cfg(feature = "app-exptable")]
2331#[doc(hidden)]
2332pub mod prelude {
2333 pub use super::{ExpTable, ExpTable_TableCommand, IExpTable, IExpTableMethods, IExpTable_TableCommand, IExpTable_TableCommandMethods};
2334 #[cfg(feature = "app-calculatorcommand")]
2335 pub use crate::app::calculatorcommand::ICalculatorCommandMethods;
2336 #[cfg(feature = "app-gamecalculatorcommand")]
2337 pub use crate::app::gamecalculatorcommand::IGameCalculatorCommandMethods;
2338 #[cfg(feature = "app-structbase")]
2339 pub use crate::app::structbase::IStructBaseMethods;
2340 #[cfg(feature = "app-structdata_1")]
2341 pub use crate::app::structdata_1::IStructData_1Methods;
2342 #[cfg(feature = "app-structtemplate_1")]
2343 pub use crate::app::structtemplate_1::IStructTemplate_1Methods;
2344 #[cfg(feature = "system-object")]
2345 pub use crate::system::object::IObjectMethods;
2346 pub use crate::{
2347 app::{
2348 calculatorcommand::ICalculatorCommand, gamecalculatorcommand::IGameCalculatorCommand, structbase::IStructBase,
2349 structdata_1::IStructData_1, structtemplate_1::IStructTemplate_1,
2350 },
2351 system::object::IObject,
2352 };
2353}