(float borderThickness, float arrowThickness, float arrowSize, FSkinColor skinColor, float x1, float y1, float x2, float y2)
| 381 | } |
| 382 | |
| 383 | public void drawArrow(float borderThickness, float arrowThickness, float arrowSize, FSkinColor skinColor, float x1, float y1, float x2, float y2) { |
| 384 | drawArrow(borderThickness, arrowThickness, arrowSize, skinColor.getColor(), x1, y1, x2, y2); |
| 385 | } |
| 386 | |
| 387 | public void drawArrow(float borderThickness, float arrowThickness, float arrowSize, Color color, float x1, float y1, float x2, float y2) { |
| 388 | batch.end(); //must pause batch while rendering shapes |
nothing calls this directly
no test coverage detected