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

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