mirror of
https://github.com/Relintai/sfw.git
synced 2024-11-08 07:52:09 +01:00
14 lines
481 B
C++
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 + "]";
|
|
}
|