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§
Sourcefn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<SkillInheritanceMenuContent>,
god_list: impl Into<List_1<GodUnit>>,
)
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
SetupMenuSkill() overload
Sourcefn update_skill_point(self)
fn update_skill_point(self)
UpdateSkillPoint() overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
Sourcefn b_call(self) -> BasicMenu_Result
fn b_call(self) -> BasicMenu_Result
BCall() overload
Sourcefn custom_call(self) -> BasicMenu_Result
fn custom_call(self) -> BasicMenu_Result
CustomCall() overload
Sourcefn get_god_num(self) -> i32
fn get_god_num(self) -> i32
GetGodNum() overload
Sourcefn set_skill_help(self, skill: impl Into<SkillData>, level: impl Into<i32>)
fn set_skill_help(self, skill: impl Into<SkillData>, level: impl Into<i32>)
SetSkillHelp(crate::app::skilldata::SkillData, i32) overload
Sourcefn get_select_god_index(self) -> i32
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§
impl<__T: ISkillInheritanceMenu> ISkillInheritanceMenuMethods for __T
Available on crate feature
app-skillinheritancemenu only.