diff options
Diffstat (limited to 'src/state.rs')
-rw-r--r-- | src/state.rs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/state.rs b/src/state.rs index 20b49d7..6dad58e 100644 --- a/src/state.rs +++ b/src/state.rs @@ -40,6 +40,22 @@ impl State { self.current_level().render(window); } + pub fn show_character(&self, window: &Window) { + self.character.render(window); + + // window.mv(window.get_max_y() - 2, 0); + // window.clrtoeol(); + + // window.refresh(); + + // window.addstr(self.character.info() + "\n"); + + // window.mv(self.character.location.1 as i32,self.character.location.0 as i32); + // window.refresh(); + // draw_block(&window, self.character.tile_type); + // window.refresh(); + } + fn current_level(&self) -> &Level { &self.dungeon.levels[self.level] } |