feat: BpmTimer and AttackArea

This commit is contained in:
Alexey 2026-04-13 14:24:58 +03:00
commit f6022d84b2
7 changed files with 198 additions and 2 deletions

View file

@ -20,6 +20,9 @@ impl Plugin for GamePlugin {
InputManagerPlugin::<input::DebugInput>::default(),
))
.add_systems(Startup, setup)
.add_systems(Update, player::systems::handle_input);
.add_systems(Update, (
player::systems::handle_input,
timer::update_bpm_timers,
));
}
}