turtlegame/src/activities/overworld/worldgen.rs

10 lines
106 B
Rust
Raw Normal View History

2024-07-06 13:57:47 +02:00
#[derive(Debug)]
pub struct Overworld;
impl Default for Overworld {
fn default() -> Self {
Self
}
}