[go: up one dir, main page]

Menu

[r225]: / tags / 0.2.5 / Move.h  Maximize  Restore  History

Download this file

14 lines (10 with data), 246 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#ifndef MOVE_H
#define MOVE_H
#include <string.h>
#include "Types.h"
#include "Position.h"
//using std::string;
using namespace std;
const string move_to_string(Move m);
Move string_to_move(/*const Position & pos, */const string& str);
#endif