diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-03-19 14:56:30 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-03-19 15:12:22 +0100 |
commit | 7b6d9242e4217c8229cb546de495cd2670b97f2d (patch) | |
tree | f65be0458aa9c56501b6028444836459292bed49 /src/protocol.rs | |
parent | 2d21d709901c96b05d7f0169dd9d1207436c658c (diff) |
feat: render buffs in client
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 646974c..2a5b846 100644 --- a/src/protocol.rs +++ b/src/protocol.rs @@ -1,5 +1,6 @@ use crate::shared::activation::*; use crate::shared::area_of_effect::*; +use crate::shared::buffs::*; use crate::shared::champion::*; use crate::shared::cooldown::*; use crate::shared::health::*; @@ -44,6 +45,7 @@ pub enum Components { Champion(Champion), EffectiveStats(EffectiveStats), AreaOfEffect(AreaOfEffect), + Buffs(Buffs), } #[derive(Channel)] |