Add water-based dungeons

This commit is contained in:
Vechro 2019-08-16 19:13:06 +03:00 committed by Joshua Barretto
parent 56bfefa477
commit 4a92bfba73
3 changed files with 8 additions and 0 deletions

Binary file not shown.

Binary file not shown.

View File

@ -37,6 +37,14 @@ lazy_static! {
assets::load_map("world.structure.dungeon.ruins_3", |s: Structure| s
.with_center(Vec3::new(58, 45, 72)))
.unwrap(),
assets::load_map(
"world.structure.dungeon.meso_sewer_temple",
|s: Structure| s.with_center(Vec3::new(66, 56, 60))
)
.unwrap(),
assets::load_map("world.structure.dungeon.ruins_maze", |s: Structure| s
.with_center(Vec3::new(56, 62, 116)))
.unwrap(),
];
}