aboutsummaryrefslogtreecommitdiff
path: root/rect.h
diff options
context:
space:
mode:
authorquou <quou@disroot.org>2023-05-02 21:02:04 +1000
committerquou <quou@disroot.org>2023-05-02 21:02:04 +1000
commitc1efdf9b0875f2a39488a86cd838947a24fab9fc (patch)
treeb459d024fa99029758f8d2f8630470fe6060122e /rect.h
Initial commit.
Diffstat (limited to 'rect.h')
-rw-r--r--rect.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/rect.h b/rect.h
new file mode 100644
index 0000000..6f45705
--- /dev/null
+++ b/rect.h
@@ -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