set clue modifier to 0 by default
This commit is contained in:
parent
812a5dc790
commit
88cfbe21f3
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ namespace Hanabi {
|
|||
boost::optional<bool> interactive {};
|
||||
bool quiet { false };
|
||||
// If this holds std::monostate, then all clue numbers are evaluated
|
||||
std::variant<std::monostate, clue_t> clue_spec;
|
||||
std::variant<std::monostate, clue_t> clue_spec {static_cast<clue_t>(0)};
|
||||
bool recursive { false };
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue