This crate allows to register bevy state systems with attribute macros.
```rust use bevy::prelude::; use bevy_state_macros::;
enum AppState { Menu, Game, }
struct Menu;
fn main() { let mut app = App::new(); app.add_state(AppState::Menu);
add_systems!(app [
spawn_menu,
handle_menu,
#[on_exit(AppState::Menu)]
cleanup::<Menu>,
]);
}
fn spawn_menu(mut c: Commands) { // Spawn the menu }
fn handle_menu() { // handle the menu input }
// Also works with generics.
fn cleanup