mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
b0879ba255
Group and the menu plist parser are currently broken.
19 lines
312 B
R
19 lines
312 B
R
#include "gui/Size.h"
|
|
|
|
Size makeSize (integer width, integer height)
|
|
{
|
|
Size s = {width, height};
|
|
return s;
|
|
}
|
|
|
|
Size addSize (Size a, Size b)
|
|
{
|
|
Size c = {a.width + b.width, a.height + b.height};
|
|
return c;
|
|
}
|
|
|
|
Size subtractSize (Size a, Size b)
|
|
{
|
|
Size c = {a.width - b.width, a.height - b.height};
|
|
return c;
|
|
}
|