Hi, was just going through my uni notes and found a question I can't find the answer to.
What is the difference between the following?
AndCode:TextBox (const string &text, const Vector2f &position, bool visible) : _text(text), _position(position), _visible(visible) {}
does it actually make a difference?Code:TextBox (const string &text, const Vector2f &position, bool visible) : _position(position), _text(text), _visible(visible) {}




Reply With Quote