Skip to main content

IMapUnitCommandMenu_BaseMenuItemMethods

Trait IMapUnitCommandMenu_BaseMenuItemMethods 

Source
pub trait IMapUnitCommandMenu_BaseMenuItemMethods: IMapUnitCommandMenu_BaseMenuItem {
Show 18 methods // Provided methods fn get_active_mind(self) -> MapMind_Type { ... } fn get_deploy_mode(self) -> MapPanelDeploy_Mode { ... } fn get_command_skill(self) -> SkillData { ... } fn get_is_forecast(self) -> bool { ... } fn on_build_menu_item_content(self) { ... } fn can_cancel(self) -> bool { ... } fn b_call(self) -> BasicMenu_Result { ... } fn on_select(self) { ... } fn on_deselect(self) { ... } fn on_cursor_move_end(self) { ... } fn get_command_help(self) -> Il2CppString { ... } fn setup_help_text(self) { ... } fn check_buildable_with_unit(self) -> bool { ... } fn check_buildable_with_unit_2(self, unit: impl Into<Unit>) -> bool { ... } fn jump_mind_sequence(self, type: impl Into<MapMind_Type>) { ... } fn jump_sequence(self, label: impl Into<MapSequenceHuman_Label>) { ... } fn get_disable_attribute(self) -> BasicMenuItem_Attribute { ... } fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_active_mind(self) -> MapMind_Type

get_ActiveMind() overload

Source

fn get_deploy_mode(self) -> MapPanelDeploy_Mode

get_DeployMode() overload

Source

fn get_command_skill(self) -> SkillData

get_CommandSkill() overload

Source

fn get_is_forecast(self) -> bool

get_IsForecast() overload

Source

fn on_build_menu_item_content(self)

OnBuildMenuItemContent() overload

Source

fn can_cancel(self) -> bool

CanCancel() overload

Source

fn b_call(self) -> BasicMenu_Result

BCall() overload

Source

fn on_select(self)

OnSelect() overload

Source

fn on_deselect(self)

OnDeselect() overload

Source

fn on_cursor_move_end(self)

OnCursorMoveEnd() overload

Source

fn get_command_help(self) -> Il2CppString

GetCommandHelp() overload

Source

fn setup_help_text(self)

SetupHelpText() overload

Source

fn check_buildable_with_unit(self) -> bool

CheckBuildableWithUnit() overload

Source

fn check_buildable_with_unit_2(self, unit: impl Into<Unit>) -> bool

CheckBuildableWithUnit(crate::app::unit::Unit) overload

Source

fn jump_mind_sequence(self, type: impl Into<MapMind_Type>)

JumpMindSequence(crate::app::mapmind::MapMind_Type) overload

Source

fn jump_sequence(self, label: impl Into<MapSequenceHuman_Label>)

JumpSequence(crate::app::mapsequencehuman::MapSequenceHuman_Label) overload

Source

fn get_disable_attribute(self) -> BasicMenuItem_Attribute

GetDisableAttribute() overload

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: IMapUnitCommandMenu_BaseMenuItem> IMapUnitCommandMenu_BaseMenuItemMethods for __T

Available on crate feature app-mapunitcommandmenu only.