21 lines
308 B
Rust
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()
|
|
}
|
|
}
|