Skip to content

Commit

Permalink
Added board state stubs to BitBoard header
Browse files Browse the repository at this point in the history
  • Loading branch information
mbluemer committed Apr 13, 2017
1 parent 9ea9d5c commit 50238f7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions include/BitBoard.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
#define BIT_BOARD_H

#include <cstdint>
#include <string>
#include <vector>
#include "Move.h"

class BitBoard
{
Expand Down Expand Up @@ -30,6 +33,10 @@ class BitBoard

public:

std::string const player();
std::vector<Move> const actions();
BitBoard const result(Move move);
void const printState();
};

#endif

0 comments on commit 50238f7

Please sign in to comment.