pub trait IGodRoomUnitSelectMenuMethods: IGodRoomUnitSelectMenu {
// Provided methods
fn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<GodRoomUnitSelectMenuContent>,
default_menu_item_index: impl Into<i32>,
) { ... }
fn get_god_list_active(self) -> List_1<GodUnit> { ... }
fn get_name(self) -> Il2CppString { ... }
fn x_call(self) -> BasicMenu_Result { ... }
fn after_build(self) { ... }
fn update_unit(self, unit: impl Into<Unit>) { ... }
fn close_status(self) { ... }
}Provided Methods§
Sourcefn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<GodRoomUnitSelectMenuContent>,
default_menu_item_index: impl Into<i32>,
)
fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<GodRoomUnitSelectMenuContent>, default_menu_item_index: impl Into<i32>, )
.ctor(crate::system::collections::generic::list_1::List_1<crate::app::basicmenuitem::BasicMenuItem>, crate::app::godroomunitselectmenucontent::GodRoomUnitSelectMenuContent, i32) overload
Sourcefn get_god_list_active(self) -> List_1<GodUnit>
fn get_god_list_active(self) -> List_1<GodUnit>
GetGodListActive() overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
Sourcefn x_call(self) -> BasicMenu_Result
fn x_call(self) -> BasicMenu_Result
XCall() overload
Sourcefn after_build(self)
fn after_build(self)
AfterBuild() overload
Sourcefn update_unit(self, unit: impl Into<Unit>)
fn update_unit(self, unit: impl Into<Unit>)
UpdateUnit(crate::app::unit::Unit) overload
Sourcefn close_status(self)
fn close_status(self)
CloseStatus() 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: IGodRoomUnitSelectMenu> IGodRoomUnitSelectMenuMethods for __T
Available on crate feature
app-godroomunitselectmenu only.