1 2 3 4 5 6 7 8 9 10 11 12
//! Shared game loading helpers. //! //! [`launch`] handles runner setup and ROM/archive ingestion (MacBinary, //! StuffIt, web-pack), VFS population, executable selection, post-load //! init. pub mod launch; pub use launch::{ init_game, load_game, load_game_from_path, new_runner, pack_stuffit_for_web, MAX_INSTRUCTIONS_PER_FRAME, RAM_SIZE, };