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:
parent
66312c92b4
commit
86e0512b7b
1 changed files with 1 additions and 1 deletions
2
main.py
2
main.py
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue