Skip to main content

IArenaBondLevelSelectRootMethods

Trait IArenaBondLevelSelectRootMethods 

Source
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§

Source

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

Source

fn chara_info_play_anim(self, anim_name: impl Into<Il2CppString>)

CharaInfoPlayAnim(::unity::Il2CppString) overload

Source

fn on_select_menu_item( self, god: impl Into<GodUnit>, from_lv: impl Into<i32>, to_lv: impl Into<i32>, )

OnSelectMenuItem(crate::app::godunit::GodUnit, i32, i32) overload

Source

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>, )

OnDecideMenuItem(crate::app::godunit::GodUnit, crate::app::ringcleaningsequence::RingCleaningSequence_GodType, bool, i32, i32) overload

Source

fn on_change_god_to_next(self)

OnChangeGodToNext() overload

Source

fn on_change_god_to_prev(self)

OnChangeGodToPrev() overload

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: IArenaBondLevelSelectRoot> IArenaBondLevelSelectRootMethods for __T

Available on crate feature app-arenabondlevelselectroot only.