kubi/kubi-shared/src/player.rs

7 lines
101 B
Rust
Raw Normal View History

2023-03-08 15:34:41 -06:00
use shipyard::Component;
2023-03-12 20:24:37 -05:00
pub const PLAYER_HEALTH: u8 = 20;
2023-03-08 15:34:41 -06:00
#[derive(Component)]
pub struct Player;