mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Creata classe giocatore
This commit is contained in:
parent
6fb9c78c7f
commit
22ab2363f5
1 changed files with 9 additions and 0 deletions
9
mifia.py
Normal file
9
mifia.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
|
||||
class Player:
|
||||
def __init__(self, iid, iusername, irole):
|
||||
self.id = iid
|
||||
self.username = iusername
|
||||
self.role = irole
|
||||
|
Loading…
Reference in a new issue