Changeset 11872
- Timestamp:
- Apr 17, 2018, 12:04:43 AM (7 years ago)
- Location:
- code/branches/3DPacman_FS18/src/modules/Pacman
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/3DPacman_FS18/src/modules/Pacman/Pacman.cc
r11871 r11872 149 149 void Pacman::playerPreSpawn(PlayerInfo* player) 150 150 { 151 PlayerInfo* playerInfo_;152 this->playerInfo_ = player;151 //PlayerInfo* playerInfo_; 152 //this->playerInfo_ = player; 153 153 if(lives <= 0) 154 154 { … … 163 163 { 164 164 int score = this->getPoints(); 165 Highscore::getInstance().storeScore("3DPacman", score, this->playerInfo_);165 //Highscore::getInstance().storeScore("3DPacman", score, this->playerInfo_); 166 166 } 167 167 GSLevel::startMainMenu(); -
code/branches/3DPacman_FS18/src/modules/Pacman/Pacman.h
r11871 r11872 40 40 #include "PacmanPointSphere.h" 41 41 #include "Highscore.h" 42 #include "PlayerInfo.h"42 //#include "PlayerInfo.h" 43 43 44 44
Note: See TracChangeset
for help on using the changeset viewer.