From ded7c68ae76109fa59dba02f939144b76cf53514 Mon Sep 17 00:00:00 2001 From: Aadhavan Srinivasan Date: Mon, 26 Feb 2024 21:38:54 -0500 Subject: [PATCH] Fixed misaligned bracket --- ball.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ball.cpp b/ball.cpp index bf1271a..3bef0bc 100644 --- a/ball.cpp +++ b/ball.cpp @@ -30,5 +30,5 @@ void Ball::updatePosition() { void Ball::draw() { DrawCircle(this->pos.x, this->pos.y, this->radius, this->color); // This is a raylib function, not a raylib-cpp function return; - } +}