Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef CHARACTER_H
- #define CHARACTER_H
- #include <iostream>
- #include <vector>
- class Character
- {
- public:
- void CreatePlayer(std::string pname, std::string ppass);
- void LoadPlayer (std::string pname, std::string ppass);
- bool CheckPlayer (std::string pname);
- private:
- std::vector<std::string> name;
- std::string pass;
- protected:
- };
- #endif // CHARACTER_H
Add Comment
Please, Sign In to add comment