labyrinth-cs-proj/maze/modules/__init__.py

15 lines
272 B
Python

import curses
import sys
from maze.modules.maze import main
def bruh():
try:
curses.wrapper(main)
curses.nocbreak()
curses.echo()
curses.endwin()
except KeyboardInterrupt:
print("\n\n\nTerminating...")
sys.exit()