pub trait IAmiiboSoundMenuMethods: IAmiiboSoundMenu {
// Provided methods
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 play_preview_sound(self, music_data: impl Into<MusicData>) { ... }
fn rebuild_menu(self) { ... }
fn update_ticket_stock(self) { ... }
fn set_help_text(self, text: impl Into<Il2CppString>) { ... }
fn exchange_remain_ticket(self) { ... }
}Provided Methods§
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 play_preview_sound(self, music_data: impl Into<MusicData>)
fn play_preview_sound(self, music_data: impl Into<MusicData>)
PlayPreviewSound(crate::app::musicdata::MusicData) overload
RebuildMenu() overload
Sourcefn update_ticket_stock(self)
fn update_ticket_stock(self)
UpdateTicketStock() overload
Sourcefn set_help_text(self, text: impl Into<Il2CppString>)
fn set_help_text(self, text: impl Into<Il2CppString>)
SetHelpText(::unity::Il2CppString) overload
Sourcefn exchange_remain_ticket(self)
fn exchange_remain_ticket(self)
ExchangeRemainTicket() 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: IAmiiboSoundMenu> IAmiiboSoundMenuMethods for __T
Available on crate feature
app-amiibosoundmenu only.