bug fixes, added background image
[winnie] / src / geom.h
index 8b596ce..203914a 100644 (file)
@@ -2,8 +2,11 @@
 #define GEOM_H_
 
 struct Rect {
-       mutable int x, y;
+       int x, y;
        int width, height;
+
+       Rect();
+       Rect(int x, int y, int w, int h);
 };
 
 Rect rect_union(const Rect &a, const Rect &b);