aboutsummaryrefslogtreecommitdiff
path: root/src/world.rs
diff options
context:
space:
mode:
authorGuillaume Pasquet <dev@etenil.net>2019-11-20 14:29:21 +0000
committerGuillaume Pasquet <dev@etenil.net>2019-11-20 14:29:21 +0000
commit15ccde4be6585865d01d9a620778dbcf5d8d998d (patch)
tree62f87126d9f9295ef363984d349e2e6aaa5f5c50 /src/world.rs
parentbd87cf7569ace13eb2351fb5fc1a58f01f83f343 (diff)
Go up and down the stairs!
Diffstat (limited to 'src/world.rs')
-rw-r--r--src/world.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/world.rs b/src/world.rs
index 20b510a..a315111 100644
--- a/src/world.rs
+++ b/src/world.rs
@@ -254,9 +254,17 @@ impl Dungeon {
}
}
+ pub fn xsize(&self) -> usize {
+ self.xsize
+ }
+
pub fn ysize(&self) -> usize {
self.ysize
}
+
+ pub fn depth(&self) -> usize {
+ self.depth
+ }
}
impl Generatable for Dungeon {