X-Git-Url: http://git.mutantstargoat.com?a=blobdiff_plain;f=src%2Fgeom.h;h=203914a13f47e1cab3d2f3d68bd4021723ea40fc;hb=32869d8ffb64be82541f48166c5e73a6c4336135;hp=8b596ceec142eed73b047f4343d50fb709e9fc91;hpb=d114b136897ca569d819da5f9b75bd08f9cbe2c0;p=winnie diff --git a/src/geom.h b/src/geom.h index 8b596ce..203914a 100644 --- a/src/geom.h +++ b/src/geom.h @@ -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);