Index: client/Client/main.cpp
===================================================================
--- client/Client/main.cpp	(revision 6f64166995265628c9a43f45d5947ef9a155d423)
+++ client/Client/main.cpp	(revision 64a1f4efc694f9ec1fb33eaf1e6b29cf345d044a)
@@ -825,4 +825,22 @@
          switch(msg.type)
          {
+            case MSG_TYPE_SCORE:
+            {
+               cout << "Received SCORE message!" << endl;
+
+               int blueScore;
+               memcpy(&blueScore, msg.buffer, 4);
+               cout << "blue score: " << blueScore << endl;
+               game->setBlueScore(blueScore);
+
+               int redScore;
+               memcpy(&redScore, msg.buffer+4, 4);
+               cout << "red score: " << redScore << endl;
+               game->setRedScore(redScore);
+
+               cout << "Processed SCORE message!" << endl;
+ 
+               break;
+            }
             case MSG_TYPE_FINISH_GAME:
             {
