add empty overworld world type

This commit is contained in:
Dominic 2024-07-06 13:57:47 +02:00
parent 576b21d8b9
commit baae917d0b
Signed by: msrd0
GPG key ID: AAF7C8430CA3345D
4 changed files with 17 additions and 12 deletions

View file

@ -0,0 +1,9 @@
#[derive(Debug)]
pub struct Overworld;
impl Default for Overworld {
fn default() -> Self {
Self
}
}