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