New hand organization

This commit is contained in:
Rendo 2025-02-16 22:43:02 +05:00
commit c98f8fdb74

View file

@ -1,8 +1,4 @@
use bevy::prelude::*; use bevy::prelude::*;
#[derive(Component)] #[derive(Component)]
pub struct Hand { pub struct HandCard;
pub name: String,
pub cards: Vec<Entity>,
pub animals: Vec<Entity>
}