pub trait ISortieTopMenuMethods: ISortieTopMenu {
// Provided methods
fn get_flag_id(self) -> Il2CppString { ... }
fn create_desc(self) -> Array<ProcDesc> { ... }
fn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
sortie_top_menu_content: impl Into<SortieTopMenuContent>,
) { ... }
fn get_name(self) -> Il2CppString { ... }
fn get_tutorial(self) -> Il2CppString { ... }
fn check_engage_plus(self) { ... }
fn help_on(self) { ... }
}Provided Methods§
Sourcefn get_flag_id(self) -> Il2CppString
fn get_flag_id(self) -> Il2CppString
get_FlagID() overload
Sourcefn create_desc(self) -> Array<ProcDesc>
fn create_desc(self) -> Array<ProcDesc>
CreateDesc() overload
Sourcefn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
sortie_top_menu_content: impl Into<SortieTopMenuContent>,
)
fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, sortie_top_menu_content: impl Into<SortieTopMenuContent>, )
.ctor(crate::system::collections::generic::list_1::List_1<crate::app::basicmenuitem::BasicMenuItem>, crate::app::sortietopmenucontent::SortieTopMenuContent) overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
Sourcefn get_tutorial(self) -> Il2CppString
fn get_tutorial(self) -> Il2CppString
GetTutorial() overload
Sourcefn check_engage_plus(self)
fn check_engage_plus(self)
CheckEngagePlus() 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: ISortieTopMenu> ISortieTopMenuMethods for __T
Available on crate feature
app-sortietopmenu only.