| 874 | this->drawEllipse(CoordinateType::Mouse, x, y, xrad, yrad, color, isSolid); |
| 875 | } |
| 876 | void Game::drawEllipseScreen(int x, int y, int xrad, int yrad, Color color, bool isSolid) |
| 877 | { |
| 878 | this->drawEllipse(CoordinateType::Screen, x, y, xrad, yrad, color, isSolid); |
| 879 | } |
| 880 | void Game::drawEllipseMap(Position p, int xrad, int yrad, Color color, bool isSolid) |
| 881 | { |
| 882 | this->drawEllipseMap(p.x, p.y, xrad, yrad, color, isSolid); |
nothing calls this directly
no test coverage detected