aboutsummaryrefslogtreecommitdiff
path: root/src/ochess.hpp
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2022-02-26 17:05:47 +0100
committerLoic Guegan <manzerbredes@mailbox.org>2022-02-26 17:05:47 +0100
commit65e9049351130ff54b305dd8c82c969456a0797b (patch)
treedf9b4ec2d93a924694defeea07549ec5543bad83 /src/ochess.hpp
parente5aa5be42cbf93a31d3be387f24b3413f2983898 (diff)
Improve engine support
Diffstat (limited to 'src/ochess.hpp')
-rw-r--r--src/ochess.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ochess.hpp b/src/ochess.hpp
index 2a71c13..89b983c 100644
--- a/src/ochess.hpp
+++ b/src/ochess.hpp
@@ -50,7 +50,7 @@ void Abort(std::string msg);
*/
class TabInfos {
public:
- typedef enum Type { GAME, BASE, NONE } Type;
+ typedef enum Type { GAME, BASE, ENGINE, NONE } Type;
Type type;
TabInfos(Type type_) : type(type_) {}
virtual void ApplyPreferences() = 0;