We are go with Bevy <3

This commit is contained in:
2024-08-23 14:15:22 +03:00
parent b04a5a3925
commit 235574cf19
2 changed files with 17 additions and 1 deletions

View File

@@ -4,3 +4,13 @@ version = "0.1.0"
edition = "2021" edition = "2021"
[dependencies] [dependencies]
bevy = "0.14.1"
# Enable a small amount of optimization in the dev profile.
[profile.dev]
opt-level = 1
# Enable a large amount of optimization in the dev profile for dependencies.
[profile.dev.package."*"]
opt-level = 3

View File

@@ -1,3 +1,9 @@
use bevy::prelude::*;
fn main() { fn main() {
println!("Inits are hard"); App::new().add_systems(Update, hello_world).run();
}
fn hello_world() {
println!("hello world!");
} }