--------------------------------------------------- DRAW BOX ---------------------------------------------
| 787 | } |
| 788 | //--------------------------------------------------- DRAW BOX --------------------------------------------- |
| 789 | void GameImpl::drawBox(CoordinateType::Enum ctype, int left, int top, int right, int bottom, Color color, bool isSolid) |
| 790 | { |
| 791 | if ( !data->hasGUI ) return; |
| 792 | addShape(BWAPIC::Shape(BWAPIC::ShapeType::Box,ctype,left,top,right,bottom,0,0,color,isSolid)); |
| 793 | } |
| 794 | //------------------------------------------------ DRAW TRIANGLE ------------------------------------------- |
| 795 | void GameImpl::drawTriangle(CoordinateType::Enum ctype, int ax, int ay, int bx, int by, int cx, int cy, Color color, bool isSolid) |
| 796 | { |
no test coverage detected