DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

1900e665248f30683184565079aaf0dea02563ae — skye 1 year, 5 months ago de6cc15
feat(client): add hand type for cards
1 files changed, 2 insertions(+), 0 deletions(-)

M client/src/plugins/game/card/mod.rs
M client/src/plugins/game/card/mod.rs => client/src/plugins/game/card/mod.rs +2 -0
@@ 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)]