summaryrefslogtreecommitdiff
path: root/src/lunar/structs.rs
blob: 61b3a6647028c22e01fbd6bd2177880cc6d87e20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use bevy::ecs::component::Component;

#[derive(Component)]
pub struct DestPlanet {
    // pub display_name: String,
    pub planet_mass_kg: f32,
    pub radius: f32,
}
#[derive(Component)]
pub struct LunarOrbitalData {
    pub period: f32,
    pub orbital_velocity: f32,
    pub orbital_radius: f32,
}