lot's of refactoring and packaging

This commit is contained in:
Bibin Muttappillil 2020-07-13 23:47:56 +02:00
parent 9cdc8d742c
commit eff057da8c
17 changed files with 190 additions and 134 deletions

18
src/package/games/game.py Normal file
View file

@ -0,0 +1,18 @@
from abc import ABC
class Game(ABC):
name = "Game"
def __init__(self, bot, channel):
self.bot = bot
self.channel = channel
self.running = False
self.player_list = []
async def round(self):
pass
async def set_players(self):
pass