mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
20 lines
325 B
C
20 lines
325 B
C
#ifndef __ruamoko_gui_Size_h
|
|
#define __ruamoko_gui_Size_h
|
|
|
|
/** \addtogroup gui */
|
|
//@{
|
|
|
|
struct Size {
|
|
int width;
|
|
int height;
|
|
};
|
|
|
|
typedef struct Size Size;
|
|
|
|
@extern Size makeSize (int width, int height);
|
|
@extern Size addSize (Size a, Size b);
|
|
@extern Size subtractSize (Size a, Size b);
|
|
|
|
//@}
|
|
|
|
#endif //__ruamoko_gui_Size_h
|