SDLPP: add option to specify render object alignment

This commit is contained in:
2021-04-27 15:54:30 +02:00
parent fc1d06a2b8
commit e5d0610f6d
11 changed files with 66 additions and 83 deletions
+3
View File
@@ -38,6 +38,9 @@ public:
*this = *this - other;
return *this;
}
bool operator==( const Vec2D &other ) {
return other._x == _x && other._y == _y;
}
private:
T _x = 0.0;