diff options
Diffstat (limited to 'rect.h')
-rw-r--r-- | rect.h | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -0,0 +1,10 @@ +#ifndef rect_h +#define rect_h + +typedef struct { + int x, y, w, h; +} Rectangle; + +Rectangle make_rect(int x, int y, int w, int h); + +#endif |