use crate::despawn_with_tag;
use bevy::prelude::*;
use game_library::state::AppState;
use game_library::{events::CastSpell, state::Overlay};
use super::{
cast_spell::cast_spells,
components::{despawn_expired_spells, SpellEntity},
};
pub struct SpellsPlugin;
impl Plugin for SpellsPlugin {
fn build(&self, app: &mut App) {
app.add_event::<CastSpell>()
.add_systems(
Update,
(despawn_expired_spells, cast_spells)
.run_if(in_state(AppState::InGame).and_then(not(in_state(Overlay::Settings)))),
)
.add_systems(OnExit(AppState::InGame), despawn_with_tag::<SpellEntity>);
}
}