| 920 | this->drawLine(CoordinateType::Map, x1, y1, x2, y2, color); |
| 921 | } |
| 922 | void Game::drawLineMouse(int x1, int y1, int x2, int y2, Color color) |
| 923 | { |
| 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); |