Проектная работа - Игра "Змейка"

Создание нового проекта
This commit is contained in:
3 changed files with 23 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
/target/
/Cargo.lock
+18
View File
@@ -0,0 +1,18 @@
[package]
name = "snake-game"
version = "0.1.0"
edition = "2024"
[dependencies]
bevy = "0.18"
tracing = "0.1"
[profile.release]
opt-level = "z"
lto = "fat"
codegen-units = 1
debug-assertions = false
panic = "abort"
overflow-checks = false
incremental = false
strip = "symbols"
+3
View File
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}