Index: common/Message.h
===================================================================
--- common/Message.h	(revision 8f438a5bf1ad41d10d0bbba4c5387a6d5444db2d)
+++ common/Message.h	(revision 88cdae2c529c41e738326d4cd803f241906d1338)
@@ -7,4 +7,5 @@
 #define MSG_TYPE_CHAT         4
 #define MSG_TYPE_PLAYER       5
+#define MSG_TYPE_PLAYER_MOVE  6
 
 typedef struct
Index: common/Player.cpp
===================================================================
--- common/Player.cpp	(revision 8f438a5bf1ad41d10d0bbba4c5387a6d5444db2d)
+++ common/Player.cpp	(revision 88cdae2c529c41e738326d4cd803f241906d1338)
@@ -53,17 +53,4 @@
    ostringstream oss;
 
-   cout << "Player name: " << this->name << endl;
-
-   /*
-   oss.write((char*)&(this->id), sizeof(int));
-   oss << this->name;
-   cout << "first oss str: " << oss.str() << endl;
-   oss.write("\0", 1);
-   cout << "second oss str: " << oss.str() << endl;
-   oss.write((char*)&(this->pos.x), sizeof(int));
-   cout << "third oss str: " << oss.str() << endl;
-   oss.write((char*)&(this->pos.y), sizeof(int));
-   */
-
    oss << this->id;
    oss << this->name;
@@ -79,11 +66,4 @@
    istringstream iss;
    iss.str(buffer);
-
-   /*
-   iss.read((char*)&(this->id), sizeof(int));
-   iss >> this->name;
-   iss.read((char*)&(this->pos.x), sizeof(int));
-   iss.read((char*)&(this->pos.y), sizeof(int));
-   */
 
    iss >> this->id;
