20 lines
281 B
Python
20 lines
281 B
Python
from abc import ABC
|
|
|
|
|
|
class Game(ABC):
|
|
|
|
@classmethod
|
|
def name(cls):
|
|
return "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
|