aboutsummaryrefslogtreecommitdiffstats
path: root/src/shared/buffs.rs
blob: 868f3a3d1456859db4df235b029c970df5b305ed (plain)
1
2
3
4
5
6
7
8
9
use crate::shared::*;

#[derive(Clone, Message, Component, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct Buffs {
    pub haste: Option<f32>,
    pub shield: Option<f32>,
    pub slow: Option<f32>,
    pub speed: Option<f32>,
}