aboutsummaryrefslogtreecommitdiff
path: root/src/world.rs
diff options
context:
space:
mode:
authorIago Garrido <iago086@gmail.com>2019-11-18 20:56:58 +0100
committerIago Garrido <iago086@gmail.com>2019-11-18 20:56:58 +0100
commit0a3b3bf177d54c68a22f061a7087d20d19488bba (patch)
treeea1bedebe13d48172f3d52ca6551804facf7c92d /src/world.rs
parent806ba04cfc6f225df9a3628fefd04578cefdbda5 (diff)
add initial ui logic
Diffstat (limited to 'src/world.rs')
-rw-r--r--src/world.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/world.rs b/src/world.rs
index f9c8b2e..21d0d86 100644
--- a/src/world.rs
+++ b/src/world.rs
@@ -221,8 +221,8 @@ pub struct Level {
}
pub struct Dungeon {
- xsize: usize,
- ysize: usize,
+ pub xsize: usize,
+ pub ysize: usize,
depth: usize,
pub levels: Vec<Level>,
}