From fa3e73498def8bb11bb8c6a05876aac21b5e2672 Mon Sep 17 00:00:00 2001 From: Joe S <31870999+KenwoodFox@users.noreply.github.com> Date: Sun, 21 Feb 2021 17:17:19 -0500 Subject: [PATCH] Add in log window! --- Adventure Game/adventure_game/GameNavigator.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Adventure Game/adventure_game/GameNavigator.py b/Adventure Game/adventure_game/GameNavigator.py index 77803f8..620d33c 100644 --- a/Adventure Game/adventure_game/GameNavigator.py +++ b/Adventure Game/adventure_game/GameNavigator.py @@ -47,6 +47,21 @@ class GameNavigator(npyscreen.FormBaseNew): rely=2, editable=False) + self.logBoxOutline = self.add(npyscreen.BoxBasic, + max_width=inventory_width + art_width, + max_height=9, + relx=1, + rely=top_division_height + 2, + editable=False) + + self.logBox = self.add(npyscreen.Textfield, + name='Type Here', + max_width=inventory_width + art_width - 7, + max_height=7, + relx=2, + rely=top_division_height + 3, + editable=False) + self.dialogueBoxOutline = self.add(npyscreen.BoxBasic, max_width=inventory_width + art_width, max_height=3,