init wall

This commit is contained in:
Tao Tien 2026-01-08 23:58:26 -08:00
parent 76b720b0a2
commit 3fb03cfbcb
7 changed files with 69 additions and 27 deletions

9
src/game/player.rs Normal file
View file

@ -0,0 +1,9 @@
use bevy::prelude::*;
#[derive(Component)]
pub(crate) struct Player {
pub(crate) name: String,
}
#[derive(Component)]
pub(crate) struct Points(pub isize);