pub trait IConfigBgmSelectSequenceMethods: IConfigBgmSelectSequence {
// Provided methods
fn ctor(
self,
select_bgm: impl Into<Il2CppString>,
callback: impl Into<Action_1<Il2CppString>>,
) { ... }
fn load_resources(self) { ... }
fn unload_resources(self) { ... }
fn is_loading_resources(self) -> bool { ... }
fn create_menu(self) { ... }
fn exit(self) { ... }
fn create_desc(self) -> Array<ProcDesc> { ... }
}Provided Methods§
Sourcefn ctor(
self,
select_bgm: impl Into<Il2CppString>,
callback: impl Into<Action_1<Il2CppString>>,
)
fn ctor( self, select_bgm: impl Into<Il2CppString>, callback: impl Into<Action_1<Il2CppString>>, )
.ctor(::unity::Il2CppString, crate::system::action_1::Action_1<::unity::Il2CppString>) overload
Sourcefn load_resources(self)
fn load_resources(self)
LoadResources() overload
Sourcefn unload_resources(self)
fn unload_resources(self)
UnloadResources() overload
Sourcefn is_loading_resources(self) -> bool
fn is_loading_resources(self) -> bool
IsLoadingResources() overload
CreateMenu() overload
Sourcefn create_desc(self) -> Array<ProcDesc>
fn create_desc(self) -> Array<ProcDesc>
CreateDesc() 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: IConfigBgmSelectSequence> IConfigBgmSelectSequenceMethods for __T
Available on crate feature
app-configbgmselectsequence only.