diff options
| author | 2019-08-09 17:23:31 +0200 | |
|---|---|---|
| committer | 2019-08-09 17:23:31 +0200 | |
| commit | fe7d6c6535ccfa756d255cd11e68157714992581 (patch) | |
| tree | 926f746a5e5e237e2d9e06bee79d23acea4f389b | |
| parent | Merge pull request #249 from python-discord/snakes-and-ladders-bytesio-fix (diff) | |
added minesweeper cog
| -rw-r--r-- | bot/seasons/evergreen/minesweeper.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/bot/seasons/evergreen/minesweeper.py b/bot/seasons/evergreen/minesweeper.py new file mode 100644 index 00000000..e5276df5 --- /dev/null +++ b/bot/seasons/evergreen/minesweeper.py @@ -0,0 +1,13 @@ +from discord.ext import commands + + +class Minesweeper(commands.Cog): + """play a game of minesweeper""" + + def __init__(self, bot: commands.Bot) -> None: + self.bot = bot + + +def setup(bot: commands.Bot) -> None: + """Cog load.""" + bot.add_cog(Minesweeper(bot)) |