Camera tweaked, flawless now

This commit is contained in:
Riyyi
2015-03-20 18:17:27 +01:00
parent f575d6b487
commit 3b86ba2556
3 changed files with 73 additions and 68 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ void MainGame::Initialize(sf::RenderWindow* window) {
this->camera->SetNewView(window);
// Load Player
this->player = new Player(this->entityManager, this->camera, 100, 100);
this->player = new Player(this->entityManager, this->map, this->camera, 100, 100);
this->entityManager->AddEntity("Player", this->player);
}