blob: 4538d0b020bf36e328db70d9562f87c0420160d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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); };
};
|