Files
Gwendolyn/funcs/games/__init__.py
NikolajDanger 01c5451da3 📝 Renamed games.py to gamesContainer.py
Making it clear that it's a container and should only be used to store
other classes.
2021-04-04 14:13:48 +02:00

7 lines
136 B
Python

"""Functions for games Gwendolyn can play."""
__all__ = ["Money", "Games"]
from .money import Money
from .gamesContainer import Games