Added constructor to initialize all members.

This commit is contained in:
Mark de Wever 2008-06-22 10:33:28 +00:00
parent 59083a5b4d
commit c22a395b28

View File

@ -213,6 +213,15 @@ public:
private:
struct user_info
{
user_info() :
name(),
game_id(),
location(),
relation(ME),
state(LOBBY)
{
}
std::string name;
std::string game_id;
std::string location;