bevy/examples/app/empty.rs

8 lines
100 B
Rust
Raw Normal View History

//! An empty application (does nothing)
2020-01-14 03:20:58 +00:00
use bevy::prelude::*;
fn main() {
App::new().run();
2020-01-11 09:59:39 +00:00
}