------------------------------------------ DRAW BOX -----------------------------------------------
| 791 | } |
| 792 | //------------------------------------------ DRAW BOX ----------------------------------------------- |
| 793 | void Game::drawBoxMap(int left, int top, int right, int bottom, Color color, bool isSolid) |
| 794 | { |
| 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); |