Advertisement
Guest User

Untitled

a guest
Nov 30th, 2015
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.63 KB | None | 0 0
  1. //---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  2. //                                      MAIN SKILLS
  3. //---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  4. int strength;
  5. int agility;
  6. int wisdom;
  7. int luck;
  8. int intelligence;
  9. int charisma;
  10. //-----------------
  11. std::string strengthLevel = "Strength: " + std::to_string (strength);
  12. std::string agilityLevel = "Agility: " + std::to_string (agility);
  13. std::string wisdomLevel = "Wisdom: " + std::to_string (wisdom);
  14. std::string luckLevel = "Luck:" + std::to_string (luck);
  15. std::string intelligenceLevel = "Intelligence: " + std::to_string (intelligence);
  16. std::string charismaLevel = "Charisma: " + std::to_string (charisma);
  17. //---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  18. //                                      MAIN SKILLS
  19. //---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement