------------------------------------------ DRAW LINE -----------------------------------------------
| 916 | } |
| 917 | //------------------------------------------ DRAW LINE ----------------------------------------------- |
| 918 | void Game::drawLineMap(int x1, int y1, int x2, int y2, Color color) |
| 919 | { |
| 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); |