jong/src/game/player.rs

10 lines
161 B
Rust
Raw Normal View History

2026-01-08 23:58:26 -08:00
use bevy::prelude::*;
#[derive(Component)]
pub(crate) struct Player {
pub(crate) name: String,
}
#[derive(Component)]
pub(crate) struct Points(pub isize);