![cpp](https://habrastorage.org/r/w120/webt/5a/80/ee/5a80eee835721314512847.png)
C++
0
Вклад в тег
void drawObject(sf::Drawable &out) {
out = /* Возвращаемое значение */;
}
void test() {
sf::CircleShape circleShape { /* ... */ };
drawObject(circleShape); // circleShape = drawObject();
// ...
}