titanss 0.0.3

Titanss is a celestial simulation crate for the MilkyWay SolarSystem workspace
Documentation
#[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,
    }
}