pub trait IChallengeMapSelectRootMethods: IChallengeMapSelectRoot {
// Provided methods
fn create(self) { ... }
fn destroy(self) { ... }
fn ctor(self) { ... }
fn get_challenge_map_select_menu_content(self) -> BasicMenuContent { ... }
fn get_challenge_difficulty_menu_content(self) -> BasicMenuContent { ... }
fn set_map_help_active(self) { ... }
fn on_select(self, challenge_data: impl Into<ChallengeData>) { ... }
fn set_reward(
self,
level: impl Into<i32>,
is_item_drop_unknow: impl Into<bool>,
) { ... }
fn close(self) { ... }
fn is_closed(self) -> bool { ... }
}Provided Methods§
GetChallengeMapSelectMenuContent() overload
GetChallengeDifficultyMenuContent() overload
Sourcefn set_map_help_active(self)
fn set_map_help_active(self)
SetMapHelpActive() overload
Sourcefn on_select(self, challenge_data: impl Into<ChallengeData>)
fn on_select(self, challenge_data: impl Into<ChallengeData>)
OnSelect(crate::app::challengedata::ChallengeData) overload
Sourcefn set_reward(self, level: impl Into<i32>, is_item_drop_unknow: impl Into<bool>)
fn set_reward(self, level: impl Into<i32>, is_item_drop_unknow: impl Into<bool>)
SetReward(i32, bool) 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: IChallengeMapSelectRoot> IChallengeMapSelectRootMethods for __T
Available on crate feature
app-challengemapselectroot only.