You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
477 B
23 lines
477 B
1 month ago
|
import Tkinter
|
||
|
import File as File
|
||
|
|
||
|
class Carte:
|
||
|
def __init__ (self,valeur, couleur):
|
||
|
self.valeur = valeur
|
||
|
self.couleur = couleur
|
||
|
|
||
|
def compare (self,other):
|
||
|
if other > self.valeur:
|
||
|
return 1
|
||
|
elif other == self.valeur:
|
||
|
return 0
|
||
|
|
||
|
class Jeux :
|
||
|
def __init__ (self, paquet):
|
||
|
self.paquet = Pille()
|
||
|
|
||
|
def distribue (self) :
|
||
|
f1 = File ()
|
||
|
f2 = File ()
|
||
|
|
||
|
return
|