jong/src/game/player.rs
2026-01-13 01:10:31 -08:00

12 lines
192 B
Rust

use bevy::prelude::*;
#[derive(Component, Debug)]
pub struct Player {
pub name: String,
}
#[derive(Component)]
pub struct Points(pub isize);
#[derive(Component)]
pub struct MainPlayer;