From 8aad7adab84a8136a61aa57808294b9284fa0544 Mon Sep 17 00:00:00 2001 From: Adam Whitehurst Date: Sat, 24 Oct 2020 13:17:49 -0700 Subject: [PATCH] add comments --- common/src/comp/buff.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/src/comp/buff.rs b/common/src/comp/buff.rs index 9f661199b1..05abc28362 100644 --- a/common/src/comp/buff.rs +++ b/common/src/comp/buff.rs @@ -172,8 +172,11 @@ pub enum BuffSource { /// would be probably an undesired effect). #[derive(Clone, Debug, Serialize, Deserialize, Default)] pub struct Buffs { + /// Uid used for synchronization id_counter: u64, + /// Maps Kinds of buff to Id's of currently applied buffs of that kind pub kinds: HashMap>, + // All currently applied buffs stored by Id pub buffs: HashMap, }