diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-03-15 14:04:17 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-03-15 14:25:01 +0100 |
commit | fdee6aa8cf2c51d5004d914458ff661da366e883 (patch) | |
tree | 0c022856e64e72a00305e28a684e139696c297ab /src/protocol.rs | |
parent | 1e162629da53373f0e2502014d42c7636412e67e (diff) |
feat: add health/ damage
Diffstat (limited to 'src/protocol.rs')
-rw-r--r-- | src/protocol.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/protocol.rs b/src/protocol.rs index 7672489..3d4567d 100644 --- a/src/protocol.rs +++ b/src/protocol.rs @@ -1,4 +1,5 @@ use crate::shared::cooldown::*; +use crate::shared::health::*; use crate::shared::imperative::*; use crate::shared::projectile::*; use crate::shared::*; @@ -31,6 +32,7 @@ pub enum Components { Projectile(Projectile), ProjectilePosition(ProjectilePosition), Cooldown(Cooldown), + Health(Health), } #[derive(Channel)] |