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

Everywhere: Run clang-format

This commit is contained in:
Idan Horowitz 2022-04-01 20:58:27 +03:00 committed by Linus Groh
parent 0376c127f6
commit 086969277e
1665 changed files with 8479 additions and 8479 deletions

View file

@ -29,7 +29,7 @@ private:
int row { 0 };
int column { 0 };
bool operator==(const Coordinate& other) const
bool operator==(Coordinate const& other) const
{
return row == other.row && column == other.column;
}
@ -42,10 +42,10 @@ private:
void game_over();
void spawn_fruit();
bool is_available(const Coordinate&);
bool is_available(Coordinate const&);
void queue_velocity(int v, int h);
const Velocity& last_velocity() const;
Gfx::IntRect cell_rect(const Coordinate&) const;
Velocity const& last_velocity() const;
Gfx::IntRect cell_rect(Coordinate const&) const;
Gfx::IntRect score_rect() const;
Gfx::IntRect high_score_rect() const;