mirror of
https://github.com/Relintai/sfw.git
synced 2024-12-20 21:06:49 +01:00
13 lines
509 B
C++
13 lines
509 B
C++
/*************************************************************************/
|
|
/* rect2i.cpp */
|
|
/* From https://github.com/Relintai/pandemonium_engine (MIT) */
|
|
/*************************************************************************/
|
|
|
|
//--STRIP
|
|
#include "core/transform_2d.h" // Includes rect2.h but Rect2 needs Transform2D
|
|
//--STRIP
|
|
|
|
Rect2i::operator String() const {
|
|
return "[P: " + position.operator String() + ", S: " + size + "]";
|
|
}
|