bevy/examples/simple.rs
2019-12-02 01:31:07 -08:00

9 lines
228 B
Rust

use bevy::{Application};
use legion::prelude::*;
fn main() {
// Create a world to store our entities
let universe = Universe::new();
let mut world = universe.create_world();
Application::run(universe, world);
}