yane 1.1.11

An N.E.S. emulator and emulation library.
Documentation
//! The application code, used when running Yane as a standalone emulator.
//!
//! A Nintendo Entertainment System emulator.
//! Uses OpenGL and SDL to create a multiplatform window.
//! Allows for customizing controls, screen size, volume, speed, and others (see [Config]).
//! All of the actual NES emulation is done by importing from [yane::core][crate::core].
mod audio;
pub use audio::Audio;
mod window;
pub use window::Window;
mod debug_window;
pub use debug_window::DebugWindow;
mod key_map;
pub use key_map::KeyMap;
mod config;
pub mod utils;
pub use config::Config;
mod input;
pub use input::Input;