From 46236124b0b3d99f9592bef69bb1dc35675e413e Mon Sep 17 00:00:00 2001 From: iiyese Date: Sat, 15 Jul 2023 16:57:36 +0000 Subject: [PATCH] Add alert system example to app --- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f70f85a..761a4db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/README.md b/README.md index aff053d..f1d5668 100644 --- a/README.md +++ b/README.md @@ -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(); } diff --git a/src/lib.rs b/src/lib.rs index ff8e8fe..6c5faaf 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -25,7 +25,7 @@ //! App::new() //! .add_plugins(Aery) //! .add_systems(Startup, setup) -//! .add_systems(Update, sys) +//! .add_systems(Update, (alert, sys)) //! .run(); //! } //!