% Tests playing a single player vs a simple AI
function [] = test1Player()
close all;

player1 = HumanPlayer('red');
player2 = SimpleAI('blue');
game = Game(player1, player2, 5);
game.start()
end