Index: common/Game.cpp
===================================================================
--- common/Game.cpp	(revision 233e7365b23a92cee80637dade24f4b743f8fbb2)
+++ common/Game.cpp	(revision ab8fd4016449008d0189af819837030c163e458a)
@@ -21,4 +21,8 @@
 Game::~Game() {
    delete this->worldMap;
+}
+
+string Game::getName() {
+   return this->name;
 }
 
Index: common/Game.h
===================================================================
--- common/Game.h	(revision 233e7365b23a92cee80637dade24f4b743f8fbb2)
+++ common/Game.h	(revision ab8fd4016449008d0189af819837030c163e458a)
@@ -34,4 +34,5 @@
    ~Game();
 
+   string getName();
    int getNumPlayers();
    map<unsigned int, Player*>& getPlayers();
