[qwaq] Add pos Point alias

This commit is contained in:
Bill Currie 2020-03-19 13:50:35 +09:00
parent 8c3cf83f02
commit 03f87d6f27

View file

@ -36,10 +36,14 @@ enum {
union { union {
Rect rect; Rect rect;
struct { struct {
int xpos; int xpos;
int ypos; int ypos;
int xlen; int xlen;
int ylen; int ylen;
};
struct {
Point pos;
Extent size;
}; };
}; };
Rect absRect; Rect absRect;