1 2 3 4 5 6 7 8 9 10 11 12
#include "expectimax.hpp" Expectimax::Expectimax(Game *g) { game = g; } Direction Expectimax::move() { // algo(game->clone()); return DIRECTION_UP; }