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

8 lines
89 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)