mod game; mod graphics; fn main() { game::start(); let graphics_thread = std::thread::spawn(move || { graphics::start(); }); graphics_thread.join().unwrap(); }