Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
- // MAIN SKILLS
- //---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
- int strength;
- int agility;
- int wisdom;
- int luck;
- int intelligence;
- int charisma;
- //-----------------
- std::string strengthLevel = "Strength: " + std::to_string (strength);
- std::string agilityLevel = "Agility: " + std::to_string (agility);
- std::string wisdomLevel = "Wisdom: " + std::to_string (wisdom);
- std::string luckLevel = "Luck:" + std::to_string (luck);
- std::string intelligenceLevel = "Intelligence: " + std::to_string (intelligence);
- std::string charismaLevel = "Charisma: " + std::to_string (charisma);
- //---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
- // MAIN SKILLS
- //---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement