mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2025-01-19 01:07:17 +01:00
11 lines
269 B
C++
11 lines
269 B
C++
|
|
/* rect2.cpp */
|
|
|
|
|
|
#include "core/math/transform_2d.h" // Includes rect2.h but Rect2 needs Transform2D
|
|
|
|
Rect2i::operator String() const {
|
|
return "[P: " + position.operator String() + ", S: " + size + "]";
|
|
}
|
|
|