neser 1.1.0

NESER - Nintendo Emulation Systems Engine (Rust). Desktop and WebAssembly frontends.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! ROM browser application for the native frontend.
//!
//! Provides a graphical ROM library browser that displays cover art,
//! metadata, and allows the user to search, filter, and launch ROMs.
//! This module implements the `ApplicationHandler` for the browser state.

mod app;
pub mod renderer;
pub mod theme;

pub use app::{BrowserResult, RomBrowserApp};