| 28 | namespace core { |
| 29 | |
| 30 | Rectangle::Rectangle (int x, int y, int width, int height) |
| 31 | { |
| 32 | this->x = x; |
| 33 | this->y = y; |
| 34 | this->width = width; |
| 35 | this->height = height; |
| 36 | } |
| 37 | |
| 38 | /* |
| 39 | * Draw rectangle in view relative to point (x,y). |
nothing calls this directly
no outgoing calls
no test coverage detected