* Draw a color-filled rectangle */
| 41 | * Draw a color-filled rectangle |
| 42 | */ |
| 43 | static void Draw(int posX, int posY, int width, int height, ::Color color) { |
| 44 | ::DrawRectangle(posX, posY, width, height, color); |
| 45 | } |
| 46 | |
| 47 | static void Draw(::Vector2 position, ::Vector2 size, ::Color color) { |
| 48 | ::DrawRectangleV(position, size, color); |
nothing calls this directly
no test coverage detected