Files
Stockfish/src/tools/sfen_packer.h
Tomasz Sobczyk 696e849a30 learn -> tools
2021-04-18 19:18:41 +02:00

20 lines
329 B
C++

#ifndef _SFEN_PACKER_H_
#define _SFEN_PACKER_H_
#include "types.h"
#include "packed_sfen.h"
#include <cstdint>
class Position;
struct StateInfo;
class Thread;
namespace Tools {
int set_from_packed_sfen(Position& pos, const PackedSfen& sfen, StateInfo* si, Thread* th);
PackedSfen sfen_pack(Position& pos);
}
#endif