Files
Gwendolyn/gwendolyn/funcs/games/__init__.py
2025-10-28 15:42:26 +01:00

11 lines
218 B
Python

"""Game functions for Gwendolyn."""
__all__ = ["Money", "Games"]
from .money import Money
class Games():
def __init__(self, bot):
"""Initialize the class."""
self.bot = bot
self.database = bot.database