mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-04-18 03:42:02 +00:00
13 lines
329 B
C++
13 lines
329 B
C++
![]() |
#include "EngineTabBF.h"
|
||
|
#include "ochess.hpp"
|
||
|
#include "UCI.hpp"
|
||
|
|
||
|
class EngineTab : public EngineTabBF, public TabInfos {
|
||
|
uciadapter::UCI *engine;
|
||
|
|
||
|
public:
|
||
|
EngineTab(wxWindow *parent, std::string engine_path_or_name);
|
||
|
void ApplyPreferences() {}
|
||
|
void *GetGame() { return (NULL); }
|
||
|
void *GetBase() { return (NULL); };
|
||
|
};
|