summaryrefslogtreecommitdiff
path: root/src/game/GameController.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/GameController.cpp')
-rw-r--r--src/game/GameController.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/game/GameController.cpp b/src/game/GameController.cpp
index b79da06..5358c4b 100644
--- a/src/game/GameController.cpp
+++ b/src/game/GameController.cpp
@@ -6,6 +6,7 @@
#include "GameModel.h"
#include "search/SearchController.h"
#include "render/RenderController.h"
+#include "login/LoginController.h"
#include "interface/Point.h"
using namespace std;
@@ -126,7 +127,8 @@ void GameController::OpenSearch()
void GameController::OpenLogin()
{
- //TODO: Implement
+ loginWindow = new LoginController();
+ ui::Engine::Ref().ShowWindow(loginWindow->GetView());
}
void GameController::OpenTags()