healing particle effect

This commit is contained in:
2025-05-07 17:10:31 +02:00
parent 3ce61bfe5b
commit b5ec1229b8
6 changed files with 107 additions and 1 deletions

View File

@@ -6,7 +6,7 @@ use crate::{
};
#[derive(Component)]
struct Healing(Entity);
pub struct Healing(pub Entity);
#[derive(Event, Debug)]
pub enum HealingStateChanged {

View File

@@ -4,6 +4,8 @@ mod healing;
mod missile;
mod thrown;
pub use healing::Healing;
use crate::{
GameState,
aim::AimTarget,