Skip to main content

IMyRoomWakeupSelectSequenceMethods

Trait IMyRoomWakeupSelectSequenceMethods 

Source
pub trait IMyRoomWakeupSelectSequenceMethods: IMyRoomWakeupSelectSequence {
Show 14 methods // Provided methods fn get_select_menu_content(self) -> MyRoomWakeupSelectMenuContent { ... } fn set_select_menu_content( self, value: impl Into<MyRoomWakeupSelectMenuContent>, ) { ... } fn get_root(self) -> MyRoomWakeupSelectRoot { ... } fn set_root(self, value: impl Into<MyRoomWakeupSelectRoot>) { ... } fn wait_load_prefab(self) { ... } fn create_unit_select_menu(self) { ... } fn entry(self) { ... } fn exit(self) { ... } fn reserve_wakeup( self, pid: impl Into<Il2CppString>, level: impl Into<RelianceData_Level>, pattern: impl Into<GameSound_WakeupVoicePattern>, ) { ... } fn save_select_and_scroll( self, select: impl Into<i32>, scroll: impl Into<i32>, ) { ... } fn try_start_wakeup(self) { ... } fn create_desc(self) -> Array<ProcDesc> { ... } fn on_dispose(self) { ... } fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_select_menu_content(self) -> MyRoomWakeupSelectMenuContent

get_SelectMenuContent() overload

Source

fn set_select_menu_content( self, value: impl Into<MyRoomWakeupSelectMenuContent>, )

set_SelectMenuContent(crate::app::myroomwakeupselectmenucontent::MyRoomWakeupSelectMenuContent) overload

Source

fn get_root(self) -> MyRoomWakeupSelectRoot

get_Root() overload

Source

fn set_root(self, value: impl Into<MyRoomWakeupSelectRoot>)

set_Root(crate::app::myroomwakeupselectroot::MyRoomWakeupSelectRoot) overload

Source

fn wait_load_prefab(self)

WaitLoadPrefab() overload

Source

fn create_unit_select_menu(self)

CreateUnitSelectMenu() overload

Source

fn entry(self)

Entry() overload

Source

fn exit(self)

Exit() overload

Source

fn reserve_wakeup( self, pid: impl Into<Il2CppString>, level: impl Into<RelianceData_Level>, pattern: impl Into<GameSound_WakeupVoicePattern>, )

ReserveWakeup(::unity::Il2CppString, crate::app::reliancedata::RelianceData_Level, crate::app::gamesound::GameSound_WakeupVoicePattern) overload

Source

fn save_select_and_scroll(self, select: impl Into<i32>, scroll: impl Into<i32>)

SaveSelectAndScroll(i32, i32) overload

Source

fn try_start_wakeup(self)

TryStartWakeup() overload

Source

fn create_desc(self) -> Array<ProcDesc>

CreateDesc() overload

Source

fn on_dispose(self)

OnDispose() 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: IMyRoomWakeupSelectSequence> IMyRoomWakeupSelectSequenceMethods for __T

Available on crate feature app-myroomwakeupselectsequence only.