Skip to main content

ISkillInheritanceMenuMethods

Trait ISkillInheritanceMenuMethods 

Source
pub trait ISkillInheritanceMenuMethods: ISkillInheritanceMenu {
Show 13 methods // Provided methods fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<SkillInheritanceMenuContent>, god_list: impl Into<List_1<GodUnit>>, ) { ... } fn setup_menu_skill(self) { ... } fn update_skill_point(self) { ... } fn get_name(self) -> Il2CppString { ... } fn b_call(self) -> BasicMenu_Result { ... } fn custom_call(self) -> BasicMenu_Result { ... } fn key_left(self, is_trigger: impl Into<bool>) { ... } fn key_right(self, is_trigger: impl Into<bool>) { ... } fn get_god(self) -> GodUnit { ... } fn get_god_2(self, index: impl Into<i32>) -> GodUnit { ... } fn get_god_num(self) -> i32 { ... } fn set_skill_help(self, skill: impl Into<SkillData>, level: impl Into<i32>) { ... } fn get_select_god_index(self) -> i32 { ... }
}

Provided Methods§

Source

fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<SkillInheritanceMenuContent>, god_list: impl Into<List_1<GodUnit>>, )

.ctor(crate::system::collections::generic::list_1::List_1<crate::app::basicmenuitem::BasicMenuItem>, crate::app::skillinheritancemenucontent::SkillInheritanceMenuContent, crate::system::collections::generic::list_1::List_1<crate::app::godunit::GodUnit>) overload

Source

fn setup_menu_skill(self)

SetupMenuSkill() overload

Source

fn update_skill_point(self)

UpdateSkillPoint() overload

Source

fn get_name(self) -> Il2CppString

GetName() overload

Source

fn b_call(self) -> BasicMenu_Result

BCall() overload

Source

fn custom_call(self) -> BasicMenu_Result

CustomCall() overload

Source

fn key_left(self, is_trigger: impl Into<bool>)

KeyLeft(bool) overload

Source

fn key_right(self, is_trigger: impl Into<bool>)

KeyRight(bool) overload

Source

fn get_god(self) -> GodUnit

GetGod() overload

Source

fn get_god_2(self, index: impl Into<i32>) -> GodUnit

GetGod(i32) overload

Source

fn get_god_num(self) -> i32

GetGodNum() overload

Source

fn set_skill_help(self, skill: impl Into<SkillData>, level: impl Into<i32>)

SetSkillHelp(crate::app::skilldata::SkillData, i32) overload

Source

fn get_select_god_index(self) -> i32

GetSelectGodIndex() 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: ISkillInheritanceMenu> ISkillInheritanceMenuMethods for __T

Available on crate feature app-skillinheritancemenu only.