mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-14 19:38:41 -06:00
19 lines
253 B
Rust
19 lines
253 B
Rust
use shipyard::Component;
|
|
|
|
#[derive(Component)]
|
|
pub struct Entity;
|
|
|
|
#[derive(Component)]
|
|
pub struct Health {
|
|
pub current: u8,
|
|
pub max: u8,
|
|
}
|
|
impl Health {
|
|
fn new(health: u8) -> Self {
|
|
Self {
|
|
current: health,
|
|
max: health
|
|
}
|
|
}
|
|
}
|