diff options
Diffstat (limited to 'include/expectimax.hpp')
| -rw-r--r-- | include/expectimax.hpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/expectimax.hpp b/include/expectimax.hpp new file mode 100644 index 0000000..a3163e1 --- /dev/null +++ b/include/expectimax.hpp @@ -0,0 +1,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 |
