1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
from discord.ext.commands import Cog from bot.bot import SeasonalBot class TicTacToe(Cog): """TicTacToe cog contains tic-tac-toe game commands.""" def __init__(self, bot: SeasonalBot): self.bot = bot def setup(bot: SeasonalBot) -> None: """Load TicTacToe Cog.""" bot.add_cog(TicTacToe(bot))