quakeforge/ruamoko/include/gui/Size.h

21 lines
327 B
C
Raw Normal View History

2004-02-04 02:35:57 +00:00
#ifndef __ruamoko_gui_Size_h
#define __ruamoko_gui_Size_h
/** \addtogroup gui */
2020-02-11 06:20:49 +00:00
///@{
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);
2020-02-11 06:20:49 +00:00
///@}
2004-02-04 02:35:57 +00:00
#endif //__ruamoko_gui_Size_h