From 1900e665248f30683184565079aaf0dea02563ae Mon Sep 17 00:00:00 2001 From: skye Date: Wed, 10 May 2023 10:51:47 +0300 Subject: [PATCH] feat(client): add hand type for cards --- client/src/plugins/game/card/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/src/plugins/game/card/mod.rs b/client/src/plugins/game/card/mod.rs index f1147c3..a8f1a22 100644 --- a/client/src/plugins/game/card/mod.rs +++ b/client/src/plugins/game/card/mod.rs @@ -31,6 +31,8 @@ pub mod visual_card_kind { pub struct Normal; #[derive(Component)] pub struct Supply(pub usize); + #[derive(Component)] + pub struct Hand(pub usize); } #[derive(Component, Clone)] -- 2.44.1