1 2 3 4 5 6 7 8
use clap::Parser; use stroemung::window_conf; #[macroquad::main(window_conf)] async fn main() { let args = stroemung::args::Args::parse(); stroemung::run(args).await; }