pub trait IMainMenuSequence_PlayerGenderSelectMenuSequenceMethods: IMainMenuSequence_PlayerGenderSelectMenuSequence {
// Provided methods
fn get_layout_prefab_path(self) -> Il2CppString { ... }
fn get_title_bar_name(self) -> Il2CppString { ... }
fn get_title_bar_help(self) -> Il2CppString { ... }
fn get_title_bar_key_help_id(self) -> Il2CppString { ... }
fn init(self) { ... }
fn tick(self) { ... }
fn init_layout_object_reference(self) { ... }
fn close_window(self) { ... }
fn wait_close_window(self) -> bool { ... }
fn set_gender(self, gender: impl Into<Gender>) { ... }
fn get_proc_desc(self) -> Array<ProcDesc> { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_layout_prefab_path(self) -> Il2CppString
fn get_layout_prefab_path(self) -> Il2CppString
GetLayoutPrefabPath() overload
Sourcefn get_title_bar_name(self) -> Il2CppString
fn get_title_bar_name(self) -> Il2CppString
GetTitleBarName() overload
Sourcefn get_title_bar_help(self) -> Il2CppString
fn get_title_bar_help(self) -> Il2CppString
GetTitleBarHelp() overload
Sourcefn get_title_bar_key_help_id(self) -> Il2CppString
fn get_title_bar_key_help_id(self) -> Il2CppString
GetTitleBarKeyHelpId() overload
Sourcefn init_layout_object_reference(self)
fn init_layout_object_reference(self)
InitLayoutObjectReference() overload
Sourcefn close_window(self)
fn close_window(self)
CloseWindow() overload
Sourcefn wait_close_window(self) -> bool
fn wait_close_window(self) -> bool
WaitCloseWindow() overload
Sourcefn set_gender(self, gender: impl Into<Gender>)
fn set_gender(self, gender: impl Into<Gender>)
SetGender(crate::app::gender::Gender) overload
Sourcefn get_proc_desc(self) -> Array<ProcDesc>
fn get_proc_desc(self) -> Array<ProcDesc>
GetProcDesc() 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: IMainMenuSequence_PlayerGenderSelectMenuSequence> IMainMenuSequence_PlayerGenderSelectMenuSequenceMethods for __T
Available on crate feature
app-mainmenusequence only.