| 795 | this->drawBox(CoordinateType::Map, left, top, right, bottom, color, isSolid); |
| 796 | } |
| 797 | void Game::drawBoxMouse(int left, int top, int right, int bottom, Color color, bool isSolid) |
| 798 | { |
| 799 | this->drawBox(CoordinateType::Mouse, left, top, right, bottom, color, isSolid); |
| 800 | } |
| 801 | void Game::drawBoxScreen(int left, int top, int right, int bottom, Color color, bool isSolid) |
| 802 | { |
| 803 | this->drawBox(CoordinateType::Screen, left, top, right, bottom, color, isSolid); |