diff options
author | Guillaume Pasquet <dev@etenil.net> | 2020-03-14 16:22:54 +0000 |
---|---|---|
committer | Guillaume Pasquet <dev@etenil.net> | 2020-03-14 16:22:54 +0000 |
commit | 9848a92fde2891177cc352064ae9e4ec1098277f (patch) | |
tree | 4ca2441b86f326fee4d5494a1f577d48b3735211 /src/main.rs | |
parent | 49ca52844b0fa74bcd92018ef313923e9f355632 (diff) |
Make it work
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 3f7f81c..bed0c8d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -16,8 +16,8 @@ use state::State; use viewport::{CrossTermViewPort, ViewPort}; use world::Dungeon; -const DUNGEON_SIZE_X: usize = 20; -const DUNGEON_SIZE_Y: usize = 20; +const DUNGEON_SIZE_X: usize = 80; +const DUNGEON_SIZE_Y: usize = 24; const DUNGEON_DEPTH: usize = 5; fn player_name() -> String { |