Skip to content

Commit

Permalink
Merge branch 'empty_bevy_app'
Browse files Browse the repository at this point in the history
  • Loading branch information
Ablesius committed Mar 28, 2024
2 parents 32e33be + a21932f commit a792013
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 1 deletion.
37 changes: 37 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ edition = "2021"

[dependencies]
bevy = "0.13.1"
rand = "0.8.5"
6 changes: 5 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
use bevy::prelude::*;

fn main() {
println!("Hello, world!");
App::new()
.add_plugins(DefaultPlugins)
.run();
}

0 comments on commit a792013

Please sign in to comment.