% Tests playing two players vs each other
function [] = test2Player()
close all;

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