started generalizing player

This commit is contained in:
Bibin Muttappillil 2020-07-15 16:09:17 +02:00
parent eff057da8c
commit b85c20b65a
2 changed files with 12 additions and 1 deletions

View File

@ -0,0 +1,9 @@
"""Has a single class: Player"""
# discord imports
import discord
class Player:
"""This (abstract) class is a template for player objects for games"""
pass

View File

@ -1,7 +1,9 @@
import discord
from .player import Player
class Player:
class Werewolf_player(Player):
@staticmethod
async def make(member, game):