My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/games/rstnode/rst-client/src/main.rs

22 lines
367 B

mod cli;
mod constants;
mod ctx;
mod graphics;
mod settings;
mod state;
mod window;
pub(crate) use settings::*;
pub(crate) use state::*;
fn main() {
let settings = default();
let state = ClientState::new(&settings);
window::run(&settings, state)
// let my_game = GameState::new(&mut ctx);
// // Run!
// event::run(ctx, eloop, my_game);
}