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

16 lines
306 B
Python

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