 
      
    C++
    0
    Вклад в тег
    
      
      
    
  
  
void drawObject(sf::Drawable &out) {
	out = /* Возвращаемое значение */;
}
void test() {
	sf::CircleShape circleShape { /* ... */ };
	
	drawObject(circleShape); // circleShape = drawObject();
	
	// ...
}