% Tests two computer AIs playing against 
% each other on 5x5 board
function [] = testAI()
close all;
clear all;
clear classes;

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