mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 13:41:32 +00:00
b0879ba255
Group and the menu plist parser are currently broken.
15 lines
306 B
C
15 lines
306 B
C
#ifndef __ruamoko_gui_Size_h
|
|
#define __ruamoko_gui_Size_h
|
|
|
|
struct Size {
|
|
integer width;
|
|
integer height;
|
|
};
|
|
|
|
typedef struct Size Size;
|
|
|
|
@extern Size makeSize (integer width, integer height);
|
|
@extern Size addSize (Size a, Size b);
|
|
@extern Size subtractSize (Size a, Size b);
|
|
|
|
#endif //__ruamoko_gui_Size_h
|