Guest User

Untitled

a guest
Nov 23rd, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. #include "Creation.h"
  2.  
  3. void Creation::createCharacter(){
  4. cout<<"Please enter a name:"<<endl;
  5. string temp;
  6. cin>>temp;
  7. character->Instance()->rename(temp);
  8. cout<<"Creating character with base attributes: "<<endl;
  9. character->Instance()->showAttributes();
  10. cout<<"Character successfully created!"<<endl;
  11. cin.get();
  12. }
Add Comment
Please, Sign In to add comment