Somewhat less broken? still littered with bugs.

This commit is contained in:
Joe S 2021-02-15 22:16:20 -05:00
parent e87c70e04f
commit a6d2352cfa
1 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,5 @@
import curses
from curses.textpad import Textbox, rectangle
from curses.textpad import Textbox
class AdventureGame:
@ -70,7 +70,8 @@ class AdventureGame:
pass
def draw_art_window(self, window):
window.addstr(0, 0, "Wip")
window.addstr("Wip")
window.addstr("Morewip lol")
window.box()
window.refresh()
@ -79,7 +80,7 @@ class AdventureGame:
window.refresh()
textbox = Textbox(window)
return textbox.gather()
return textbox.edit()
if __name__ == '__main__':