Init the bevy project

This commit is contained in:
Nikolai Rodionov 2025-03-12 19:01:18 +01:00
parent 3af452b89a
commit 468c75dd1c
Signed by: allanger
GPG Key ID: 09F8B434D0FDD99B
3 changed files with 20 additions and 0 deletions

5
.gitignore vendored
View File

@ -20,3 +20,8 @@ Cargo.lock
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
# Added by cargo
/target

8
Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "zoned-out"
version = "0.1.0"
edition = "2024"
[dependencies]
avian3d = "0.2.1"
bevy = "0.15.3"

7
src/main.rs Normal file
View File

@ -0,0 +1,7 @@
use bevy::prelude::*;
fn main() {
App::new()
.add_plugins(DefaultPlugins)
.run();
}