Initial: add basic_game module

This commit is contained in:
Bibin Muttappillil 2021-01-03 01:56:30 +01:00
parent 841a6586fe
commit 1d8ed8f2ea
1 changed files with 19 additions and 0 deletions

View File

@ -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