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

7 lines
88 B
Python
Raw Normal View History

2022-11-02 20:02:13 +00:00
from maze.modules.maze import main
import curses
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)