Guest User

Untitled

a guest
May 25th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. void CTextRenderer::Draw(sf::RenderWindow* window){
  2. std::map<std::string, sf::Text*>::iterator it;
  3. for(it=members.begin(); it != members.end(); it++){
  4. window->Draw(*it->second);
  5. }
  6. }
Add Comment
Please, Sign In to add comment