๐Ÿ“ฆ Raphire / UTTT-AI

๐Ÿ“„ ttt.h ยท 18 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18// "ttt.h"
// Jeffrey Drost

#ifndef TTT_H
#define TTT_H

#include "uttt.h"

class ttt {
public:
    static std::vector<int> GetMoves(const MicroState & b);
    static Player GetWinner(const MicroState & b);
    static int CheckSetups(const MicroState &b, const Player &player);
    static Player IsWinnableBy(const MicroState & b);
};

#endif //TTT_H