Fixed misaligned bracket

This commit is contained in:
2024-02-26 21:38:54 -05:00
parent edfd70c3cc
commit ded7c68ae7

View File

@@ -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;
}
}