This commit is contained in:
Jonas_Jones 2022-12-23 03:54:54 +01:00
parent dd30027f87
commit 8fc0a3fe95
5 changed files with 55 additions and 2 deletions

View file

@ -83,4 +83,12 @@ class PLAYER:
list of cards
'''
self.cards = cards
if __name__ == "__main__":
import game
player = PLAYER("Bot", 1, game.create_cards())
print(player.get_cards())
print(player.play_card())
print(player.get_cards())