mirror of
https://github.com/chesskit-app/chesskit-engine.git
synced 2026-06-18 15:54:30 +00:00
20 lines
295 B
C++
20 lines
295 B
C++
//
|
|
// lc0+engine.cpp
|
|
// ChessKitEngine
|
|
//
|
|
|
|
#ifndef lc0_engine_h
|
|
#define lc0_engine_h
|
|
|
|
#include "engine.h"
|
|
#include <string>
|
|
|
|
/// LeelaChessZero (Lc0) implementation of `Engine`.
|
|
class Lc0Engine: public Engine {
|
|
public:
|
|
void initialize();
|
|
void deinitialize();
|
|
};
|
|
|
|
#endif /* lc0_engine_h */
|