| 630 | } |
| 631 | |
| 632 | void DrawRectangle(int posX, int posY, int width, int height, ::Color color = {255, 255, 255, 255}) { |
| 633 | ::ImageDrawRectangle(this, posX, posY, width, height, color); |
| 634 | } |
| 635 | |
| 636 | void DrawRectangle(Vector2 position, Vector2 size, ::Color color = {255, 255, 255, 255}) { |
| 637 | ::ImageDrawRectangleV(this, position, size, color); |