#[derive(Debug, Clone, Copy, PartialEq)]
pub struct Lander {
pub name: &'static str,
pub dry_mass_kg: f64,
pub crewed: bool,
}
pub fn callisto_lander_concept() -> Lander {
Lander {
name: "Callisto Lander Concept",
dry_mass_kg: 1_800.0,
crewed: false,
}
}
pub fn callisto_base_module() -> Lander {
Lander {
name: "Callisto Base Module",
dry_mass_kg: 12_000.0,
crewed: true,
}
}