diff options
Diffstat (limited to 'src/client/UserInfo.h')
| -rw-r--r-- | src/client/UserInfo.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/client/UserInfo.h b/src/client/UserInfo.h new file mode 100644 index 0000000..edd6659 --- /dev/null +++ b/src/client/UserInfo.h @@ -0,0 +1,22 @@ +#ifndef USERINFO_H_ +#define USERINFO_H_ + +#include <string> + +class UserInfo +{ +public: + int ID; + int Age; + std::string Username; + std::string Biography; + UserInfo(int id, int age, std::string username, std::string biography): + ID(id), + Age(age), + Username(username), + Biography(biography) + { } +}; + + +#endif /* USER_H_ */ |
