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

#include "ai.hpp"
#include "game.hpp"

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

    private:
    Game *game;
};

#endif