sfw/sfwl/core/rect2i.cpp

14 lines
481 B
C++

/*************************************************************************/
/* rect2i.cpp */
/* From https://github.com/Relintai/pandemonium_engine (MIT) */
/*************************************************************************/
//--STRIP
#include "core/rect2i.h"
#include "core/ustring.h"
//--STRIP
Rect2i::operator String() const {
return "[P: " + position.operator String() + ", S: " + size + "]";
}