| 21 | } |
| 22 | |
| 23 | void ComplexTransformable::setPosition(float x, float y) |
| 24 | { |
| 25 | m_position.x = x; |
| 26 | m_position.y = y; |
| 27 | m_transformNeedUpdate = true; |
| 28 | m_inverseTransformNeedUpdate = true; |
| 29 | } |
| 30 | |
| 31 | void ComplexTransformable::setPosition(const sf::Vector2f& position) |
| 32 | { |
no outgoing calls
no test coverage detected