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§
get_SelectMenuContent() overload
set_SelectMenuContent(crate::app::myroomwakeupselectmenucontent::MyRoomWakeupSelectMenuContent) overload
Sourcefn get_root(self) -> MyRoomWakeupSelectRoot
fn get_root(self) -> MyRoomWakeupSelectRoot
get_Root() overload
Sourcefn set_root(self, value: impl Into<MyRoomWakeupSelectRoot>)
fn set_root(self, value: impl Into<MyRoomWakeupSelectRoot>)
set_Root(crate::app::myroomwakeupselectroot::MyRoomWakeupSelectRoot) overload
Sourcefn wait_load_prefab(self)
fn wait_load_prefab(self)
WaitLoadPrefab() overload
CreateUnitSelectMenu() overload
Sourcefn reserve_wakeup(
self,
pid: impl Into<Il2CppString>,
level: impl Into<RelianceData_Level>,
pattern: impl Into<GameSound_WakeupVoicePattern>,
)
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
Sourcefn save_select_and_scroll(self, select: impl Into<i32>, scroll: impl Into<i32>)
fn save_select_and_scroll(self, select: impl Into<i32>, scroll: impl Into<i32>)
SaveSelectAndScroll(i32, i32) overload
Sourcefn try_start_wakeup(self)
fn try_start_wakeup(self)
TryStartWakeup() overload
Sourcefn create_desc(self) -> Array<ProcDesc>
fn create_desc(self) -> Array<ProcDesc>
CreateDesc() overload
Sourcefn on_dispose(self)
fn on_dispose(self)
OnDispose() 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: IMyRoomWakeupSelectSequence> IMyRoomWakeupSelectSequenceMethods for __T
Available on crate feature
app-myroomwakeupselectsequence only.