------------------------------------------------ DRAW TRIANGLE -------------------------------------------
| 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 | { |
| 797 | if ( !data->hasGUI ) return; |
| 798 | addShape(BWAPIC::Shape(BWAPIC::ShapeType::Triangle,ctype,ax,ay,bx,by,cx,cy,color,isSolid)); |
| 799 | } |
| 800 | //------------------------------------------------- DRAW CIRCLE -------------------------------------------- |
| 801 | void GameImpl::drawCircle(CoordinateType::Enum ctype, int x, int y, int radius, Color color, bool isSolid) |
| 802 | { |
no test coverage detected