Updates
This commit is contained in:
parent
4a171c4587
commit
cd7a3aa817
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
||||
.direnv
|
||||
/target
|
||||
|
590
Cargo.lock
generated
590
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -6,7 +6,7 @@ edition = "2021"
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
bevy = { version = "0.6", features = ["dynamic"] }
|
||||
bevy = { version = "0.7", features = ["dynamic", "wayland"] }
|
||||
|
||||
# Enable only a small amount of optimization in debug mode
|
||||
[profile.dev]
|
||||
|
@ -1,7 +1,11 @@
|
||||
use bevy::prelude::*;
|
||||
|
||||
#[derive(Component)]
|
||||
struct Foo(u64);
|
||||
|
||||
fn main() {
|
||||
App::new()
|
||||
.add_plugins(DefaultPlugins)
|
||||
.add_system(bevy::input::system::exit_on_esc_system)
|
||||
.run();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user