diff options
Diffstat (limited to 'main.py')
| -rw-r--r-- | main.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -66,7 +66,7 @@ def DrawSquare(x, y, val, box_color): gamewin.addstr(y + 2, x, "+" + "-" * (scaleX - 2) + "+", curses.color_pair(box_color)) -def FullDraw(key): +def FullDraw(): gamewin.clear() gamewin.box() for i in range(maxY): @@ -206,9 +206,11 @@ def End(text): gamewin.getch() +# GAMEPLAY + userin = 0 while True: - FullDraw(userin) + FullDraw() userin = gamewin.getch() if userin == 81: # Q break |
