diff options
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Games/FlappyBug/Game.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Games/FlappyBug/Game.h b/Userland/Games/FlappyBug/Game.h index f3055f475e..b6628742c9 100644 --- a/Userland/Games/FlappyBug/Game.h +++ b/Userland/Games/FlappyBug/Game.h @@ -41,6 +41,7 @@ private: bool ready_to_start() const; void player_input(); +public: struct Bug { const float x { 50 }; const float radius { 16 }; @@ -141,6 +142,7 @@ private: } }; +private: Bug m_bug; Obstacle m_obstacle; Cloud m_cloud; |