From 22ab2363f59a43941a4ec70baeea5ced9ac75acb Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Fri, 1 Apr 2016 17:39:38 +0200 Subject: [PATCH] Creata classe giocatore --- mifia.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 mifia.py diff --git a/mifia.py b/mifia.py new file mode 100644 index 00000000..500835ee --- /dev/null +++ b/mifia.py @@ -0,0 +1,9 @@ +# -*- coding: utf-8 -*- + + +class Player: + def __init__(self, iid, iusername, irole): + self.id = iid + self.username = iusername + self.role = irole +