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

10 lines
149 B
Python

import curses
from maze.modules.maze import main
def bruh():
curses.wrapper(main)
curses.nocbreak()
curses.echo()
curses.endwin()