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.
16 lines
400 B
16 lines
400 B
from util.bataille import Joueur, Carte
|
|
from util.window import *
|
|
from lib.File import File_lst as File
|
|
|
|
if __name__ == "__main__":
|
|
#card_to_image(Carte(1, 1))
|
|
#card_to_image(Carte(4, 2))
|
|
#card_to_image(Carte(13, 0))
|
|
f1 = File()
|
|
f2 = File()
|
|
f1.enfiler(Carte(2,0))
|
|
f2.enfiler(Carte(3,3))
|
|
app = Window(Joueur(f1, "A"), Joueur(f2, "B"))
|
|
app.p1.tire_carte()
|
|
app.p2.tire_carte()
|
|
app.mainloop()
|
|
|