aboutsummaryrefslogtreecommitdiff
path: root/include/expectimax.hpp
blob: a3163e180cf0dd92d6684fbee5c4e68da771f6f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef EXPECTIMAX_HPP
# define EXPECTIMAX_HPP

#include "2048.hpp"
#include "game.hpp"

class Expectimax
{
    public:
    Expectimax(Game *g);
    Direction move();

    private:
    Game *game;
};

#endif