class LearningBotPlayerInterface implements PlayerInterface, GameMonitor {
private static final Random RAND = new Random();
public static void main(String[] args) throws ClassNotFoundException, IOException {
ConsoleDiplay consoleDisplay = new ConsoleDiplay();
HumanPlayerInterface player1Itf = new HumanPlayerInterface();
GamesData rootData = GamesData.loadFromDisk("LearningBotData.tmp");
LearningBotPlayerInterface player2Itf = new LearningBotPlayerInterface("Red", rootData);