aboutsummaryrefslogtreecommitdiffstats
path: root/src/shared/health_event.rs
blob: 99325991bbe54ce9e65f3eeae8cf2d81badb9fe8 (plain)
1
2
3
4
5
6
7
use crate::shared::*;

#[derive(Message, Serialize, Deserialize, PartialEq, Clone, Debug)]
pub struct HealthEvent {
    pub target_player: PlayerId,
    pub health_gained: f32,
}