use bevy::{prelude::*, reflect::Reflect};
use bevy_inspector_egui::prelude::*;
use crate::{progress_bar::Percentage, Attribute};
#[derive(Component, Default, Debug, Reflect, InspectorOptions)]
#[reflect(InspectorOptions)]
pub struct Health {
pub value: Attribute,
}
impl Health {
#[must_use]
pub fn new(value: u32) -> Self {
Self {
value: Attribute::new(value),
}
}
pub fn kill(&mut self) {
self.value.set(0_u32);
}
#[must_use]
pub const fn is_dead(&self) -> bool {
self.value.is_empty()
}
}
impl Percentage for Health {
fn percentage(&self) -> f32 {
self.value.remaining()
}
}