Skip to content

Commit

Permalink
Merge pull request #6 from iiYese/dev
Browse files Browse the repository at this point in the history
Add alert system example to app
  • Loading branch information
iiYese authored Jul 15, 2023
2 parents c0266f2 + 4623612 commit d0d2250
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aery"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
authors = ["iiYese iiyese@outlook.com"]
repository = "https://github.com/iiYese/aery"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ fn main() {
App::new()
.add_plugins(Aery)
.add_systems(Startup, setup)
.add_systems(Update, sys)
.add_systems(Update, (alert, sys))
.run();
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
//! App::new()
//! .add_plugins(Aery)
//! .add_systems(Startup, setup)
//! .add_systems(Update, sys)
//! .add_systems(Update, (alert, sys))
//! .run();
//! }
//!
Expand Down

0 comments on commit d0d2250

Please sign in to comment.