mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 10:27:36 +00:00
FlappyBug: Support mouse clicks for flapping
This change allows to play the game using the mouse.
This commit is contained in:
parent
a099a77e82
commit
913b1fad25
2 changed files with 18 additions and 6 deletions
|
@ -32,12 +32,14 @@ private:
|
|||
|
||||
virtual void paint_event(GUI::PaintEvent&) override;
|
||||
virtual void keydown_event(GUI::KeyEvent&) override;
|
||||
virtual void mousedown_event(GUI::MouseEvent&) override;
|
||||
virtual void timer_event(Core::TimerEvent&) override;
|
||||
|
||||
void tick();
|
||||
void reset();
|
||||
void game_over();
|
||||
bool ready_to_start() const;
|
||||
void player_input();
|
||||
|
||||
struct Bug {
|
||||
const float x { 50 };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue