aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/evergreen/tic_tac_toe.py
blob: d4c9572847c1b45db4c8eda464f6d8acf3e92d86 (plain) (blame)
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))