Trait libnoentiendo::platform::Platform
source · pub trait Platform {
// Required method
fn provider(&self) -> Arc<dyn PlatformProvider>;
}
Expand description
A Platform provides platform-specific functionality to the emulator. It handles starting and ticking the system, and provides a PlatformProvider to the system for screen/keyboard/etc. access.
Required Methods§
sourcefn provider(&self) -> Arc<dyn PlatformProvider>
fn provider(&self) -> Arc<dyn PlatformProvider>
Return a reference to a provider for systems to interact with this platform.