Skip to content

Commit

Permalink
Add alert system example to app
Browse files Browse the repository at this point in the history
  • Loading branch information
iiYese committed Jul 15, 2023
1 parent c0266f2 commit 4623612
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 4623612

Please sign in to comment.