Index: client/Client/main.cpp
===================================================================
--- client/Client/main.cpp	(revision 60776f2940bf52bf8f8f0293de78b27fdbcf11ac)
+++ client/Client/main.cpp	(revision 3a79253784dcf52104a4d43b21218f28f83fc81a)
@@ -19,4 +19,6 @@
 #include <iostream>
 
+#include <map>
+
 #include <allegro5/allegro.h>
 #include <allegro5/allegro_font.h>
@@ -70,4 +72,6 @@
 
 bool doexit;
+
+map<unsigned int, Player> mapPlayers;
 
 Window* wndLogin;
@@ -441,5 +445,7 @@
                Player p("", "");
                p.deserialize(msg.buffer);
-
+               mapPlayers[p.id] = p;
+
+               cout << "p.id: " << p.id << endl;
                cout << "p.name: " << p.name << endl;
                cout << "p.pos.x: " << p.pos.x << endl;
