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