| 845 | this->drawCircle(CoordinateType::Map, x, y, radius, color, isSolid); |
| 846 | } |
| 847 | void Game::drawCircleMouse(int x, int y, int radius, Color color, bool isSolid) |
| 848 | { |
| 849 | this->drawCircle(CoordinateType::Mouse, x, y, radius, color, isSolid); |
| 850 | } |
| 851 | void Game::drawCircleScreen(int x, int y, int radius, Color color, bool isSolid) |
| 852 | { |
| 853 | this->drawCircle(CoordinateType::Screen, x, y, radius, color, isSolid); |
nothing calls this directly
no test coverage detected