pub trait IMascotAccChangeMenuMethods: IMascotAccChangeMenu {
// Provided methods
fn get_current_parts_type(self) -> MascotAccData_PartsType { ... }
fn set_current_parts_type(self, value: impl Into<MascotAccData_PartsType>) { ... }
fn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<BasicMenuContent>,
) { ... }
fn get_name(self) -> Il2CppString { ... }
fn on_close(self) { ... }
fn change_parts_type(
self,
directional: impl Into<i32>,
is_trigger: impl Into<bool>,
) -> bool { ... }
fn update_parts_type(self) { ... }
fn update_equip_acc(self, item: impl Into<MascotAccChangeMenuItem>) { ... }
fn rebuild_menu(self, type: impl Into<MascotAccData_PartsType>) { ... }
fn key_left(self, is_trigger: impl Into<bool>) { ... }
fn key_right(self, is_trigger: impl Into<bool>) { ... }
fn set_help_text(
self,
mascot_data: impl Into<MascotAccData>,
acc_data: impl Into<AccessoryData>,
) { ... }
}Provided Methods§
Sourcefn get_current_parts_type(self) -> MascotAccData_PartsType
fn get_current_parts_type(self) -> MascotAccData_PartsType
get_CurrentPartsType() overload
Sourcefn set_current_parts_type(self, value: impl Into<MascotAccData_PartsType>)
fn set_current_parts_type(self, value: impl Into<MascotAccData_PartsType>)
set_CurrentPartsType(crate::app::mascotaccdata::MascotAccData_PartsType) overload
Sourcefn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<BasicMenuContent>,
)
fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<BasicMenuContent>, )
.ctor(crate::system::collections::generic::list_1::List_1<crate::app::basicmenuitem::BasicMenuItem>, crate::app::basicmenucontent::BasicMenuContent) overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
Sourcefn change_parts_type(
self,
directional: impl Into<i32>,
is_trigger: impl Into<bool>,
) -> bool
fn change_parts_type( self, directional: impl Into<i32>, is_trigger: impl Into<bool>, ) -> bool
ChangePartsType(i32, bool) overload
Sourcefn update_parts_type(self)
fn update_parts_type(self)
UpdatePartsType() overload
Sourcefn update_equip_acc(self, item: impl Into<MascotAccChangeMenuItem>)
fn update_equip_acc(self, item: impl Into<MascotAccChangeMenuItem>)
UpdateEquipAcc(crate::app::mascotaccchangemenuitem::MascotAccChangeMenuItem) overload
RebuildMenu(crate::app::mascotaccdata::MascotAccData_PartsType) overload
Sourcefn set_help_text(
self,
mascot_data: impl Into<MascotAccData>,
acc_data: impl Into<AccessoryData>,
)
fn set_help_text( self, mascot_data: impl Into<MascotAccData>, acc_data: impl Into<AccessoryData>, )
SetHelpText(crate::app::mascotaccdata::MascotAccData, crate::app::accessorydata::AccessoryData) 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: IMascotAccChangeMenu> IMascotAccChangeMenuMethods for __T
Available on crate feature
app-mascotaccchangemenu only.