ABOULIN Alexaaaaaandre
2 years ago
5 changed files with 49 additions and 14 deletions
@ -1,2 +1,2 @@ |
|||
__pycache__ |
|||
test.py |
|||
*.swp |
@ -0,0 +1,16 @@ |
|||
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() |
Binary file not shown.
Loading…
Reference in new issue