1
Fork 0
mirror of https://github.com/RYGhub/royal-mifia.git synced 2024-11-22 05:44:19 +00:00

Sistemate le annotation

This commit is contained in:
Steffo 2017-07-19 00:54:06 +02:00
parent 66312c92b4
commit 86e0512b7b

View file

@ -25,7 +25,7 @@ freenames = s.names_list.copy()
class Player: class Player:
"""Classe di un giocatore. Contiene tutti i dati riguardanti un giocatore all'interno di una partita, come il ruolo, """Classe di un giocatore. Contiene tutti i dati riguardanti un giocatore all'interno di una partita, come il ruolo,
e i dati riguardanti telegram, come ID e username.""" e i dati riguardanti telegram, come ID e username."""
def __init__(self, game: Game, tid: int, tusername: str, dummy=False): def __init__(self, game: 'Game', tid: int, tusername: str, dummy=False):
self.tid = tid # ID di Telegram self.tid = tid # ID di Telegram
self.tusername = tusername # Username di Telegram self.tusername = tusername # Username di Telegram
self.role = Role(self) # Di base, ogni giocatore è un ruolo indefinito self.role = Role(self) # Di base, ogni giocatore è un ruolo indefinito