SFML community forums
Help => General => Topic started by: Charlie on June 15, 2011, 11:17:15 pm
-
I'm not the best with C++ and was wondering how I can pass a sprite object as a parameter in a function.. I have an example below.
Note the example serves no purpose, I'm just wondering how this is executed correctly..
This is the function:
void SetX(sf::Sprite object)
{
object.SetX(100);
}
This is the call to the function:
SetX(Sprite3);
-
Use references, if you don't want to copy the parameter.
sf::Sprite& object
-
Thanks, that's what I needed. :)