diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2022-02-26 17:05:47 +0100 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2022-02-26 17:05:47 +0100 |
| commit | 65e9049351130ff54b305dd8c82c969456a0797b (patch) | |
| tree | df9b4ec2d93a924694defeea07549ec5543bad83 /src/engine_tab/EngineTab.hpp | |
| parent | e5aa5be42cbf93a31d3be387f24b3413f2983898 (diff) | |
Improve engine support
Diffstat (limited to 'src/engine_tab/EngineTab.hpp')
| -rw-r--r-- | src/engine_tab/EngineTab.hpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/engine_tab/EngineTab.hpp b/src/engine_tab/EngineTab.hpp new file mode 100644 index 0000000..4538d0b --- /dev/null +++ b/src/engine_tab/EngineTab.hpp @@ -0,0 +1,13 @@ +#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); }; +};
\ No newline at end of file |
