summaryrefslogtreecommitdiff
path: root/src/client/UserInfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/UserInfo.h')
-rw-r--r--src/client/UserInfo.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/client/UserInfo.h b/src/client/UserInfo.h
index edd6659..2df0015 100644
--- a/src/client/UserInfo.h
+++ b/src/client/UserInfo.h
@@ -10,12 +10,15 @@ public:
int Age;
std::string Username;
std::string Biography;
- UserInfo(int id, int age, std::string username, std::string biography):
+ std::string Location;
+ UserInfo(int id, int age, std::string username, std::string biography, std::string location):
ID(id),
Age(age),
Username(username),
- Biography(biography)
+ Biography(biography),
+ Location(location)
{ }
+ UserInfo() {}
};