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

11 lines
149 B
Python
Raw Normal View History

2022-11-02 20:02:13 +00:00
import curses
2022-11-04 11:25:22 +00:00
from maze.modules.maze import main
2022-11-02 20:04:30 +00:00
2022-11-02 20:02:13 +00:00
def bruh():
2022-11-02 20:04:30 +00:00
curses.wrapper(main)
2022-11-23 18:03:16 +00:00
curses.nocbreak()
curses.echo()
curses.endwin()