kubi/kubi-shared/src/entity.rs
2023-03-13 02:24:37 +01:00

19 lines
257 B
Rust

use shipyard::Component;
#[derive(Component)]
pub struct Entity;
#[derive(Component)]
pub struct Health {
pub current: u8,
pub max: u8,
}
impl Health {
pub fn new(health: u8) -> Self {
Self {
current: health,
max: health
}
}
}