aboutsummaryrefslogtreecommitdiff
path: root/src/expectimax.cpp
blob: 3d8bf54227686319b7e7921d60f7e279a8325371 (plain)
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;
}