*in progress*
[winnie] / src / geom.h
index c294b54..8b596ce 100644 (file)
@@ -2,14 +2,11 @@
 #define GEOM_H_
 
 struct Rect {
-       int x, y;
+       mutable 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_