1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:27:35 +00:00

Solitaire: Persist game mode to config file

This commit is contained in:
Timothy Flynn 2021-05-18 11:15:34 -04:00 committed by Andreas Kling
parent 5a8c220101
commit 7d062d0033
3 changed files with 34 additions and 7 deletions

View file

@ -12,9 +12,10 @@
namespace Solitaire {
enum class Mode {
enum class Mode : u8 {
SingleCardDraw,
ThreeCardDraw,
__Count
};
class Game final : public GUI::Frame {