blob: c84edef3bbd98c0f7dbb4296cf97bd19dd2d9276 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef SRC_MICS_H_
#define SRC_MICS_H_
#include "board/board.hpp"
#include <cstdint>
#include <string>
std::string engine_info();
std::string engine_version();
uint64_t MoveGenTest(int depth, Game *g);
#endif /* SRC_MICS_H_ */
|