mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 20:53:53 +00:00
9 lines
228 B
Rust
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);
|
|
}
|