mirror of
https://github.com/kristoferssolo/Tetris.git
synced 2025-10-21 20:00:35 +00:00
7 lines
136 B
Python
7 lines
136 B
Python
from .game import Game
|
|
from .log import log
|
|
from .main import Main
|
|
from .score import Score
|
|
|
|
__all__ = ["log", "Main", "Game", "Score"]
|