------------------------------------------ DRAW ELLIPSE -----------------------------------------------
| 866 | } |
| 867 | //------------------------------------------ DRAW ELLIPSE ----------------------------------------------- |
| 868 | void Game::drawEllipseMap(int x, int y, int xrad, int yrad, Color color, bool isSolid) |
| 869 | { |
| 870 | this->drawEllipse(CoordinateType::Map, x, y, xrad, yrad, color, isSolid); |
| 871 | } |
| 872 | void Game::drawEllipseMouse(int x, int y, int xrad, int yrad, Color color, bool isSolid) |
| 873 | { |
| 874 | this->drawEllipse(CoordinateType::Mouse, x, y, xrad, yrad, color, isSolid); |
nothing calls this directly
no test coverage detected