sfw/sfwl/core/rect2i.cpp

14 lines
481 B
C++
Raw Normal View History

2024-01-20 11:14:28 +01:00
/*************************************************************************/
/* rect2i.cpp */
/* From https://github.com/Relintai/pandemonium_engine (MIT) */
/*************************************************************************/
//--STRIP
2024-01-20 12:47:33 +01:00
#include "core/rect2i.h"
#include "core/ustring.h"
2024-01-20 11:14:28 +01:00
//--STRIP
Rect2i::operator String() const {
return "[P: " + position.operator String() + ", S: " + size + "]";
}