mirror of
https://github.com/kristoferssolo/Tetris.git
synced 2025-10-21 20:00:35 +00:00
15 lines
243 B
Python
15 lines
243 B
Python
from .config import CONFIG
|
|
from .figure import Figure, FigureConfig
|
|
from .log import log
|
|
from .path import BASE_PATH
|
|
from .size import Size
|
|
|
|
__all__ = [
|
|
"BASE_PATH",
|
|
"CONFIG",
|
|
"log",
|
|
"Size",
|
|
"Figure",
|
|
"FigureConfig",
|
|
]
|