33 #include "CEGUIBase.h"
47 Size(
float width,
float height) : d_width(width), d_height(height) {}
48 Size(
const Size& v): d_width(v.d_width), d_height(v.d_height) {}
53 float d_width, d_height;
55 Size operator*(
float c)
const
57 return Size(d_width * c, d_height * c);
62 return Size(d_width + s.d_width, d_height + s.d_height);
69 #endif // end of guard _CEGUISize_h_