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

Spider: Track win and loss counts

Again, this isn't exposed anywhere yet.
This commit is contained in:
Jamie Mansfield 2021-07-27 12:36:20 +01:00 committed by Andreas Kling
parent f7eb6772ce
commit 26cb559d37
2 changed files with 33 additions and 2 deletions

View file

@ -24,6 +24,7 @@ enum class Mode : u8 {
enum class GameOverReason {
Victory,
NewGame,
Quit,
};
class Game final : public GUI::Frame {