mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 10:37:45 +00:00
Everywhere: Run clang-format
This commit is contained in:
parent
0376c127f6
commit
086969277e
1665 changed files with 8479 additions and 8479 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue