diff options
Diffstat (limited to 'Userland/Games/Snake/SnakeGame.h')
-rw-r--r-- | Userland/Games/Snake/SnakeGame.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Games/Snake/SnakeGame.h b/Userland/Games/Snake/SnakeGame.h index 063b6c8474..e29249346c 100644 --- a/Userland/Games/Snake/SnakeGame.h +++ b/Userland/Games/Snake/SnakeGame.h @@ -68,6 +68,7 @@ private: String m_score_text; unsigned m_high_score { 0 }; String m_high_score_text; + bool m_is_new_high_score { false }; NonnullRefPtrVector<Gfx::Bitmap> m_fruit_bitmaps; }; |