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§

source

fn provider(&self) -> Arc<dyn PlatformProvider>

Return a reference to a provider for systems to interact with this platform.

Implementors§