lot's of refactoring and packaging
This commit is contained in:
parent
9cdc8d742c
commit
eff057da8c
17 changed files with 190 additions and 134 deletions
18
src/package/games/game.py
Normal file
18
src/package/games/game.py
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue