pub trait ISynthesisRingBaseRingMenuMethods: ISynthesisRingBaseRingMenu {
Show 16 methods
// Provided methods
fn get_m_god_unit_list(self) -> List_1<GodUnit> { ... }
fn set_m_god_unit_list(self, value: impl Into<List_1<GodUnit>>) { ... }
fn get_m_god_unit_index(self) -> i32 { ... }
fn set_m_god_unit_index(self, value: impl Into<i32>) { ... }
fn get_m_god_unit(self) -> GodUnit { ... }
fn set_m_god_unit(self, value: impl Into<GodUnit>) { ... }
fn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<SynthesisRingBaseRingMenuContent>,
god_unit_list: impl Into<List_1<GodUnit>>,
initial_god_unit_index: impl Into<i32>,
select_event_handler: impl Into<RingMenuItem_SelectEventHandler>,
decide_event_handler: impl Into<RingMenuItem_DecideEventHandler>,
request_close_event_handler: impl Into<SynthesisRingBaseRingMenu_CloseEventHandler>,
) { ... }
fn rebuild_menu(self) { ... }
fn rebuild_menu_item(self) { ... }
fn get_name(self) -> Il2CppString { ... }
fn enable_menu(self) { ... }
fn disable_menu(self) { ... }
fn get_select(self) -> BasicMenuSelect { ... }
fn key_left(self, is_trigger: impl Into<bool>) { ... }
fn key_right(self, is_trigger: impl Into<bool>) { ... }
fn b_call(self) -> BasicMenu_Result { ... }
}Provided Methods§
Sourcefn get_m_god_unit_list(self) -> List_1<GodUnit>
fn get_m_god_unit_list(self) -> List_1<GodUnit>
get_m_GodUnitList() overload
Sourcefn set_m_god_unit_list(self, value: impl Into<List_1<GodUnit>>)
fn set_m_god_unit_list(self, value: impl Into<List_1<GodUnit>>)
set_m_GodUnitList(crate::system::collections::generic::list_1::List_1<crate::app::godunit::GodUnit>) overload
Sourcefn get_m_god_unit_index(self) -> i32
fn get_m_god_unit_index(self) -> i32
get_m_GodUnitIndex() overload
Sourcefn set_m_god_unit_index(self, value: impl Into<i32>)
fn set_m_god_unit_index(self, value: impl Into<i32>)
set_m_GodUnitIndex(i32) overload
Sourcefn get_m_god_unit(self) -> GodUnit
fn get_m_god_unit(self) -> GodUnit
get_m_GodUnit() overload
Sourcefn set_m_god_unit(self, value: impl Into<GodUnit>)
fn set_m_god_unit(self, value: impl Into<GodUnit>)
set_m_GodUnit(crate::app::godunit::GodUnit) overload
Sourcefn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<SynthesisRingBaseRingMenuContent>,
god_unit_list: impl Into<List_1<GodUnit>>,
initial_god_unit_index: impl Into<i32>,
select_event_handler: impl Into<RingMenuItem_SelectEventHandler>,
decide_event_handler: impl Into<RingMenuItem_DecideEventHandler>,
request_close_event_handler: impl Into<SynthesisRingBaseRingMenu_CloseEventHandler>,
)
fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<SynthesisRingBaseRingMenuContent>, god_unit_list: impl Into<List_1<GodUnit>>, initial_god_unit_index: impl Into<i32>, select_event_handler: impl Into<RingMenuItem_SelectEventHandler>, decide_event_handler: impl Into<RingMenuItem_DecideEventHandler>, request_close_event_handler: impl Into<SynthesisRingBaseRingMenu_CloseEventHandler>, )
.ctor(crate::system::collections::generic::list_1::List_1<crate::app::basicmenuitem::BasicMenuItem>, crate::app::synthesisringbaseringmenucontent::SynthesisRingBaseRingMenuContent, crate::system::collections::generic::list_1::List_1<crate::app::godunit::GodUnit>, i32, crate::app::ringmenuitem::RingMenuItem_SelectEventHandler, crate::app::ringmenuitem::RingMenuItem_DecideEventHandler, crate::app::synthesisringbaseringmenu::SynthesisRingBaseRingMenu_CloseEventHandler) overload
RebuildMenu() overload
RebuildMenuItem() overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
EnableMenu() overload
DisableMenu() overload
Sourcefn get_select(self) -> BasicMenuSelect
fn get_select(self) -> BasicMenuSelect
GetSelect() overload
Sourcefn b_call(self) -> BasicMenu_Result
fn b_call(self) -> BasicMenu_Result
BCall() 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: ISynthesisRingBaseRingMenu> ISynthesisRingBaseRingMenuMethods for __T
app-synthesisringbaseringmenu only.