pub trait AiUnit: Unit {
    fn hull(&self) -> f32;
    fn hull_max(&self) -> f32;
    fn hull_armor(&self) -> f32;
    fn shield(&self) -> f32;
    fn shield_max(&self) -> f32;
    fn shield_armor(&self) -> f32;
}

Required Methods

Implementors