aboutsummaryrefslogtreecommitdiff
path: root/src/ochess.hpp
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2022-02-24 10:18:02 +0100
committerLoic Guegan <manzerbredes@mailbox.org>2022-02-24 10:18:02 +0100
commitbdfc577a3b8c360d48c4d094d532786de44c5aed (patch)
treebebe68b8584da7a05ee58a8f26746fcdbfc0cbb5 /src/ochess.hpp
parenta8fece4ea62a4831c923ebc7e3ce11d594f9da23 (diff)
Start BaseTab design
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 687d44f..3869d99 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, NONE } Type;
+ typedef enum Type { GAME, BASE,NONE } Type;
Type type;
TabInfos(Type type_) : type(type_) {}
virtual void ApplyPreferences() = 0;