diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-03-19 14:13:16 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-03-19 15:12:22 +0100 |
commit | 2d21d709901c96b05d7f0169dd9d1207436c658c (patch) | |
tree | 8f1a094c46e96e13a0a5395ba69c0eb402555133 /src/protocol.rs | |
parent | 2e39423d11a6cd1e25b54c30d9afd22e8eff9dfe (diff) |
feat: area of effect
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 8a83260..646974c 100644 --- a/src/protocol.rs +++ b/src/protocol.rs @@ -1,4 +1,5 @@ use crate::shared::activation::*; +use crate::shared::area_of_effect::*; use crate::shared::champion::*; use crate::shared::cooldown::*; use crate::shared::health::*; @@ -42,6 +43,7 @@ pub enum Components { Health(Health), Champion(Champion), EffectiveStats(EffectiveStats), + AreaOfEffect(AreaOfEffect), } #[derive(Channel)] |