*work in progress*
[winnie] / src / geom.h
diff --git a/src/geom.h b/src/geom.h
new file mode 100644 (file)
index 0000000..c294b54
--- /dev/null
@@ -0,0 +1,15 @@
+#ifndef GEOM_H_
+#define GEOM_H_
+
+struct Rect {
+       int x, y;
+       int width, height;
+};
+
+// TODO probably need to implement something like this:
+/*
+Rect rect_union(const Rect &a, const Rect &b);
+Rect rect_intersection(const Rect &a, const Rect &b);
+*/
+
+#endif // GEOM_H_