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

Snake: Save configured base color to Snake's configuration file

This commit is contained in:
Timothy Flynn 2022-12-20 07:20:42 -05:00 committed by Andreas Kling
parent 69beda23c3
commit 36042fc1d6
2 changed files with 8 additions and 1 deletions

View file

@ -22,7 +22,7 @@ public:
void pause();
void reset();
void set_snake_base_color(Color color) { m_snake_base_color = color; };
void set_snake_base_color(Color color);
private:
explicit SnakeGame(NonnullRefPtrVector<Gfx::Bitmap> food_bitmaps);