1#[cfg(feature = "app-hubutil-types")]
4mod __types {
5 #[allow(unused_imports)] use ::unity::prelude::*;
6
7 use super::*;
8 use crate::system::{
9 object::{IObject, Object},
10 r#enum::{Enum, IEnum},
11 valuetype::{IValueType, ValueType},
12 };
13
14 #[doc=include_str!(concat!(env!("CARGO_MANIFEST_DIR"),"/","docs/app/hubutil/HubUtil_ConditionType.md"))]
15 #[repr(C)]
16 #[derive(::core::clone::Clone, ::core::marker::Copy, ::core::fmt::Debug, ::core::cmp::PartialEq, ::core::cmp::Eq)]
17 pub struct HubUtil_ConditionType {
18 pub value: i32,
19 }
20 impl ::unity::ClassIdentity for HubUtil_ConditionType {
21 const NAME: &'static str = "HubUtil.ConditionType";
22 const NAMESPACE: &'static str = "App";
23
24 fn class() -> ::unity::Class {
25 static CACHE: ::std::sync::OnceLock<::unity::Class> = ::std::sync::OnceLock::new();
26 *CACHE.get_or_init(|| ::unity::Class::lookup(Self::NAMESPACE, Self::NAME))
27 }
28 }
29 impl ::unity::IlType for HubUtil_ConditionType {
30 fn il_type() -> &'static ::unity::il2cpp::Il2CppType {
31 &<Self as ::unity::ClassIdentity>::class().raw()._1.byval_arg
32 }
33 }
34 impl HubUtil_ConditionType {
35 pub fn morning() -> Self {
36 Self { value: 0 }
37 }
38
39 pub fn day() -> Self {
40 Self { value: 1 }
41 }
42
43 pub fn evening() -> Self {
44 Self { value: 2 }
45 }
46
47 pub fn night() -> Self {
48 Self { value: 3 }
49 }
50
51 pub fn weapon_opened() -> Self {
52 Self { value: 4 }
53 }
54
55 pub fn item_opened() -> Self {
56 Self { value: 5 }
57 }
58
59 pub fn refinement_opened() -> Self {
60 Self { value: 6 }
61 }
62
63 pub fn accessory_opened() -> Self {
64 Self { value: 7 }
65 }
66
67 pub fn tent1() -> Self {
68 Self { value: 8 }
69 }
70
71 pub fn tent2() -> Self {
72 Self { value: 9 }
73 }
74
75 pub fn tent3() -> Self {
76 Self { value: 10 }
77 }
78
79 pub fn fire() -> Self {
80 Self { value: 11 }
81 }
82
83 pub fn fortune_hut_opened() -> Self {
84 Self { value: 12 }
85 }
86
87 pub fn flea_market() -> Self {
88 Self { value: 13 }
89 }
90
91 pub fn statue() -> Self {
92 Self { value: 14 }
93 }
94
95 pub fn pool_circle_swim() -> Self {
96 Self { value: 15 }
97 }
98 }
99
100 #[doc=include_str!(concat!(env!("CARGO_MANIFEST_DIR"),"/","docs/app/hubutil/HubUtil_BSpline.md"))]
101 #[::unity::class(namespace = "App", name = "HubUtil.BSpline")]
102 #[parent(crate::system::object::Object)]
103 pub struct HubUtil_BSpline {}
104
105 #[doc=include_str!(concat!(env!("CARGO_MANIFEST_DIR"),"/","docs/app/hubutil/HubUtil.md"))]
106 #[::unity::class(namespace = "App", name = "HubUtil")]
107 #[parent(crate::system::object::Object)]
108 pub struct HubUtil {
109 #[static_field]
110 #[rename(name = "s_HubParams")]
111 pub s_hub_params: crate::app::hubparams::HubParams,
112 }
113
114 #[doc=include_str!(concat!(env!("CARGO_MANIFEST_DIR"),"/","docs/app/hubutil/HubUtil_TimezoneType.md"))]
115 #[repr(C)]
116 #[derive(::core::clone::Clone, ::core::marker::Copy, ::core::fmt::Debug, ::core::cmp::PartialEq, ::core::cmp::Eq)]
117 pub struct HubUtil_TimezoneType {
118 pub value: i32,
119 }
120 impl ::unity::ClassIdentity for HubUtil_TimezoneType {
121 const NAME: &'static str = "HubUtil.TimezoneType";
122 const NAMESPACE: &'static str = "App";
123
124 fn class() -> ::unity::Class {
125 static CACHE: ::std::sync::OnceLock<::unity::Class> = ::std::sync::OnceLock::new();
126 *CACHE.get_or_init(|| ::unity::Class::lookup(Self::NAMESPACE, Self::NAME))
127 }
128 }
129 impl ::unity::IlType for HubUtil_TimezoneType {
130 fn il_type() -> &'static ::unity::il2cpp::Il2CppType {
131 &<Self as ::unity::ClassIdentity>::class().raw()._1.byval_arg
132 }
133 }
134 impl HubUtil_TimezoneType {
135 pub fn morning() -> Self {
136 Self { value: 0 }
137 }
138
139 pub fn day() -> Self {
140 Self { value: 1 }
141 }
142
143 pub fn evening() -> Self {
144 Self { value: 2 }
145 }
146
147 pub fn night() -> Self {
148 Self { value: 3 }
149 }
150
151 pub fn max() -> Self {
152 Self { value: 4 }
153 }
154 }
155}
156
157#[cfg(feature = "app-hubutil-types")]
158pub use __types::*;
159
160#[cfg(feature = "app-hubutil")]
161impl HubUtil_BSpline {
162 #[doc = "`Loop(i32, i32, i32)` overload"]
163 pub fn r#loop(n: impl ::core::convert::Into<i32>, min: impl ::core::convert::Into<i32>, max: impl ::core::convert::Into<i32>) -> i32 {
164 unsafe {
165 ::unity::il2cpp_call!((::unity::module_base()+0x2aedd40usize)as*mut u8,i32;
166(i32)::core::convert::Into::into(n),(i32)::core::convert::Into::into(min),(i32)::core::convert::Into::into(max))
167 }
168 }
169
170 #[doc = "`Coefficient(f32)` overload"]
171 pub fn coefficient(t: impl ::core::convert::Into<f32>) -> f32 {
172 unsafe {
173 ::unity::il2cpp_call!((::unity::module_base()+0x2aedd70usize)as*mut u8,f32;
174(f32)::core::convert::Into::into(t))
175 }
176 }
177
178 #[doc = "`Calc(::unity::Array<crate::unity_engine::vector3::Vector3>, f32)` overload"]
179 pub fn calc(
180 v: impl ::core::convert::Into<::unity::Array<crate::unity_engine::vector3::Vector3>>,
181 t: impl ::core::convert::Into<f32>,
182 ) -> crate::unity_engine::vector3::Vector3 {
183 unsafe {
184 ::unity::il2cpp_call!((::unity::module_base()+0x2aeddf0usize)as*mut u8,crate::unity_engine::vector3::Vector3;
185(::unity::Array<crate::unity_engine::vector3::Vector3>)::core::convert::Into::into(v),(f32)::core::convert::Into::into(t))
186 }
187 }
188
189 #[doc = "`CalcLoop(::unity::Array<crate::unity_engine::vector3::Vector3>, f32)` overload"]
190 pub fn calc_loop(
191 v: impl ::core::convert::Into<::unity::Array<crate::unity_engine::vector3::Vector3>>,
192 t: impl ::core::convert::Into<f32>,
193 ) -> crate::unity_engine::vector3::Vector3 {
194 unsafe {
195 ::unity::il2cpp_call!((::unity::module_base()+0x2aedf80usize)as*mut u8,crate::unity_engine::vector3::Vector3;
196(::unity::Array<crate::unity_engine::vector3::Vector3>)::core::convert::Into::into(v),(f32)::core::convert::Into::into(t))
197 }
198 }
199}
200
201#[cfg(feature = "app-hubutil")]
202pub trait IHubUtil_BSplineMethods: IHubUtil_BSpline {
203 #[doc = "`.ctor()` overload"]
204 fn ctor(self) -> () {
205 unsafe {
206 let __receiver = <HubUtil_BSpline as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
207 ::unity::il2cpp_call!((::unity::module_base()+0x2aee130usize)as*mut u8,();
208(HubUtil_BSpline)__receiver)
209 }
210 }
211}
212
213#[cfg(feature = "app-hubutil")]
214impl<__T: IHubUtil_BSpline> IHubUtil_BSplineMethods for __T {}
215
216#[cfg(feature = "app-hubutil")]
217impl HubUtil_BSpline {
218 pub fn loop_method_info() -> &'static ::unity::il2cpp::MethodInfo {
219 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[0]
220 }
221
222 pub fn coefficient_method_info() -> &'static ::unity::il2cpp::MethodInfo {
223 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[1]
224 }
225
226 pub fn calc_method_info() -> &'static ::unity::il2cpp::MethodInfo {
227 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[2]
228 }
229
230 pub fn calc_loop_method_info() -> &'static ::unity::il2cpp::MethodInfo {
231 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[3]
232 }
233
234 pub fn ctor_method_info() -> &'static ::unity::il2cpp::MethodInfo {
235 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[4]
236 }
237}
238
239#[cfg(feature = "app-hubutil")]
240impl HubUtil_BSpline {
241 #[doc = "`.ctor()` — no args"]
242 pub fn new() -> Self {
243 let this = <Self as ::unity::FromIlInstance>::instantiate().unwrap_or_else(|| {
244 panic!(
245 "{}
246::{}
247 failed to instantiate",
248 ::core::stringify!(HubUtil_BSpline),
249 ::core::stringify!(new),
250 )
251 });
252 <Self as IHubUtil_BSplineMethods>::ctor(this);
253 this
254 }
255}
256
257#[cfg(feature = "app-hubutil")]
258impl HubUtil {
259 #[doc = "`get_Params()` overload"]
260 pub fn get_params() -> crate::app::hubparams::HubParams {
261 unsafe {
262 ::unity::il2cpp_call!((::unity::module_base()+0x2a5e550usize)as*mut u8,crate::app::hubparams::HubParams;
263 )
264 }
265 }
266
267 #[doc = "`IsParamsValid()` overload"]
268 pub fn is_params_valid() -> bool {
269 unsafe {
270 ::unity::il2cpp_call!((::unity::module_base()+0x2a5e6c0usize)as*mut u8,bool;
271 )
272 }
273 }
274
275 #[doc = "`GetUnitDisplayNum()` overload"]
276 pub fn get_unit_display_num() -> i32 {
277 unsafe {
278 ::unity::il2cpp_call!((::unity::module_base()+0x2a5e760usize)as*mut u8,i32;
279 )
280 }
281 }
282
283 #[doc = "`get_PadThreshold()` overload"]
284 pub fn get_pad_threshold() -> f32 {
285 unsafe {
286 ::unity::il2cpp_call!((::unity::module_base()+0x2a5e7c0usize)as*mut u8,f32;
287 )
288 }
289 }
290
291 #[doc = "`get_PlayerMaxSpeed()` overload"]
292 pub fn get_player_max_speed() -> f32 {
293 unsafe {
294 ::unity::il2cpp_call!((::unity::module_base()+0x2a5e820usize)as*mut u8,f32;
295 )
296 }
297 }
298
299 #[doc = "`get_PlayerAccel()` overload"]
300 pub fn get_player_accel() -> f32 {
301 unsafe {
302 ::unity::il2cpp_call!((::unity::module_base()+0x2a5e880usize)as*mut u8,f32;
303 )
304 }
305 }
306
307 #[doc = "`get_PlayerDecel()` overload"]
308 pub fn get_player_decel() -> f32 {
309 unsafe {
310 ::unity::il2cpp_call!((::unity::module_base()+0x2a5e8e0usize)as*mut u8,f32;
311 )
312 }
313 }
314
315 #[doc = "`get_PlayerRotateSpeedRate()` overload"]
316 pub fn get_player_rotate_speed_rate() -> f32 {
317 unsafe {
318 ::unity::il2cpp_call!((::unity::module_base()+0x2a5e940usize)as*mut u8,f32;
319 )
320 }
321 }
322
323 #[doc = "`get_PlayerDashStopTime()` overload"]
324 pub fn get_player_dash_stop_time() -> f32 {
325 unsafe {
326 ::unity::il2cpp_call!((::unity::module_base()+0x2a5e9a0usize)as*mut u8,f32;
327 )
328 }
329 }
330
331 #[doc = "`get_PlayerDashSpeedIntensity()` overload"]
332 pub fn get_player_dash_speed_intensity() -> f32 {
333 unsafe {
334 ::unity::il2cpp_call!((::unity::module_base()+0x2a5ea00usize)as*mut u8,f32;
335 )
336 }
337 }
338
339 #[doc = "`get_SpringGravityY()` overload"]
340 pub fn get_spring_gravity_y() -> f32 {
341 unsafe {
342 ::unity::il2cpp_call!((::unity::module_base()+0x2a5ea60usize)as*mut u8,f32;
343 )
344 }
345 }
346
347 #[doc = "`GetPlayerSpeedCurve(f32)` overload"]
348 pub fn get_player_speed_curve(magnitude: impl ::core::convert::Into<f32>) -> f32 {
349 unsafe {
350 ::unity::il2cpp_call!((::unity::module_base()+0x2a5eac0usize)as*mut u8,f32;
351(f32)::core::convert::Into::into(magnitude))
352 }
353 }
354
355 #[doc = "`GetTurnCurve()` overload"]
356 pub fn get_turn_curve() -> crate::unity_engine::animationcurve::AnimationCurve {
357 unsafe {
358 ::unity::il2cpp_call!((::unity::module_base()+0x2a5e4f0usize)as*mut u8,crate::unity_engine::animationcurve::AnimationCurve;
359 )
360 }
361 }
362
363 #[doc = "`get_MinLookAtDist()` overload"]
364 pub fn get_min_look_at_dist() -> f32 {
365 unsafe {
366 ::unity::il2cpp_call!((::unity::module_base()+0x2a5eb40usize)as*mut u8,f32;
367 )
368 }
369 }
370
371 #[doc = "`get_MaxLookAtDist()` overload"]
372 pub fn get_max_look_at_dist() -> f32 {
373 unsafe {
374 ::unity::il2cpp_call!((::unity::module_base()+0x2a5eba0usize)as*mut u8,f32;
375 )
376 }
377 }
378
379 #[doc = "`get_PadAllowance()` overload"]
380 pub fn get_pad_allowance() -> f32 {
381 unsafe {
382 ::unity::il2cpp_call!((::unity::module_base()+0x2a5ec00usize)as*mut u8,f32;
383 )
384 }
385 }
386
387 #[doc = "`get_OthersBodyWeight()` overload"]
388 pub fn get_others_body_weight() -> f32 {
389 unsafe {
390 ::unity::il2cpp_call!((::unity::module_base()+0x2a5ec60usize)as*mut u8,f32;
391 )
392 }
393 }
394
395 #[doc = "`get_OthersHeadWeight()` overload"]
396 pub fn get_others_head_weight() -> f32 {
397 unsafe {
398 ::unity::il2cpp_call!((::unity::module_base()+0x2a5ecc0usize)as*mut u8,f32;
399 )
400 }
401 }
402
403 #[doc = "`get_EmptyWord()` overload"]
404 pub fn get_empty_word() -> ::unity::Il2CppString {
405 unsafe {
406 ::unity::il2cpp_call!((::unity::module_base()+0x2a5ed20usize)as*mut u8, ::unity::Il2CppString;
407 )
408 }
409 }
410
411 #[doc = "`GetCharacterAppearance(::unity::Il2CppString, ::unity::Il2CppString)` overload"]
412 pub fn get_character_appearance(
413 pid: impl ::core::convert::Into<::unity::Il2CppString>,
414 accessory: impl ::core::convert::Into<::unity::Il2CppString>,
415 ) -> crate::combat::characterappearance::CharacterAppearance {
416 unsafe {
417 ::unity::il2cpp_call!((::unity::module_base()+0x2a5ed90usize)as*mut u8,crate::combat::characterappearance::CharacterAppearance;
418(::unity::Il2CppString)::core::convert::Into::into(pid),(::unity::Il2CppString)::core::convert::Into::into(accessory))
419 }
420 }
421
422 #[doc = "`GetPlayerAppearance(::unity::Il2CppString)` overload"]
423 pub fn get_player_appearance(pid: impl ::core::convert::Into<::unity::Il2CppString>) -> crate::combat::characterappearance::CharacterAppearance {
424 unsafe {
425 ::unity::il2cpp_call!((::unity::module_base()+0x2a5f290usize)as*mut u8,crate::combat::characterappearance::CharacterAppearance;
426(::unity::Il2CppString)::core::convert::Into::into(pid))
427 }
428 }
429
430 #[doc = "`CreateLookAt(crate::unity_engine::gameobject::GameObject, bool)` overload"]
431 pub fn create_look_at(
432 game_object: impl ::core::convert::Into<crate::unity_engine::gameobject::GameObject>,
433 disabled_param: impl ::core::convert::Into<bool>,
434 ) -> crate::app::hublookatcontroller::HubLookAtController {
435 unsafe {
436 ::unity::il2cpp_call!((::unity::module_base()+0x2a5e190usize)as*mut u8,crate::app::hublookatcontroller::HubLookAtController;
437(crate::unity_engine::gameobject::GameObject)::core::convert::Into::into(game_object),(bool)::core::convert::Into::into(disabled_param))
438 }
439 }
440
441 #[doc = "`IsMain()` overload"]
442 pub fn is_main() -> bool {
443 unsafe {
444 ::unity::il2cpp_call!((::unity::module_base()+0x2a5f410usize)as*mut u8,bool;
445 )
446 }
447 }
448
449 #[doc = "`IsHubSequence()` overload"]
450 pub fn is_hub_sequence() -> bool {
451 unsafe {
452 ::unity::il2cpp_call!((::unity::module_base()+0x2a5f4d0usize)as*mut u8,bool;
453 )
454 }
455 }
456
457 #[doc = "`IsPlayerFemale()` overload"]
458 pub fn is_player_female() -> bool {
459 unsafe {
460 ::unity::il2cpp_call!((::unity::module_base()+0x2a5ad80usize)as*mut u8,bool;
461 )
462 }
463 }
464
465 #[doc = "`IsComplete(::unity::Il2CppString)` overload"]
466 pub fn is_complete(cid: impl ::core::convert::Into<::unity::Il2CppString>) -> bool {
467 unsafe {
468 ::unity::il2cpp_call!((::unity::module_base()+0x2a5f590usize)as*mut u8,bool;
469(::unity::Il2CppString)::core::convert::Into::into(cid))
470 }
471 }
472
473 #[doc = "`PIDToGID(::unity::Il2CppString)` overload"]
474 pub fn pid_to_gid(pid: impl ::core::convert::Into<::unity::Il2CppString>) -> ::unity::Il2CppString {
475 unsafe {
476 ::unity::il2cpp_call!((::unity::module_base()+0x2a5f710usize)as*mut u8, ::unity::Il2CppString;
477(::unity::Il2CppString)::core::convert::Into::into(pid))
478 }
479 }
480
481 #[doc = "`GIDToPID(::unity::Il2CppString)` overload"]
482 pub fn gid_to_pid(gid: impl ::core::convert::Into<::unity::Il2CppString>) -> ::unity::Il2CppString {
483 unsafe {
484 ::unity::il2cpp_call!((::unity::module_base()+0x2a5f780usize)as*mut u8, ::unity::Il2CppString;
485(::unity::Il2CppString)::core::convert::Into::into(gid))
486 }
487 }
488
489 #[doc = "`TryGetSortieUnit(::unity::Il2CppString)` overload"]
490 pub fn try_get_sortie_unit(pid: impl ::core::convert::Into<::unity::Il2CppString>) -> crate::app::unit::Unit {
491 unsafe {
492 ::unity::il2cpp_call!((::unity::module_base()+0x2a5f7f0usize)as*mut u8,crate::app::unit::Unit;
493(::unity::Il2CppString)::core::convert::Into::into(pid))
494 }
495 }
496
497 #[doc = "`IsSortieUnit(::unity::Il2CppString)` overload"]
498 pub fn is_sortie_unit(pid: impl ::core::convert::Into<::unity::Il2CppString>) -> bool {
499 unsafe {
500 ::unity::il2cpp_call!((::unity::module_base()+0x2a5f850usize)as*mut u8,bool;
501(::unity::Il2CppString)::core::convert::Into::into(pid))
502 }
503 }
504
505 #[doc = "`IsBestReliance(::unity::Il2CppString)` overload"]
506 pub fn is_best_reliance(pid: impl ::core::convert::Into<::unity::Il2CppString>) -> bool {
507 unsafe {
508 ::unity::il2cpp_call!((::unity::module_base()+0x2a5d260usize)as*mut u8,bool;
509(::unity::Il2CppString)::core::convert::Into::into(pid))
510 }
511 }
512
513 #[doc = "`GetNowYear()` overload"]
514 pub fn get_now_year() -> i32 {
515 unsafe {
516 ::unity::il2cpp_call!((::unity::module_base()+0x2a5f900usize)as*mut u8,i32;
517 )
518 }
519 }
520
521 #[doc = "`IsBirthday(::unity::Il2CppString)` overload"]
522 pub fn is_birthday(pid: impl ::core::convert::Into<::unity::Il2CppString>) -> bool {
523 unsafe {
524 ::unity::il2cpp_call!((::unity::module_base()+0x2a5fae0usize)as*mut u8,bool;
525(::unity::Il2CppString)::core::convert::Into::into(pid))
526 }
527 }
528
529 #[doc = "`IsHeroBirthday()` overload"]
530 pub fn is_hero_birthday() -> bool {
531 unsafe {
532 ::unity::il2cpp_call!((::unity::module_base()+0x2a5fbe0usize)as*mut u8,bool;
533 )
534 }
535 }
536
537 #[doc = "`IsBirthdayPresentGot(::unity::Il2CppString)` overload"]
538 pub fn is_birthday_present_got(pid: impl ::core::convert::Into<::unity::Il2CppString>) -> bool {
539 unsafe {
540 ::unity::il2cpp_call!((::unity::module_base()+0x2a5fc80usize)as*mut u8,bool;
541(::unity::Il2CppString)::core::convert::Into::into(pid))
542 }
543 }
544
545 #[doc = "`CanPromiseEngage(crate::app::unit::Unit)` overload"]
546 pub fn can_promise_engage(unit: impl ::core::convert::Into<crate::app::unit::Unit>) -> bool {
547 unsafe {
548 ::unity::il2cpp_call!((::unity::module_base()+0x2a5fdc0usize)as*mut u8,bool;
549(crate::app::unit::Unit)::core::convert::Into::into(unit))
550 }
551 }
552
553 #[doc = "`IsAvaliableDispos(crate::app::hubdisposdata::HubDisposData, crate::app::hubutil::HubUtil_TimezoneType)` overload"]
554 pub fn is_avaliable_dispos(
555 data: impl ::core::convert::Into<crate::app::hubdisposdata::HubDisposData>,
556 timezone_type: impl ::core::convert::Into<crate::app::hubutil::HubUtil_TimezoneType>,
557 ) -> bool {
558 unsafe {
559 ::unity::il2cpp_call!((::unity::module_base()+0x2a60020usize)as*mut u8,bool;
560(crate::app::hubdisposdata::HubDisposData)::core::convert::Into::into(data),(crate::app::hubutil::HubUtil_TimezoneType)::core::convert::Into::into(timezone_type))
561 }
562 }
563
564 #[doc = "`LevelUpReliance(crate::app::unit::Unit, crate::app::unit::Unit, crate::app::reliancedata::RelianceData_Level)` overload"]
565 pub fn level_up_reliance(
566 a: impl ::core::convert::Into<crate::app::unit::Unit>,
567 b: impl ::core::convert::Into<crate::app::unit::Unit>,
568 level: impl ::core::convert::Into<crate::app::reliancedata::RelianceData_Level>,
569 ) -> () {
570 unsafe {
571 ::unity::il2cpp_call!((::unity::module_base()+0x2a60630usize)as*mut u8,();
572(crate::app::unit::Unit)::core::convert::Into::into(a),(crate::app::unit::Unit)::core::convert::Into::into(b),(crate::app::reliancedata::RelianceData_Level)::core::convert::Into::into(level))
573 }
574 }
575
576 #[doc = "`GetRelianceSuffixLetter(crate::app::reliancedata::RelianceData_Level)` overload"]
577 pub fn get_reliance_suffix_letter(level: impl ::core::convert::Into<crate::app::reliancedata::RelianceData_Level>) -> ::unity::Il2CppString {
578 unsafe {
579 ::unity::il2cpp_call!((::unity::module_base()+0x2a60710usize)as*mut u8, ::unity::Il2CppString;
580(crate::app::reliancedata::RelianceData_Level)::core::convert::Into::into(level))
581 }
582 }
583
584 #[doc = "`CanAnyRelianceLevelUp()` overload"]
585 pub fn can_any_reliance_level_up() -> bool {
586 unsafe {
587 ::unity::il2cpp_call!((::unity::module_base()+0x2a607b0usize)as*mut u8,bool;
588 )
589 }
590 }
591
592 #[doc = "`CanAnyGodLevelUp()` overload"]
593 pub fn can_any_god_level_up() -> bool {
594 unsafe {
595 ::unity::il2cpp_call!((::unity::module_base()+0x2a608b0usize)as*mut u8,bool;
596 )
597 }
598 }
599
600 #[doc = "`CanAnyRelianceLevelUp(::unity::Il2CppString, bool)` overload"]
601 pub fn can_any_reliance_level_up_2(
602 pid: impl ::core::convert::Into<::unity::Il2CppString>,
603 without_a_plus: impl ::core::convert::Into<bool>,
604 ) -> bool {
605 unsafe {
606 ::unity::il2cpp_call!((::unity::module_base()+0x2a60bd0usize)as*mut u8,bool;
607(::unity::Il2CppString)::core::convert::Into::into(pid),(bool)::core::convert::Into::into(without_a_plus))
608 }
609 }
610
611 #[doc = "`CanAnyRelianceLevelUpPlayer(::unity::Il2CppString, bool)` overload"]
612 pub fn can_any_reliance_level_up_player(
613 pid: impl ::core::convert::Into<::unity::Il2CppString>,
614 without_a_plus: impl ::core::convert::Into<bool>,
615 ) -> bool {
616 unsafe {
617 ::unity::il2cpp_call!((::unity::module_base()+0x2a61360usize)as*mut u8,bool;
618(::unity::Il2CppString)::core::convert::Into::into(pid),(bool)::core::convert::Into::into(without_a_plus))
619 }
620 }
621
622 #[doc = "`GetAPlusAsciiName()` overload"]
623 pub fn get_a_plus_ascii_name() -> ::unity::Il2CppString {
624 unsafe {
625 ::unity::il2cpp_call!((::unity::module_base()+0x2a616d0usize)as*mut u8, ::unity::Il2CppString;
626 )
627 }
628 }
629
630 #[doc = "`ContinuousSortieCount(::unity::Il2CppString)` overload"]
631 pub fn continuous_sortie_count(pid: impl ::core::convert::Into<::unity::Il2CppString>) -> i32 {
632 unsafe {
633 ::unity::il2cpp_call!((::unity::module_base()+0x2a61750usize)as*mut u8,i32;
634(::unity::Il2CppString)::core::convert::Into::into(pid))
635 }
636 }
637
638 #[doc = "`IsExistsMID(::unity::Il2CppString)` overload"]
639 pub fn is_exists_mid(label: impl ::core::convert::Into<::unity::Il2CppString>) -> bool {
640 unsafe {
641 ::unity::il2cpp_call!((::unity::module_base()+0x2a61790usize)as*mut u8,bool;
642(::unity::Il2CppString)::core::convert::Into::into(label))
643 }
644 }
645
646 #[doc = "`HasStoryTalk(::unity::Il2CppString)` overload"]
647 pub fn has_story_talk(pid: impl ::core::convert::Into<::unity::Il2CppString>) -> bool {
648 unsafe {
649 ::unity::il2cpp_call!((::unity::module_base()+0x2a61870usize)as*mut u8,bool;
650(::unity::Il2CppString)::core::convert::Into::into(pid))
651 }
652 }
653
654 #[doc = "`HasSwimsuit(::unity::Il2CppString)` overload"]
655 pub fn has_swimsuit(pid: impl ::core::convert::Into<::unity::Il2CppString>) -> bool {
656 unsafe {
657 ::unity::il2cpp_call!((::unity::module_base()+0x2a61b80usize)as*mut u8,bool;
658(::unity::Il2CppString)::core::convert::Into::into(pid))
659 }
660 }
661
662 #[doc = "`GetSwimsuit()` overload"]
663 pub fn get_swimsuit() -> crate::app::accessorydata::AccessoryData {
664 unsafe {
665 ::unity::il2cpp_call!((::unity::module_base()+0x2a61c60usize)as*mut u8,crate::app::accessorydata::AccessoryData;
666 )
667 }
668 }
669
670 #[doc = "`GetAnimal(::unity::Il2CppString)` overload"]
671 pub fn get_animal(locator: impl ::core::convert::Into<::unity::Il2CppString>) -> crate::app::animaldata::AnimalData {
672 unsafe {
673 ::unity::il2cpp_call!((::unity::module_base()+0x2a61e40usize)as*mut u8,crate::app::animaldata::AnimalData;
674(::unity::Il2CppString)::core::convert::Into::into(locator))
675 }
676 }
677
678 #[doc = "`IsCaptureAnimal(crate::app::animaldata::AnimalData)` overload"]
679 pub fn is_capture_animal(animal: impl ::core::convert::Into<crate::app::animaldata::AnimalData>) -> bool {
680 unsafe {
681 ::unity::il2cpp_call!((::unity::module_base()+0x2a622c0usize)as*mut u8,bool;
682(crate::app::animaldata::AnimalData)::core::convert::Into::into(animal))
683 }
684 }
685
686 #[doc = "`GetAnimalCaptureNum(crate::app::animaldata::AnimalData)` overload"]
687 pub fn get_animal_capture_num(animal: impl ::core::convert::Into<crate::app::animaldata::AnimalData>) -> i32 {
688 unsafe {
689 ::unity::il2cpp_call!((::unity::module_base()+0x2a62370usize)as*mut u8,i32;
690(crate::app::animaldata::AnimalData)::core::convert::Into::into(animal))
691 }
692 }
693
694 #[doc = "`SetAnimalCaptureNum(crate::app::animaldata::AnimalData, i32)` overload"]
695 pub fn set_animal_capture_num(
696 animal: impl ::core::convert::Into<crate::app::animaldata::AnimalData>,
697 num: impl ::core::convert::Into<i32>,
698 ) -> () {
699 unsafe {
700 ::unity::il2cpp_call!((::unity::module_base()+0x2a62460usize)as*mut u8,();
701(crate::app::animaldata::AnimalData)::core::convert::Into::into(animal),(i32)::core::convert::Into::into(num))
702 }
703 }
704
705 #[doc = "`IncAnimalCaptureNum(crate::app::animaldata::AnimalData, i32)` overload"]
706 pub fn inc_animal_capture_num(
707 animal: impl ::core::convert::Into<crate::app::animaldata::AnimalData>,
708 num: impl ::core::convert::Into<i32>,
709 ) -> () {
710 unsafe {
711 ::unity::il2cpp_call!((::unity::module_base()+0x2a62640usize)as*mut u8,();
712(crate::app::animaldata::AnimalData)::core::convert::Into::into(animal),(i32)::core::convert::Into::into(num))
713 }
714 }
715
716 #[doc = "`get_EncountMaterialBase()` overload"]
717 pub fn get_encount_material_base() -> i32 {
718 unsafe {
719 ::unity::il2cpp_call!((::unity::module_base()+0x2a626c0usize)as*mut u8,i32;
720 )
721 }
722 }
723
724 #[doc = "`GetEncountMaterialItemCount()` overload"]
725 pub fn get_encount_material_item_count() -> i32 {
726 unsafe {
727 ::unity::il2cpp_call!((::unity::module_base()+0x2a62800usize)as*mut u8,i32;
728 )
729 }
730 }
731
732 #[doc = "`GetItemCountWithBonus(crate::app::itemdata::ItemData, i32)` overload"]
733 pub fn get_item_count_with_bonus(
734 item: impl ::core::convert::Into<crate::app::itemdata::ItemData>,
735 base_count: impl ::core::convert::Into<i32>,
736 ) -> i32 {
737 unsafe {
738 ::unity::il2cpp_call!((::unity::module_base()+0x2a629c0usize)as*mut u8,i32;
739(crate::app::itemdata::ItemData)::core::convert::Into::into(item),(i32)::core::convert::Into::into(base_count))
740 }
741 }
742
743 #[doc = "`UpdateLocate(::unity::Il2CppString)` overload"]
744 pub fn update_locate(pid: impl ::core::convert::Into<::unity::Il2CppString>) -> () {
745 unsafe {
746 ::unity::il2cpp_call!((::unity::module_base()+0x2a62b80usize)as*mut u8,();
747(::unity::Il2CppString)::core::convert::Into::into(pid))
748 }
749 }
750
751 #[doc = "`get_IsFirstEntry()` overload"]
752 pub fn get_is_first_entry() -> bool {
753 unsafe {
754 ::unity::il2cpp_call!((::unity::module_base()+0x2a62c90usize)as*mut u8,bool;
755 )
756 }
757 }
758
759 #[doc = "`set_IsFirstEntry(bool)` overload"]
760 pub fn set_is_first_entry(value: impl ::core::convert::Into<bool>) -> () {
761 unsafe {
762 ::unity::il2cpp_call!((::unity::module_base()+0x2a62d00usize)as*mut u8,();
763(bool)::core::convert::Into::into(value))
764 }
765 }
766
767 #[doc = "`get_LastScenarioChapter()` overload"]
768 pub fn get_last_scenario_chapter() -> ::unity::Il2CppString {
769 unsafe {
770 ::unity::il2cpp_call!((::unity::module_base()+0x2a62d80usize)as*mut u8, ::unity::Il2CppString;
771 )
772 }
773 }
774
775 #[doc = "`set_LastScenarioChapter(::unity::Il2CppString)` overload"]
776 pub fn set_last_scenario_chapter(value: impl ::core::convert::Into<::unity::Il2CppString>) -> () {
777 unsafe {
778 ::unity::il2cpp_call!((::unity::module_base()+0x2a62df0usize)as*mut u8,();
779(::unity::Il2CppString)::core::convert::Into::into(value))
780 }
781 }
782
783 #[doc = "`get_IsConditionMorning()` overload"]
784 pub fn get_is_condition_morning() -> bool {
785 unsafe {
786 ::unity::il2cpp_call!((::unity::module_base()+0x2a62e70usize)as*mut u8,bool;
787 )
788 }
789 }
790
791 #[doc = "`set_IsConditionMorning(bool)` overload"]
792 pub fn set_is_condition_morning(value: impl ::core::convert::Into<bool>) -> () {
793 unsafe {
794 ::unity::il2cpp_call!((::unity::module_base()+0x2a62ee0usize)as*mut u8,();
795(bool)::core::convert::Into::into(value))
796 }
797 }
798
799 #[doc = "`get_IsConditionDay()` overload"]
800 pub fn get_is_condition_day() -> bool {
801 unsafe {
802 ::unity::il2cpp_call!((::unity::module_base()+0x2a62f60usize)as*mut u8,bool;
803 )
804 }
805 }
806
807 #[doc = "`set_IsConditionDay(bool)` overload"]
808 pub fn set_is_condition_day(value: impl ::core::convert::Into<bool>) -> () {
809 unsafe {
810 ::unity::il2cpp_call!((::unity::module_base()+0x2a62fd0usize)as*mut u8,();
811(bool)::core::convert::Into::into(value))
812 }
813 }
814
815 #[doc = "`get_IsConditionEvening()` overload"]
816 pub fn get_is_condition_evening() -> bool {
817 unsafe {
818 ::unity::il2cpp_call!((::unity::module_base()+0x2a63050usize)as*mut u8,bool;
819 )
820 }
821 }
822
823 #[doc = "`set_IsConditionEvening(bool)` overload"]
824 pub fn set_is_condition_evening(value: impl ::core::convert::Into<bool>) -> () {
825 unsafe {
826 ::unity::il2cpp_call!((::unity::module_base()+0x2a630c0usize)as*mut u8,();
827(bool)::core::convert::Into::into(value))
828 }
829 }
830
831 #[doc = "`get_IsConditionNight()` overload"]
832 pub fn get_is_condition_night() -> bool {
833 unsafe {
834 ::unity::il2cpp_call!((::unity::module_base()+0x2a63140usize)as*mut u8,bool;
835 )
836 }
837 }
838
839 #[doc = "`set_IsConditionNight(bool)` overload"]
840 pub fn set_is_condition_night(value: impl ::core::convert::Into<bool>) -> () {
841 unsafe {
842 ::unity::il2cpp_call!((::unity::module_base()+0x2a631b0usize)as*mut u8,();
843(bool)::core::convert::Into::into(value))
844 }
845 }
846
847 #[doc = "`get_IsConditionWeaponOpened()` overload"]
848 pub fn get_is_condition_weapon_opened() -> bool {
849 unsafe {
850 ::unity::il2cpp_call!((::unity::module_base()+0x2a63230usize)as*mut u8,bool;
851 )
852 }
853 }
854
855 #[doc = "`set_IsConditionWeaponOpened(bool)` overload"]
856 pub fn set_is_condition_weapon_opened(value: impl ::core::convert::Into<bool>) -> () {
857 unsafe {
858 ::unity::il2cpp_call!((::unity::module_base()+0x2a632a0usize)as*mut u8,();
859(bool)::core::convert::Into::into(value))
860 }
861 }
862
863 #[doc = "`get_IsConditionItemOpened()` overload"]
864 pub fn get_is_condition_item_opened() -> bool {
865 unsafe {
866 ::unity::il2cpp_call!((::unity::module_base()+0x2a63320usize)as*mut u8,bool;
867 )
868 }
869 }
870
871 #[doc = "`set_IsConditionItemOpened(bool)` overload"]
872 pub fn set_is_condition_item_opened(value: impl ::core::convert::Into<bool>) -> () {
873 unsafe {
874 ::unity::il2cpp_call!((::unity::module_base()+0x2a63390usize)as*mut u8,();
875(bool)::core::convert::Into::into(value))
876 }
877 }
878
879 #[doc = "`get_IsConditionRefinementOpened()` overload"]
880 pub fn get_is_condition_refinement_opened() -> bool {
881 unsafe {
882 ::unity::il2cpp_call!((::unity::module_base()+0x2a63410usize)as*mut u8,bool;
883 )
884 }
885 }
886
887 #[doc = "`set_IsConditionRefinementOpened(bool)` overload"]
888 pub fn set_is_condition_refinement_opened(value: impl ::core::convert::Into<bool>) -> () {
889 unsafe {
890 ::unity::il2cpp_call!((::unity::module_base()+0x2a63480usize)as*mut u8,();
891(bool)::core::convert::Into::into(value))
892 }
893 }
894
895 #[doc = "`get_IsConditionAccessoryOpened()` overload"]
896 pub fn get_is_condition_accessory_opened() -> bool {
897 unsafe {
898 ::unity::il2cpp_call!((::unity::module_base()+0x2a63500usize)as*mut u8,bool;
899 )
900 }
901 }
902
903 #[doc = "`set_IsConditionAccessoryOpened(bool)` overload"]
904 pub fn set_is_condition_accessory_opened(value: impl ::core::convert::Into<bool>) -> () {
905 unsafe {
906 ::unity::il2cpp_call!((::unity::module_base()+0x2a63570usize)as*mut u8,();
907(bool)::core::convert::Into::into(value))
908 }
909 }
910
911 #[doc = "`get_IsConditionTent1()` overload"]
912 pub fn get_is_condition_tent1() -> bool {
913 unsafe {
914 ::unity::il2cpp_call!((::unity::module_base()+0x2a635f0usize)as*mut u8,bool;
915 )
916 }
917 }
918
919 #[doc = "`set_IsConditionTent1(bool)` overload"]
920 pub fn set_is_condition_tent1(value: impl ::core::convert::Into<bool>) -> () {
921 unsafe {
922 ::unity::il2cpp_call!((::unity::module_base()+0x2a63660usize)as*mut u8,();
923(bool)::core::convert::Into::into(value))
924 }
925 }
926
927 #[doc = "`get_IsConditionTent2()` overload"]
928 pub fn get_is_condition_tent2() -> bool {
929 unsafe {
930 ::unity::il2cpp_call!((::unity::module_base()+0x2a636e0usize)as*mut u8,bool;
931 )
932 }
933 }
934
935 #[doc = "`set_IsConditionTent2(bool)` overload"]
936 pub fn set_is_condition_tent2(value: impl ::core::convert::Into<bool>) -> () {
937 unsafe {
938 ::unity::il2cpp_call!((::unity::module_base()+0x2a63750usize)as*mut u8,();
939(bool)::core::convert::Into::into(value))
940 }
941 }
942
943 #[doc = "`get_IsConditionTent3()` overload"]
944 pub fn get_is_condition_tent3() -> bool {
945 unsafe {
946 ::unity::il2cpp_call!((::unity::module_base()+0x2a637d0usize)as*mut u8,bool;
947 )
948 }
949 }
950
951 #[doc = "`set_IsConditionTent3(bool)` overload"]
952 pub fn set_is_condition_tent3(value: impl ::core::convert::Into<bool>) -> () {
953 unsafe {
954 ::unity::il2cpp_call!((::unity::module_base()+0x2a63840usize)as*mut u8,();
955(bool)::core::convert::Into::into(value))
956 }
957 }
958
959 #[doc = "`get_IsConditionFire()` overload"]
960 pub fn get_is_condition_fire() -> bool {
961 unsafe {
962 ::unity::il2cpp_call!((::unity::module_base()+0x2a638c0usize)as*mut u8,bool;
963 )
964 }
965 }
966
967 #[doc = "`set_IsConditionFire(bool)` overload"]
968 pub fn set_is_condition_fire(value: impl ::core::convert::Into<bool>) -> () {
969 unsafe {
970 ::unity::il2cpp_call!((::unity::module_base()+0x2a63930usize)as*mut u8,();
971(bool)::core::convert::Into::into(value))
972 }
973 }
974
975 #[doc = "`get_IsConditionFortuneHutOpened()` overload"]
976 pub fn get_is_condition_fortune_hut_opened() -> bool {
977 unsafe {
978 ::unity::il2cpp_call!((::unity::module_base()+0x2a639b0usize)as*mut u8,bool;
979 )
980 }
981 }
982
983 #[doc = "`set_IsConditionFortuneHutOpened(bool)` overload"]
984 pub fn set_is_condition_fortune_hut_opened(value: impl ::core::convert::Into<bool>) -> () {
985 unsafe {
986 ::unity::il2cpp_call!((::unity::module_base()+0x2a63a20usize)as*mut u8,();
987(bool)::core::convert::Into::into(value))
988 }
989 }
990
991 #[doc = "`get_IsConditionFleaMarket()` overload"]
992 pub fn get_is_condition_flea_market() -> bool {
993 unsafe {
994 ::unity::il2cpp_call!((::unity::module_base()+0x2a63aa0usize)as*mut u8,bool;
995 )
996 }
997 }
998
999 #[doc = "`set_IsConditionFleaMarket(bool)` overload"]
1000 pub fn set_is_condition_flea_market(value: impl ::core::convert::Into<bool>) -> () {
1001 unsafe {
1002 ::unity::il2cpp_call!((::unity::module_base()+0x2a63b10usize)as*mut u8,();
1003(bool)::core::convert::Into::into(value))
1004 }
1005 }
1006
1007 #[doc = "`get_IsConditionStatue()` overload"]
1008 pub fn get_is_condition_statue() -> bool {
1009 unsafe {
1010 ::unity::il2cpp_call!((::unity::module_base()+0x2a63b90usize)as*mut u8,bool;
1011 )
1012 }
1013 }
1014
1015 #[doc = "`set_IsConditionStatue(bool)` overload"]
1016 pub fn set_is_condition_statue(value: impl ::core::convert::Into<bool>) -> () {
1017 unsafe {
1018 ::unity::il2cpp_call!((::unity::module_base()+0x2a63c00usize)as*mut u8,();
1019(bool)::core::convert::Into::into(value))
1020 }
1021 }
1022
1023 #[doc = "`get_IsConditionRefineGodWeaponOpened()` overload"]
1024 pub fn get_is_condition_refine_god_weapon_opened() -> bool {
1025 unsafe {
1026 ::unity::il2cpp_call!((::unity::module_base()+0x2a63c80usize)as*mut u8,bool;
1027 )
1028 }
1029 }
1030
1031 #[doc = "`set_IsConditionRefineGodWeaponOpened(bool)` overload"]
1032 pub fn set_is_condition_refine_god_weapon_opened(value: impl ::core::convert::Into<bool>) -> () {
1033 unsafe {
1034 ::unity::il2cpp_call!((::unity::module_base()+0x2a63cf0usize)as*mut u8,();
1035(bool)::core::convert::Into::into(value))
1036 }
1037 }
1038
1039 #[doc = "`get_IsConditionMuscleHardOpened()` overload"]
1040 pub fn get_is_condition_muscle_hard_opened() -> bool {
1041 unsafe {
1042 ::unity::il2cpp_call!((::unity::module_base()+0x2a63d70usize)as*mut u8,bool;
1043 )
1044 }
1045 }
1046
1047 #[doc = "`set_IsConditionMuscleHardOpened(bool)` overload"]
1048 pub fn set_is_condition_muscle_hard_opened(value: impl ::core::convert::Into<bool>) -> () {
1049 unsafe {
1050 ::unity::il2cpp_call!((::unity::module_base()+0x2a63de0usize)as*mut u8,();
1051(bool)::core::convert::Into::into(value))
1052 }
1053 }
1054
1055 #[doc = "`get_IsConditionMuscleMasterAndEndlessOpened()` overload"]
1056 pub fn get_is_condition_muscle_master_and_endless_opened() -> bool {
1057 unsafe {
1058 ::unity::il2cpp_call!((::unity::module_base()+0x2a63e60usize)as*mut u8,bool;
1059 )
1060 }
1061 }
1062
1063 #[doc = "`set_IsConditionMuscleMasterAndEndlessOpened(bool)` overload"]
1064 pub fn set_is_condition_muscle_master_and_endless_opened(value: impl ::core::convert::Into<bool>) -> () {
1065 unsafe {
1066 ::unity::il2cpp_call!((::unity::module_base()+0x2a63ed0usize)as*mut u8,();
1067(bool)::core::convert::Into::into(value))
1068 }
1069 }
1070
1071 #[doc = "`get_IsConditionDragonRideHardOpened()` overload"]
1072 pub fn get_is_condition_dragon_ride_hard_opened() -> bool {
1073 unsafe {
1074 ::unity::il2cpp_call!((::unity::module_base()+0x2a63f50usize)as*mut u8,bool;
1075 )
1076 }
1077 }
1078
1079 #[doc = "`set_IsConditionDragonRideHardOpened(bool)` overload"]
1080 pub fn set_is_condition_dragon_ride_hard_opened(value: impl ::core::convert::Into<bool>) -> () {
1081 unsafe {
1082 ::unity::il2cpp_call!((::unity::module_base()+0x2a63fc0usize)as*mut u8,();
1083(bool)::core::convert::Into::into(value))
1084 }
1085 }
1086
1087 #[doc = "`get_IsConditionDragonRideExpertOpened()` overload"]
1088 pub fn get_is_condition_dragon_ride_expert_opened() -> bool {
1089 unsafe {
1090 ::unity::il2cpp_call!((::unity::module_base()+0x2a64040usize)as*mut u8,bool;
1091 )
1092 }
1093 }
1094
1095 #[doc = "`set_IsConditionDragonRideExpertOpened(bool)` overload"]
1096 pub fn set_is_condition_dragon_ride_expert_opened(value: impl ::core::convert::Into<bool>) -> () {
1097 unsafe {
1098 ::unity::il2cpp_call!((::unity::module_base()+0x2a640b0usize)as*mut u8,();
1099(bool)::core::convert::Into::into(value))
1100 }
1101 }
1102
1103 #[doc = "`get_IsConditionPoolCircleSwim()` overload"]
1104 pub fn get_is_condition_pool_circle_swim() -> bool {
1105 unsafe {
1106 ::unity::il2cpp_call!((::unity::module_base()+0x2a64130usize)as*mut u8,bool;
1107 )
1108 }
1109 }
1110
1111 #[doc = "`set_IsConditionPoolCircleSwim(bool)` overload"]
1112 pub fn set_is_condition_pool_circle_swim(value: impl ::core::convert::Into<bool>) -> () {
1113 unsafe {
1114 ::unity::il2cpp_call!((::unity::module_base()+0x2a641a0usize)as*mut u8,();
1115(bool)::core::convert::Into::into(value))
1116 }
1117 }
1118
1119 #[doc = "`IsFirstAccessRefineGodWeapon()` overload"]
1120 pub fn is_first_access_refine_god_weapon() -> bool {
1121 unsafe {
1122 ::unity::il2cpp_call!((::unity::module_base()+0x2a64220usize)as*mut u8,bool;
1123 )
1124 }
1125 }
1126
1127 #[doc = "`SetFirstAccessRefineGodWeapon()` overload"]
1128 pub fn set_first_access_refine_god_weapon() -> () {
1129 unsafe {
1130 ::unity::il2cpp_call!((::unity::module_base()+0x2a64320usize)as*mut u8,();
1131 )
1132 }
1133 }
1134
1135 #[doc = "`get_CurrentCookingPid()` overload"]
1136 pub fn get_current_cooking_pid() -> ::unity::Il2CppString {
1137 unsafe {
1138 ::unity::il2cpp_call!((::unity::module_base()+0x2a64450usize)as*mut u8, ::unity::Il2CppString;
1139 )
1140 }
1141 }
1142
1143 #[doc = "`set_CurrentCookingPid(::unity::Il2CppString)` overload"]
1144 pub fn set_current_cooking_pid(value: impl ::core::convert::Into<::unity::Il2CppString>) -> () {
1145 unsafe {
1146 ::unity::il2cpp_call!((::unity::module_base()+0x2a644c0usize)as*mut u8,();
1147(::unity::Il2CppString)::core::convert::Into::into(value))
1148 }
1149 }
1150
1151 #[doc = "`get_PersonLimitCount()` overload"]
1152 pub fn get_person_limit_count() -> i32 {
1153 unsafe {
1154 ::unity::il2cpp_call!((::unity::module_base()+0x2a64540usize)as*mut u8,i32;
1155 )
1156 }
1157 }
1158
1159 #[doc = "`get_GodPersonLimitCount()` overload"]
1160 pub fn get_god_person_limit_count() -> i32 {
1161 unsafe {
1162 ::unity::il2cpp_call!((::unity::module_base()+0x2a64590usize)as*mut u8,i32;
1163 )
1164 }
1165 }
1166
1167 #[doc = "`get_AnimalLimitCount()` overload"]
1168 pub fn get_animal_limit_count() -> i32 {
1169 unsafe {
1170 ::unity::il2cpp_call!((::unity::module_base()+0x2a645e0usize)as*mut u8,i32;
1171 )
1172 }
1173 }
1174
1175 #[doc = "`get_KizunaPersonLimitCount()` overload"]
1176 pub fn get_kizuna_person_limit_count() -> i32 {
1177 unsafe {
1178 ::unity::il2cpp_call!((::unity::module_base()+0x2a64630usize)as*mut u8,i32;
1179 )
1180 }
1181 }
1182
1183 #[doc = "`get_DragonRideLevel()` overload"]
1184 pub fn get_dragon_ride_level() -> i32 {
1185 unsafe {
1186 ::unity::il2cpp_call!((::unity::module_base()+0x2a64680usize)as*mut u8,i32;
1187 )
1188 }
1189 }
1190
1191 #[doc = "`set_DragonRideLevel(i32)` overload"]
1192 pub fn set_dragon_ride_level(value: impl ::core::convert::Into<i32>) -> () {
1193 unsafe {
1194 ::unity::il2cpp_call!((::unity::module_base()+0x2a646f0usize)as*mut u8,();
1195(i32)::core::convert::Into::into(value))
1196 }
1197 }
1198
1199 #[doc = "`get_IsDragonRideTimeTest()` overload"]
1200 pub fn get_is_dragon_ride_time_test() -> bool {
1201 unsafe {
1202 ::unity::il2cpp_call!((::unity::module_base()+0x2a64760usize)as*mut u8,bool;
1203 )
1204 }
1205 }
1206
1207 #[doc = "`set_IsDragonRideTimeTest(bool)` overload"]
1208 pub fn set_is_dragon_ride_time_test(value: impl ::core::convert::Into<bool>) -> () {
1209 unsafe {
1210 ::unity::il2cpp_call!((::unity::module_base()+0x2a647d0usize)as*mut u8,();
1211(bool)::core::convert::Into::into(value))
1212 }
1213 }
1214
1215 #[doc = "`get_IsDragonRideWalkThrough()` overload"]
1216 pub fn get_is_dragon_ride_walk_through() -> bool {
1217 unsafe {
1218 ::unity::il2cpp_call!((::unity::module_base()+0x2a64850usize)as*mut u8,bool;
1219 )
1220 }
1221 }
1222
1223 #[doc = "`set_IsDragonRideWalkThrough(bool)` overload"]
1224 pub fn set_is_dragon_ride_walk_through(value: impl ::core::convert::Into<bool>) -> () {
1225 unsafe {
1226 ::unity::il2cpp_call!((::unity::module_base()+0x2a648c0usize)as*mut u8,();
1227(bool)::core::convert::Into::into(value))
1228 }
1229 }
1230
1231 #[doc = "`get_DragonRideTotalScore()` overload"]
1232 pub fn get_dragon_ride_total_score() -> i32 {
1233 unsafe {
1234 ::unity::il2cpp_call!((::unity::module_base()+0x2a64940usize)as*mut u8,i32;
1235 )
1236 }
1237 }
1238
1239 #[doc = "`set_DragonRideTotalScore(i32)` overload"]
1240 pub fn set_dragon_ride_total_score(value: impl ::core::convert::Into<i32>) -> () {
1241 unsafe {
1242 ::unity::il2cpp_call!((::unity::module_base()+0x2a649b0usize)as*mut u8,();
1243(i32)::core::convert::Into::into(value))
1244 }
1245 }
1246
1247 #[doc = "`get_DragonRideNormalTargetCount()` overload"]
1248 pub fn get_dragon_ride_normal_target_count() -> i32 {
1249 unsafe {
1250 ::unity::il2cpp_call!((::unity::module_base()+0x2a64a20usize)as*mut u8,i32;
1251 )
1252 }
1253 }
1254
1255 #[doc = "`set_DragonRideNormalTargetCount(i32)` overload"]
1256 pub fn set_dragon_ride_normal_target_count(value: impl ::core::convert::Into<i32>) -> () {
1257 unsafe {
1258 ::unity::il2cpp_call!((::unity::module_base()+0x2a64a90usize)as*mut u8,();
1259(i32)::core::convert::Into::into(value))
1260 }
1261 }
1262
1263 #[doc = "`get_DragonRideBigTargetCount()` overload"]
1264 pub fn get_dragon_ride_big_target_count() -> i32 {
1265 unsafe {
1266 ::unity::il2cpp_call!((::unity::module_base()+0x2a64b00usize)as*mut u8,i32;
1267 )
1268 }
1269 }
1270
1271 #[doc = "`set_DragonRideBigTargetCount(i32)` overload"]
1272 pub fn set_dragon_ride_big_target_count(value: impl ::core::convert::Into<i32>) -> () {
1273 unsafe {
1274 ::unity::il2cpp_call!((::unity::module_base()+0x2a64b70usize)as*mut u8,();
1275(i32)::core::convert::Into::into(value))
1276 }
1277 }
1278
1279 #[doc = "`get_DragonRideLinkTargetCount()` overload"]
1280 pub fn get_dragon_ride_link_target_count() -> i32 {
1281 unsafe {
1282 ::unity::il2cpp_call!((::unity::module_base()+0x2a64be0usize)as*mut u8,i32;
1283 )
1284 }
1285 }
1286
1287 #[doc = "`set_DragonRideLinkTargetCount(i32)` overload"]
1288 pub fn set_dragon_ride_link_target_count(value: impl ::core::convert::Into<i32>) -> () {
1289 unsafe {
1290 ::unity::il2cpp_call!((::unity::module_base()+0x2a64c50usize)as*mut u8,();
1291(i32)::core::convert::Into::into(value))
1292 }
1293 }
1294
1295 #[doc = "`get_DragonRideSpecialTargetCount()` overload"]
1296 pub fn get_dragon_ride_special_target_count() -> i32 {
1297 unsafe {
1298 ::unity::il2cpp_call!((::unity::module_base()+0x2a64cc0usize)as*mut u8,i32;
1299 )
1300 }
1301 }
1302
1303 #[doc = "`set_DragonRideSpecialTargetCount(i32)` overload"]
1304 pub fn set_dragon_ride_special_target_count(value: impl ::core::convert::Into<i32>) -> () {
1305 unsafe {
1306 ::unity::il2cpp_call!((::unity::module_base()+0x2a64d30usize)as*mut u8,();
1307(i32)::core::convert::Into::into(value))
1308 }
1309 }
1310
1311 #[doc = "`get_DragonRideRouletteTargetCount()` overload"]
1312 pub fn get_dragon_ride_roulette_target_count() -> i32 {
1313 unsafe {
1314 ::unity::il2cpp_call!((::unity::module_base()+0x2a64da0usize)as*mut u8,i32;
1315 )
1316 }
1317 }
1318
1319 #[doc = "`set_DragonRideRouletteTargetCount(i32)` overload"]
1320 pub fn set_dragon_ride_roulette_target_count(value: impl ::core::convert::Into<i32>) -> () {
1321 unsafe {
1322 ::unity::il2cpp_call!((::unity::module_base()+0x2a64e10usize)as*mut u8,();
1323(i32)::core::convert::Into::into(value))
1324 }
1325 }
1326
1327 #[doc = "`get_DragonRideAssistScore()` overload"]
1328 pub fn get_dragon_ride_assist_score() -> i32 {
1329 unsafe {
1330 ::unity::il2cpp_call!((::unity::module_base()+0x2a64e80usize)as*mut u8,i32;
1331 )
1332 }
1333 }
1334
1335 #[doc = "`set_DragonRideAssistScore(i32)` overload"]
1336 pub fn set_dragon_ride_assist_score(value: impl ::core::convert::Into<i32>) -> () {
1337 unsafe {
1338 ::unity::il2cpp_call!((::unity::module_base()+0x2a64ef0usize)as*mut u8,();
1339(i32)::core::convert::Into::into(value))
1340 }
1341 }
1342
1343 #[doc = "`get_DragonRidePlayRankNum()` overload"]
1344 pub fn get_dragon_ride_play_rank_num() -> i32 {
1345 unsafe {
1346 ::unity::il2cpp_call!((::unity::module_base()+0x2a64f60usize)as*mut u8,i32;
1347 )
1348 }
1349 }
1350
1351 #[doc = "`set_DragonRidePlayRankNum(i32)` overload"]
1352 pub fn set_dragon_ride_play_rank_num(value: impl ::core::convert::Into<i32>) -> () {
1353 unsafe {
1354 ::unity::il2cpp_call!((::unity::module_base()+0x2a64fd0usize)as*mut u8,();
1355(i32)::core::convert::Into::into(value))
1356 }
1357 }
1358
1359 #[doc = "`get_DragonRideRetireFlag()` overload"]
1360 pub fn get_dragon_ride_retire_flag() -> bool {
1361 unsafe {
1362 ::unity::il2cpp_call!((::unity::module_base()+0x2a65040usize)as*mut u8,bool;
1363 )
1364 }
1365 }
1366
1367 #[doc = "`set_DragonRideRetireFlag(bool)` overload"]
1368 pub fn set_dragon_ride_retire_flag(value: impl ::core::convert::Into<bool>) -> () {
1369 unsafe {
1370 ::unity::il2cpp_call!((::unity::module_base()+0x2a650b0usize)as*mut u8,();
1371(bool)::core::convert::Into::into(value))
1372 }
1373 }
1374
1375 #[doc = "`get_DragonRideWalkThroughList()` overload"]
1376 pub fn get_dragon_ride_walk_through_list() -> ::unity::Array<crate::app::dragonridepresetparamdata::DragonRidePresetParamData_CourseData> {
1377 unsafe {
1378 ::unity::il2cpp_call!((::unity::module_base()+0x2a65130usize)as*mut u8, ::unity::Array<crate::app::dragonridepresetparamdata::DragonRidePresetParamData_CourseData> ;
1379 )
1380 }
1381 }
1382
1383 #[doc = "`set_DragonRideWalkThroughList(::unity::Array<crate::app::dragonridepresetparamdata::DragonRidePresetParamData_CourseData>)` overload"]
1384 pub fn set_dragon_ride_walk_through_list(
1385 value: impl ::core::convert::Into<::unity::Array<crate::app::dragonridepresetparamdata::DragonRidePresetParamData_CourseData>>,
1386 ) -> () {
1387 unsafe {
1388 ::unity::il2cpp_call!((::unity::module_base()+0x2a651a0usize)as*mut u8,();
1389(::unity::Array<crate::app::dragonridepresetparamdata::DragonRidePresetParamData_CourseData>)::core::convert::Into::into(value))
1390 }
1391 }
1392
1393 #[doc = "`get_DragonRideUsingPresetID()` overload"]
1394 pub fn get_dragon_ride_using_preset_id() -> ::unity::Il2CppString {
1395 unsafe {
1396 ::unity::il2cpp_call!((::unity::module_base()+0x2a65220usize)as*mut u8, ::unity::Il2CppString;
1397 )
1398 }
1399 }
1400
1401 #[doc = "`set_DragonRideUsingPresetID(::unity::Il2CppString)` overload"]
1402 pub fn set_dragon_ride_using_preset_id(value: impl ::core::convert::Into<::unity::Il2CppString>) -> () {
1403 unsafe {
1404 ::unity::il2cpp_call!((::unity::module_base()+0x2a65290usize)as*mut u8,();
1405(::unity::Il2CppString)::core::convert::Into::into(value))
1406 }
1407 }
1408
1409 #[doc = "`get_DragonRideTargetSuicideSec()` overload"]
1410 pub fn get_dragon_ride_target_suicide_sec() -> f32 {
1411 unsafe {
1412 ::unity::il2cpp_call!((::unity::module_base()+0x2a65310usize)as*mut u8,f32;
1413 )
1414 }
1415 }
1416
1417 #[doc = "`set_DragonRideTargetSuicideSec(f32)` overload"]
1418 pub fn set_dragon_ride_target_suicide_sec(value: impl ::core::convert::Into<f32>) -> () {
1419 unsafe {
1420 ::unity::il2cpp_call!((::unity::module_base()+0x2a65380usize)as*mut u8,();
1421(f32)::core::convert::Into::into(value))
1422 }
1423 }
1424
1425 #[doc = "`get_DragonRideTargetSuicideSecRandomRange()` overload"]
1426 pub fn get_dragon_ride_target_suicide_sec_random_range() -> f32 {
1427 unsafe {
1428 ::unity::il2cpp_call!((::unity::module_base()+0x2a653f0usize)as*mut u8,f32;
1429 )
1430 }
1431 }
1432
1433 #[doc = "`set_DragonRideTargetSuicideSecRandomRange(f32)` overload"]
1434 pub fn set_dragon_ride_target_suicide_sec_random_range(value: impl ::core::convert::Into<f32>) -> () {
1435 unsafe {
1436 ::unity::il2cpp_call!((::unity::module_base()+0x2a65460usize)as*mut u8,();
1437(f32)::core::convert::Into::into(value))
1438 }
1439 }
1440
1441 #[doc = "`get_DragonRideAssistLevel()` overload"]
1442 pub fn get_dragon_ride_assist_level() -> i32 {
1443 unsafe {
1444 ::unity::il2cpp_call!((::unity::module_base()+0x2a654d0usize)as*mut u8,i32;
1445 )
1446 }
1447 }
1448
1449 #[doc = "`set_DragonRideAssistLevel(i32)` overload"]
1450 pub fn set_dragon_ride_assist_level(value: impl ::core::convert::Into<i32>) -> () {
1451 unsafe {
1452 ::unity::il2cpp_call!((::unity::module_base()+0x2a65540usize)as*mut u8,();
1453(i32)::core::convert::Into::into(value))
1454 }
1455 }
1456
1457 #[doc = "`get_DebugDragonRideAssistSet()` overload"]
1458 pub fn get_debug_dragon_ride_assist_set() -> bool {
1459 unsafe {
1460 ::unity::il2cpp_call!((::unity::module_base()+0x2a655b0usize)as*mut u8,bool;
1461 )
1462 }
1463 }
1464
1465 #[doc = "`set_DebugDragonRideAssistSet(bool)` overload"]
1466 pub fn set_debug_dragon_ride_assist_set(value: impl ::core::convert::Into<bool>) -> () {
1467 unsafe {
1468 ::unity::il2cpp_call!((::unity::module_base()+0x2a65620usize)as*mut u8,();
1469(bool)::core::convert::Into::into(value))
1470 }
1471 }
1472
1473 #[doc = "`get_IsDragonRideResultCheck()` overload"]
1474 pub fn get_is_dragon_ride_result_check() -> bool {
1475 unsafe {
1476 ::unity::il2cpp_call!((::unity::module_base()+0x2a656a0usize)as*mut u8,bool;
1477 )
1478 }
1479 }
1480
1481 #[doc = "`set_IsDragonRideResultCheck(bool)` overload"]
1482 pub fn set_is_dragon_ride_result_check(value: impl ::core::convert::Into<bool>) -> () {
1483 unsafe {
1484 ::unity::il2cpp_call!((::unity::module_base()+0x2a65710usize)as*mut u8,();
1485(bool)::core::convert::Into::into(value))
1486 }
1487 }
1488
1489 #[doc = "`get_IsDragonRideResultCheck_Assist()` overload"]
1490 pub fn get_is_dragon_ride_result_check_assist() -> bool {
1491 unsafe {
1492 ::unity::il2cpp_call!((::unity::module_base()+0x2a65790usize)as*mut u8,bool;
1493 )
1494 }
1495 }
1496
1497 #[doc = "`set_IsDragonRideResultCheck_Assist(bool)` overload"]
1498 pub fn set_is_dragon_ride_result_check_assist(value: impl ::core::convert::Into<bool>) -> () {
1499 unsafe {
1500 ::unity::il2cpp_call!((::unity::module_base()+0x2a65800usize)as*mut u8,();
1501(bool)::core::convert::Into::into(value))
1502 }
1503 }
1504
1505 #[doc = "`get_IsDragonRideResultCheck_HighScore()` overload"]
1506 pub fn get_is_dragon_ride_result_check_high_score() -> bool {
1507 unsafe {
1508 ::unity::il2cpp_call!((::unity::module_base()+0x2a65880usize)as*mut u8,bool;
1509 )
1510 }
1511 }
1512
1513 #[doc = "`set_IsDragonRideResultCheck_HighScore(bool)` overload"]
1514 pub fn set_is_dragon_ride_result_check_high_score(value: impl ::core::convert::Into<bool>) -> () {
1515 unsafe {
1516 ::unity::il2cpp_call!((::unity::module_base()+0x2a658f0usize)as*mut u8,();
1517(bool)::core::convert::Into::into(value))
1518 }
1519 }
1520
1521 #[doc = "`get_FishingLureType()` overload"]
1522 pub fn get_fishing_lure_type() -> i32 {
1523 unsafe {
1524 ::unity::il2cpp_call!((::unity::module_base()+0x2a65970usize)as*mut u8,i32;
1525 )
1526 }
1527 }
1528
1529 #[doc = "`set_FishingLureType(i32)` overload"]
1530 pub fn set_fishing_lure_type(value: impl ::core::convert::Into<i32>) -> () {
1531 unsafe {
1532 ::unity::il2cpp_call!((::unity::module_base()+0x2a659e0usize)as*mut u8,();
1533(i32)::core::convert::Into::into(value))
1534 }
1535 }
1536
1537 #[doc = "`get_FishingGetFishID()` overload"]
1538 pub fn get_fishing_get_fish_id() -> ::unity::Il2CppString {
1539 unsafe {
1540 ::unity::il2cpp_call!((::unity::module_base()+0x2a65a50usize)as*mut u8, ::unity::Il2CppString;
1541 )
1542 }
1543 }
1544
1545 #[doc = "`set_FishingGetFishID(::unity::Il2CppString)` overload"]
1546 pub fn set_fishing_get_fish_id(value: impl ::core::convert::Into<::unity::Il2CppString>) -> () {
1547 unsafe {
1548 ::unity::il2cpp_call!((::unity::module_base()+0x2a65ac0usize)as*mut u8,();
1549(::unity::Il2CppString)::core::convert::Into::into(value))
1550 }
1551 }
1552
1553 #[doc = "`get_FishingGetFishSize()` overload"]
1554 pub fn get_fishing_get_fish_size() -> f32 {
1555 unsafe {
1556 ::unity::il2cpp_call!((::unity::module_base()+0x2a65b40usize)as*mut u8,f32;
1557 )
1558 }
1559 }
1560
1561 #[doc = "`set_FishingGetFishSize(f32)` overload"]
1562 pub fn set_fishing_get_fish_size(value: impl ::core::convert::Into<f32>) -> () {
1563 unsafe {
1564 ::unity::il2cpp_call!((::unity::module_base()+0x2a65bb0usize)as*mut u8,();
1565(f32)::core::convert::Into::into(value))
1566 }
1567 }
1568
1569 #[doc = "`get_IsPlayMuscleExercise()` overload"]
1570 pub fn get_is_play_muscle_exercise() -> bool {
1571 unsafe {
1572 ::unity::il2cpp_call!((::unity::module_base()+0x2a65c20usize)as*mut u8,bool;
1573 )
1574 }
1575 }
1576
1577 #[doc = "`set_IsPlayMuscleExercise(bool)` overload"]
1578 pub fn set_is_play_muscle_exercise(value: impl ::core::convert::Into<bool>) -> () {
1579 unsafe {
1580 ::unity::il2cpp_call!((::unity::module_base()+0x2a65c90usize)as*mut u8,();
1581(bool)::core::convert::Into::into(value))
1582 }
1583 }
1584
1585 #[doc = "`InitializeCondition()` overload"]
1586 pub fn initialize_condition() -> () {
1587 unsafe {
1588 ::unity::il2cpp_call!((::unity::module_base()+0x2a65d10usize)as*mut u8,();
1589 )
1590 }
1591 }
1592
1593 #[doc = "`FinalizeCondition()` overload"]
1594 pub fn finalize_condition() -> () {
1595 unsafe {
1596 ::unity::il2cpp_call!((::unity::module_base()+0x2a674b0usize)as*mut u8,();
1597 )
1598 }
1599 }
1600
1601 #[doc = "`IsCondition(crate::app::hubutil::HubUtil_ConditionType)` overload"]
1602 pub fn is_condition(condition_type: impl ::core::convert::Into<crate::app::hubutil::HubUtil_ConditionType>) -> bool {
1603 unsafe {
1604 ::unity::il2cpp_call!((::unity::module_base()+0x2a67f80usize)as*mut u8,bool;
1605(crate::app::hubutil::HubUtil_ConditionType)::core::convert::Into::into(condition_type))
1606 }
1607 }
1608
1609 #[doc = "`InitCookingPerson()` overload"]
1610 pub fn init_cooking_person() -> () {
1611 unsafe {
1612 ::unity::il2cpp_call!((::unity::module_base()+0x2a67bb0usize)as*mut u8,();
1613 )
1614 }
1615 }
1616
1617 #[doc = "`SetupCharacterDisposType(crate::combat::character::Character, crate::app::hubdisposdata::HubDisposData_DisposTypes)` overload"]
1618 pub fn setup_character_dispos_type(
1619 chara: impl ::core::convert::Into<crate::combat::character::Character>,
1620 dispos_type: impl ::core::convert::Into<crate::app::hubdisposdata::HubDisposData_DisposTypes>,
1621 ) -> () {
1622 unsafe {
1623 ::unity::il2cpp_call!((::unity::module_base()+0x2a68810usize)as*mut u8,();
1624(crate::combat::character::Character)::core::convert::Into::into(chara),(crate::app::hubdisposdata::HubDisposData_DisposTypes)::core::convert::Into::into(dispos_type))
1625 }
1626 }
1627
1628 #[doc = "`SetupCharacterGroundHeight(crate::combat::character::Character, f32, f32)` overload"]
1629 pub fn setup_character_ground_height(
1630 chara: impl ::core::convert::Into<crate::combat::character::Character>,
1631 ground_offset: impl ::core::convert::Into<f32>,
1632 gravity: impl ::core::convert::Into<f32>,
1633 ) -> () {
1634 unsafe {
1635 ::unity::il2cpp_call!((::unity::module_base()+0x2a68a80usize)as*mut u8,();
1636(crate::combat::character::Character)::core::convert::Into::into(chara),(f32)::core::convert::Into::into(ground_offset),(f32)::core::convert::Into::into(gravity))
1637 }
1638 }
1639
1640 #[doc = "`.cctor()` overload"]
1641 pub fn cctor() -> () {
1642 unsafe {
1643 ::unity::il2cpp_call!((::unity::module_base()+0x2a68bf0usize)as*mut u8,();
1644 )
1645 }
1646 }
1647}
1648
1649#[cfg(feature = "app-hubutil")]
1650pub trait IHubUtilMethods: IHubUtil {
1651 #[doc = "`.ctor()` overload"]
1652 fn ctor(self) -> () {
1653 unsafe {
1654 let __receiver = <HubUtil as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
1655 ::unity::il2cpp_call!((::unity::module_base()+0x2a68be0usize)as*mut u8,();
1656(HubUtil)__receiver)
1657 }
1658 }
1659}
1660
1661#[cfg(feature = "app-hubutil")]
1662impl<__T: IHubUtil> IHubUtilMethods for __T {}
1663
1664#[cfg(feature = "app-hubutil")]
1665impl HubUtil {
1666 pub fn get_params_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1667 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[0]
1668 }
1669
1670 pub fn is_params_valid_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1671 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[1]
1672 }
1673
1674 pub fn get_unit_display_num_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1675 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[2]
1676 }
1677
1678 pub fn get_pad_threshold_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1679 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[3]
1680 }
1681
1682 pub fn get_player_max_speed_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1683 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[4]
1684 }
1685
1686 pub fn get_player_accel_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1687 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[5]
1688 }
1689
1690 pub fn get_player_decel_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1691 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[6]
1692 }
1693
1694 pub fn get_player_rotate_speed_rate_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1695 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[7]
1696 }
1697
1698 pub fn get_player_dash_stop_time_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1699 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[8]
1700 }
1701
1702 pub fn get_player_dash_speed_intensity_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1703 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[9]
1704 }
1705
1706 pub fn get_spring_gravity_y_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1707 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[10]
1708 }
1709
1710 pub fn get_player_speed_curve_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1711 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[11]
1712 }
1713
1714 pub fn get_turn_curve_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1715 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[12]
1716 }
1717
1718 pub fn get_min_look_at_dist_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1719 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[13]
1720 }
1721
1722 pub fn get_max_look_at_dist_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1723 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[14]
1724 }
1725
1726 pub fn get_pad_allowance_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1727 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[15]
1728 }
1729
1730 pub fn get_others_body_weight_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1731 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[16]
1732 }
1733
1734 pub fn get_others_head_weight_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1735 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[17]
1736 }
1737
1738 pub fn get_empty_word_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1739 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[18]
1740 }
1741
1742 pub fn get_character_appearance_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1743 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[19]
1744 }
1745
1746 pub fn get_player_appearance_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1747 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[20]
1748 }
1749
1750 pub fn create_look_at_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1751 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[21]
1752 }
1753
1754 pub fn is_main_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1755 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[22]
1756 }
1757
1758 pub fn is_hub_sequence_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1759 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[23]
1760 }
1761
1762 pub fn is_player_female_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1763 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[24]
1764 }
1765
1766 pub fn is_complete_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1767 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[25]
1768 }
1769
1770 pub fn pid_to_gid_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1771 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[26]
1772 }
1773
1774 pub fn gid_to_pid_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1775 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[27]
1776 }
1777
1778 pub fn try_get_sortie_unit_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1779 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[28]
1780 }
1781
1782 pub fn is_sortie_unit_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1783 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[29]
1784 }
1785
1786 pub fn is_best_reliance_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1787 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[30]
1788 }
1789
1790 pub fn get_now_year_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1791 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[31]
1792 }
1793
1794 pub fn is_birthday_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1795 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[33]
1796 }
1797
1798 pub fn is_hero_birthday_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1799 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[34]
1800 }
1801
1802 pub fn is_birthday_present_got_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1803 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[35]
1804 }
1805
1806 pub fn can_promise_engage_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1807 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[36]
1808 }
1809
1810 pub fn is_avaliable_dispos_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1811 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[37]
1812 }
1813
1814 pub fn level_up_reliance_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1815 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[38]
1816 }
1817
1818 pub fn get_reliance_suffix_letter_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1819 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[39]
1820 }
1821
1822 pub fn can_any_reliance_level_up_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1823 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[40]
1824 }
1825
1826 pub fn can_any_god_level_up_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1827 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[41]
1828 }
1829
1830 pub fn can_any_reliance_level_up_2_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1831 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[42]
1832 }
1833
1834 pub fn can_any_reliance_level_up_player_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1835 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[43]
1836 }
1837
1838 pub fn get_a_plus_ascii_name_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1839 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[44]
1840 }
1841
1842 pub fn continuous_sortie_count_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1843 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[45]
1844 }
1845
1846 pub fn is_exists_mid_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1847 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[46]
1848 }
1849
1850 pub fn has_story_talk_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1851 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[47]
1852 }
1853
1854 pub fn has_swimsuit_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1855 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[48]
1856 }
1857
1858 pub fn get_swimsuit_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1859 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[49]
1860 }
1861
1862 pub fn get_animal_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1863 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[50]
1864 }
1865
1866 pub fn is_capture_animal_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1867 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[51]
1868 }
1869
1870 pub fn get_animal_capture_num_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1871 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[52]
1872 }
1873
1874 pub fn set_animal_capture_num_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1875 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[53]
1876 }
1877
1878 pub fn inc_animal_capture_num_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1879 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[54]
1880 }
1881
1882 pub fn get_encount_material_base_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1883 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[55]
1884 }
1885
1886 pub fn get_encount_material_item_count_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1887 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[56]
1888 }
1889
1890 pub fn get_item_count_with_bonus_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1891 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[57]
1892 }
1893
1894 pub fn update_locate_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1895 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[58]
1896 }
1897
1898 pub fn get_is_first_entry_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1899 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[59]
1900 }
1901
1902 pub fn set_is_first_entry_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1903 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[60]
1904 }
1905
1906 pub fn get_last_scenario_chapter_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1907 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[61]
1908 }
1909
1910 pub fn set_last_scenario_chapter_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1911 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[62]
1912 }
1913
1914 pub fn get_is_condition_morning_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1915 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[63]
1916 }
1917
1918 pub fn set_is_condition_morning_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1919 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[64]
1920 }
1921
1922 pub fn get_is_condition_day_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1923 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[65]
1924 }
1925
1926 pub fn set_is_condition_day_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1927 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[66]
1928 }
1929
1930 pub fn get_is_condition_evening_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1931 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[67]
1932 }
1933
1934 pub fn set_is_condition_evening_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1935 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[68]
1936 }
1937
1938 pub fn get_is_condition_night_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1939 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[69]
1940 }
1941
1942 pub fn set_is_condition_night_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1943 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[70]
1944 }
1945
1946 pub fn get_is_condition_weapon_opened_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1947 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[71]
1948 }
1949
1950 pub fn set_is_condition_weapon_opened_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1951 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[72]
1952 }
1953
1954 pub fn get_is_condition_item_opened_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1955 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[73]
1956 }
1957
1958 pub fn set_is_condition_item_opened_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1959 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[74]
1960 }
1961
1962 pub fn get_is_condition_refinement_opened_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1963 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[75]
1964 }
1965
1966 pub fn set_is_condition_refinement_opened_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1967 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[76]
1968 }
1969
1970 pub fn get_is_condition_accessory_opened_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1971 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[77]
1972 }
1973
1974 pub fn set_is_condition_accessory_opened_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1975 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[78]
1976 }
1977
1978 pub fn get_is_condition_tent1_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1979 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[79]
1980 }
1981
1982 pub fn set_is_condition_tent1_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1983 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[80]
1984 }
1985
1986 pub fn get_is_condition_tent2_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1987 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[81]
1988 }
1989
1990 pub fn set_is_condition_tent2_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1991 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[82]
1992 }
1993
1994 pub fn get_is_condition_tent3_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1995 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[83]
1996 }
1997
1998 pub fn set_is_condition_tent3_method_info() -> &'static ::unity::il2cpp::MethodInfo {
1999 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[84]
2000 }
2001
2002 pub fn get_is_condition_fire_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2003 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[85]
2004 }
2005
2006 pub fn set_is_condition_fire_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2007 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[86]
2008 }
2009
2010 pub fn get_is_condition_fortune_hut_opened_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2011 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[87]
2012 }
2013
2014 pub fn set_is_condition_fortune_hut_opened_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2015 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[88]
2016 }
2017
2018 pub fn get_is_condition_flea_market_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2019 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[89]
2020 }
2021
2022 pub fn set_is_condition_flea_market_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2023 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[90]
2024 }
2025
2026 pub fn get_is_condition_statue_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2027 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[91]
2028 }
2029
2030 pub fn set_is_condition_statue_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2031 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[92]
2032 }
2033
2034 pub fn get_is_condition_refine_god_weapon_opened_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2035 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[93]
2036 }
2037
2038 pub fn set_is_condition_refine_god_weapon_opened_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2039 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[94]
2040 }
2041
2042 pub fn get_is_condition_muscle_hard_opened_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2043 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[95]
2044 }
2045
2046 pub fn set_is_condition_muscle_hard_opened_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2047 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[96]
2048 }
2049
2050 pub fn get_is_condition_muscle_master_and_endless_opened_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2051 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[97]
2052 }
2053
2054 pub fn set_is_condition_muscle_master_and_endless_opened_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2055 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[98]
2056 }
2057
2058 pub fn get_is_condition_dragon_ride_hard_opened_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2059 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[99]
2060 }
2061
2062 pub fn set_is_condition_dragon_ride_hard_opened_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2063 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[100]
2064 }
2065
2066 pub fn get_is_condition_dragon_ride_expert_opened_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2067 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[101]
2068 }
2069
2070 pub fn set_is_condition_dragon_ride_expert_opened_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2071 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[102]
2072 }
2073
2074 pub fn get_is_condition_pool_circle_swim_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2075 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[103]
2076 }
2077
2078 pub fn set_is_condition_pool_circle_swim_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2079 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[104]
2080 }
2081
2082 pub fn is_first_access_refine_god_weapon_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2083 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[105]
2084 }
2085
2086 pub fn set_first_access_refine_god_weapon_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2087 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[106]
2088 }
2089
2090 pub fn get_current_cooking_pid_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2091 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[107]
2092 }
2093
2094 pub fn set_current_cooking_pid_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2095 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[108]
2096 }
2097
2098 pub fn get_person_limit_count_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2099 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[109]
2100 }
2101
2102 pub fn get_god_person_limit_count_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2103 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[110]
2104 }
2105
2106 pub fn get_animal_limit_count_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2107 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[111]
2108 }
2109
2110 pub fn get_kizuna_person_limit_count_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2111 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[112]
2112 }
2113
2114 pub fn get_dragon_ride_level_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2115 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[113]
2116 }
2117
2118 pub fn set_dragon_ride_level_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2119 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[114]
2120 }
2121
2122 pub fn get_is_dragon_ride_time_test_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2123 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[115]
2124 }
2125
2126 pub fn set_is_dragon_ride_time_test_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2127 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[116]
2128 }
2129
2130 pub fn get_is_dragon_ride_walk_through_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2131 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[117]
2132 }
2133
2134 pub fn set_is_dragon_ride_walk_through_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2135 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[118]
2136 }
2137
2138 pub fn get_dragon_ride_total_score_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2139 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[119]
2140 }
2141
2142 pub fn set_dragon_ride_total_score_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2143 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[120]
2144 }
2145
2146 pub fn get_dragon_ride_normal_target_count_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2147 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[121]
2148 }
2149
2150 pub fn set_dragon_ride_normal_target_count_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2151 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[122]
2152 }
2153
2154 pub fn get_dragon_ride_big_target_count_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2155 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[123]
2156 }
2157
2158 pub fn set_dragon_ride_big_target_count_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2159 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[124]
2160 }
2161
2162 pub fn get_dragon_ride_link_target_count_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2163 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[125]
2164 }
2165
2166 pub fn set_dragon_ride_link_target_count_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2167 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[126]
2168 }
2169
2170 pub fn get_dragon_ride_special_target_count_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2171 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[127]
2172 }
2173
2174 pub fn set_dragon_ride_special_target_count_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2175 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[128]
2176 }
2177
2178 pub fn get_dragon_ride_roulette_target_count_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2179 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[129]
2180 }
2181
2182 pub fn set_dragon_ride_roulette_target_count_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2183 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[130]
2184 }
2185
2186 pub fn get_dragon_ride_assist_score_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2187 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[131]
2188 }
2189
2190 pub fn set_dragon_ride_assist_score_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2191 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[132]
2192 }
2193
2194 pub fn get_dragon_ride_play_rank_num_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2195 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[133]
2196 }
2197
2198 pub fn set_dragon_ride_play_rank_num_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2199 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[134]
2200 }
2201
2202 pub fn get_dragon_ride_retire_flag_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2203 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[135]
2204 }
2205
2206 pub fn set_dragon_ride_retire_flag_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2207 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[136]
2208 }
2209
2210 pub fn get_dragon_ride_walk_through_list_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2211 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[137]
2212 }
2213
2214 pub fn set_dragon_ride_walk_through_list_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2215 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[138]
2216 }
2217
2218 pub fn get_dragon_ride_using_preset_id_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2219 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[139]
2220 }
2221
2222 pub fn set_dragon_ride_using_preset_id_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2223 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[140]
2224 }
2225
2226 pub fn get_dragon_ride_target_suicide_sec_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2227 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[141]
2228 }
2229
2230 pub fn set_dragon_ride_target_suicide_sec_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2231 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[142]
2232 }
2233
2234 pub fn get_dragon_ride_target_suicide_sec_random_range_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2235 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[143]
2236 }
2237
2238 pub fn set_dragon_ride_target_suicide_sec_random_range_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2239 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[144]
2240 }
2241
2242 pub fn get_dragon_ride_assist_level_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2243 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[145]
2244 }
2245
2246 pub fn set_dragon_ride_assist_level_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2247 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[146]
2248 }
2249
2250 pub fn get_debug_dragon_ride_assist_set_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2251 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[147]
2252 }
2253
2254 pub fn set_debug_dragon_ride_assist_set_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2255 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[148]
2256 }
2257
2258 pub fn get_is_dragon_ride_result_check_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2259 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[149]
2260 }
2261
2262 pub fn set_is_dragon_ride_result_check_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2263 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[150]
2264 }
2265
2266 pub fn get_is_dragon_ride_result_check_assist_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2267 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[151]
2268 }
2269
2270 pub fn set_is_dragon_ride_result_check_assist_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2271 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[152]
2272 }
2273
2274 pub fn get_is_dragon_ride_result_check_high_score_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2275 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[153]
2276 }
2277
2278 pub fn set_is_dragon_ride_result_check_high_score_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2279 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[154]
2280 }
2281
2282 pub fn get_fishing_lure_type_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2283 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[155]
2284 }
2285
2286 pub fn set_fishing_lure_type_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2287 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[156]
2288 }
2289
2290 pub fn get_fishing_get_fish_id_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2291 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[157]
2292 }
2293
2294 pub fn set_fishing_get_fish_id_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2295 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[158]
2296 }
2297
2298 pub fn get_fishing_get_fish_size_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2299 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[159]
2300 }
2301
2302 pub fn set_fishing_get_fish_size_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2303 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[160]
2304 }
2305
2306 pub fn get_is_play_muscle_exercise_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2307 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[161]
2308 }
2309
2310 pub fn set_is_play_muscle_exercise_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2311 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[162]
2312 }
2313
2314 pub fn initialize_condition_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2315 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[163]
2316 }
2317
2318 pub fn finalize_condition_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2319 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[164]
2320 }
2321
2322 pub fn is_condition_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2323 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[165]
2324 }
2325
2326 pub fn init_cooking_person_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2327 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[166]
2328 }
2329
2330 pub fn setup_character_dispos_type_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2331 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[168]
2332 }
2333
2334 pub fn setup_character_ground_height_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2335 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[169]
2336 }
2337
2338 pub fn ctor_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2339 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[170]
2340 }
2341
2342 pub fn cctor_method_info() -> &'static ::unity::il2cpp::MethodInfo {
2343 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[171]
2344 }
2345}
2346
2347#[cfg(feature = "app-hubutil")]
2348impl HubUtil {
2349 #[doc = "`.ctor()` — no args"]
2350 pub fn new() -> Self {
2351 let this = <Self as ::unity::FromIlInstance>::instantiate().unwrap_or_else(|| {
2352 panic!(
2353 "{}
2354::{}
2355 failed to instantiate",
2356 ::core::stringify!(HubUtil),
2357 ::core::stringify!(new),
2358 )
2359 });
2360 <Self as IHubUtilMethods>::ctor(this);
2361 this
2362 }
2363}
2364
2365#[cfg(feature = "app-hubutil")]
2366#[doc(hidden)]
2367pub mod prelude {
2368 pub use super::{
2369 HubUtil, HubUtil_BSpline, HubUtil_ConditionType, HubUtil_TimezoneType, IHubUtil, IHubUtilMethods, IHubUtil_BSpline, IHubUtil_BSplineMethods,
2370 };
2371 #[cfg(feature = "system-object")]
2372 pub use crate::system::object::IObjectMethods;
2373 #[cfg(feature = "system-enum")]
2374 pub use crate::system::r#enum::IEnumMethods;
2375 #[cfg(feature = "system-valuetype")]
2376 pub use crate::system::valuetype::IValueTypeMethods;
2377 pub use crate::system::{object::IObject, r#enum::IEnum, valuetype::IValueType};
2378}