7 lines
166 B
Python
7 lines
166 B
Python
from basegame import *
|
|
|
|
print("Welcome to Valeria Card Kingdoms: Online")
|
|
gameBoard = Board(5, "shuffled")
|
|
while not gameBoard.end_check():
|
|
gameBoard.play_turn()
|