blob: bdb67647ca2c5319ae999646c4c8ff285e93d2ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef AI_HPP
# define AI_HPP
#include "2048.hpp"
#include "game.hpp"
class AI
{
public:
// AI(Game *g);
virtual Direction move() = 0;
private:
Game *game;
};
#endif
|