From 1d8ed8f2ea09a1d6222cc6e6b7f3757020763304 Mon Sep 17 00:00:00 2001 From: bibin Date: Sun, 3 Jan 2021 01:56:30 +0100 Subject: [PATCH] Initial: add basic_game module --- src/cogs/basic_game.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/cogs/basic_game.py b/src/cogs/basic_game.py index e69de29..41864af 100644 --- a/src/cogs/basic_game.py +++ b/src/cogs/basic_game.py @@ -0,0 +1,19 @@ +"""A base module for integrating text games into a discord cog""" + +# import discord +from discord.ext import commands + + +class Cog(commands.Cog): + """A base game cog that has a collection of basic game commands and checkers""" + pass + + +class Session: + """A base class for holding channel specific information and setting up a game""" + pass + + +class Display: + """A base class for displaying game in discord""" + pass