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

@ -136,4 +136,13 @@ class BOT:
def __str__(self):
return self.name
if __name__ == "__main__":
import game
# Create a bot
bot = BOT("Bot", 1, game.create_cards())
print(bot.get_cards())
print(bot.play_card())
print(bot.get_cards())