pub trait IArenaBondLevelSelectRootMethods: IArenaBondLevelSelectRoot {
// Provided methods
fn create(
self,
super_: impl Into<ProcInst>,
select_unit: impl Into<Unit>,
select_god: impl Into<GodUnit>,
select_type: impl Into<RingCleaningSequence_GodType>,
decide_event_handler: impl Into<ArenaBondLevelSelectMenu_DecideEventHandler>,
) { ... }
fn chara_info_play_anim(self, anim_name: impl Into<Il2CppString>) { ... }
fn on_select_menu_item(
self,
god: impl Into<GodUnit>,
from_lv: impl Into<i32>,
to_lv: impl Into<i32>,
) { ... }
fn on_decide_menu_item(
self,
god: impl Into<GodUnit>,
type: impl Into<RingCleaningSequence_GodType>,
start: impl Into<bool>,
exp: impl Into<i32>,
use_count: impl Into<i32>,
) { ... }
fn on_change_god_to_next(self) { ... }
fn on_change_god_to_prev(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn create(
self,
super_: impl Into<ProcInst>,
select_unit: impl Into<Unit>,
select_god: impl Into<GodUnit>,
select_type: impl Into<RingCleaningSequence_GodType>,
decide_event_handler: impl Into<ArenaBondLevelSelectMenu_DecideEventHandler>,
)
fn create( self, super_: impl Into<ProcInst>, select_unit: impl Into<Unit>, select_god: impl Into<GodUnit>, select_type: impl Into<RingCleaningSequence_GodType>, decide_event_handler: impl Into<ArenaBondLevelSelectMenu_DecideEventHandler>, )
Create(crate::app::procinst::ProcInst, crate::app::unit::Unit, crate::app::godunit::GodUnit, crate::app::ringcleaningsequence::RingCleaningSequence_GodType, crate::app::arenabondlevelselectmenu::ArenaBondLevelSelectMenu_DecideEventHandler) overload
Sourcefn chara_info_play_anim(self, anim_name: impl Into<Il2CppString>)
fn chara_info_play_anim(self, anim_name: impl Into<Il2CppString>)
CharaInfoPlayAnim(::unity::Il2CppString) overload
OnSelectMenuItem(crate::app::godunit::GodUnit, i32, i32) overload
OnDecideMenuItem(crate::app::godunit::GodUnit, crate::app::ringcleaningsequence::RingCleaningSequence_GodType, bool, i32, i32) overload
Sourcefn on_change_god_to_next(self)
fn on_change_god_to_next(self)
OnChangeGodToNext() overload
Sourcefn on_change_god_to_prev(self)
fn on_change_god_to_prev(self)
OnChangeGodToPrev() overload
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<__T: IArenaBondLevelSelectRoot> IArenaBondLevelSelectRootMethods for __T
Available on crate feature
app-arenabondlevelselectroot only.