aboutsummaryrefslogtreecommitdiff
path: root/src/game_tab/right_panel/LiveEngineDialog.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game_tab/right_panel/LiveEngineDialog.hpp')
-rw-r--r--src/game_tab/right_panel/LiveEngineDialog.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/game_tab/right_panel/LiveEngineDialog.hpp b/src/game_tab/right_panel/LiveEngineDialog.hpp
index a74a2d6..8975ed2 100644
--- a/src/game_tab/right_panel/LiveEngineDialog.hpp
+++ b/src/game_tab/right_panel/LiveEngineDialog.hpp
@@ -7,11 +7,16 @@
wxDECLARE_EVENT(SHOW_ENGINE_EVALUATION, wxCommandEvent);
+/// @brief Contains the current engine evaluation (sorted vector of best lines + position score in cp)
typedef struct EngineEvaluation {
std::vector<std::string> best_lines;
float eval=0;
} EngineEvaluation;
+/**
+ * @brief Dialog to control the current running engine on the game tab
+ *
+ */
class LiveEngineDialog : public DialogLiveEngine {
uciadapter::UCI *engine;
std::string engine_name;