render hand at index 0

This commit is contained in:
Tao Tien 2026-01-12 21:57:08 -08:00
parent a6079103a4
commit f4c4339204
7 changed files with 56 additions and 59 deletions

View file

@ -6,12 +6,12 @@ use crate::{
};
#[derive(Component)]
pub(crate) struct Player {
pub(crate) name: String,
pub struct Player {
pub name: String,
}
fn spawn_players(mut commands: Commands) {}
#[derive(Component)]
pub struct Points(pub isize);
#[derive(Component)]
pub(crate) struct Points(pub isize);
pub struct MainPlayer;