created input, graphics and game namespaces
[physics.git] / src / Entities / Ball.cpp
index 5bee89a..f33d426 100644 (file)
@@ -21,7 +21,7 @@ Ball::~Ball()
 
 void Ball::draw() const
 {
-    glDrawCircle(radius, position, color);
+    graphics::drawCircle(radius, position, color);
 }
 
 float Ball::getRadius() const