| 924 | this->drawLine(CoordinateType::Mouse, x1, y1, x2, y2, color); |
| 925 | } |
| 926 | void Game::drawLineScreen(int x1, int y1, int x2, int y2, Color color) |
| 927 | { |
| 928 | this->drawLine(CoordinateType::Screen, x1, y1, x2, y2, color); |
| 929 | } |
| 930 | void Game::drawLineMap(Position a, Position b, Color color) |
| 931 | { |
| 932 | this->drawLineMap(a.x, a.y, b.x, b.y, color); |