abstreet/editor/src/main.rs

21 lines
302 B
Rust
Raw Normal View History

//mod abtest;
mod common;
2019-06-22 19:48:42 +03:00
mod debug;
//mod edit;
mod game;
mod helpers;
//mod mission;
mod render;
mod sandbox;
mod state;
//mod tutorial;
mod ui;
use structopt::StructOpt;
fn main() {
ezgui::run("A/B Street", 1800.0, 800.0, |ctx| {
game::Game::new(ui::Flags::from_args(), ctx)
});
}