returned hand

This commit is contained in:
Rendo 2025-02-16 22:47:15 +05:00
commit 78af40ba77

View file

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