init bevy

This commit is contained in:
luckyturtledev 2024-07-05 19:01:09 +02:00
commit c6ba3f6d80
4 changed files with 4297 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/target

4270
Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

19
Cargo.toml Normal file
View file

@ -0,0 +1,19 @@
[package]
name = "game-jame"
version = "0.1.0"
edition = "2021"
[workspace]
resolver = "2"
# Enable a small amount of optimization in debug mode
[profile.dev]
# opt-level = 1
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3
[dependencies]
bevy = "0.14.0"

7
src/main.rs Normal file
View file

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