Tetris/src/game/__init__.py
2024-01-04 00:31:48 +02:00

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"]