TouchObject::TouchObject() { x = 0; y = 0; width = 0; height = 0; rotation = 0; scale = 0; } TouchObject::TouchObject(float x, float y, float width, float height, float rotation, float scale) : x(x), y(y), width(width), height(height), rotation(rotation), scale(scale) {}