mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
[qwaq] Add pos Point alias
This commit is contained in:
parent
8c3cf83f02
commit
03f87d6f27
1 changed files with 8 additions and 4 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue