diff --git a/yard-rs/bevy-xp/src/main.rs b/yard-rs/bevy-xp/src/main.rs index e7a11a9..032a096 100644 --- a/yard-rs/bevy-xp/src/main.rs +++ b/yard-rs/bevy-xp/src/main.rs @@ -1,3 +1,5 @@ +use bevy::prelude::*; + fn main() { - println!("Hello, world!"); + App::new().run(); }