From 15ccde4be6585865d01d9a620778dbcf5d8d998d Mon Sep 17 00:00:00 2001 From: Guillaume Pasquet Date: Wed, 20 Nov 2019 14:29:21 +0000 Subject: Go up and down the stairs! --- src/world.rs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/world.rs') 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 { -- cgit v1.2.3