18 lines
250 B
Python
18 lines
250 B
Python
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
|