world/src/planet/planet.rs
2024-06-18 17:21:59 -07:00

21 lines
308 B
Rust

pub struct Planet {
// Icosphere
// Anchors
// Geography
// Ocean
// Atmosphere
// Weather
// Climate
}
impl Planet {
pub fn new() -> Self
{
Self { }
}
pub fn builder() -> super::Builder
{
super::Builder::new()
}
}