11 lines
218 B
Python
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 |