mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-12-26 21:58:20 -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
|
||
|
}
|
||
|
}
|
||
|
}
|