aboutsummaryrefslogtreecommitdiff
path: root/rect.h
blob: 6f4570548ccf9b4dfaa1d695d5b2b74eb20e3809 (plain) (blame)
1
2
3
4
5
6
7
8
9
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