Changeset 11873
- Timestamp:
- Apr 17, 2018, 12:07:23 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
r11872 r11873 47 47 point = 0; 48 48 level = 1; 49 Vector3 startposplayer = Vector3(0,10,245);50 49 51 50 } … … 110 109 int i = 0; 111 110 for(PacmanGhost* nextghost : ObjectList<PacmanGhost>()){ 112 nextghost .resetGhost();111 nextghost->resetGhost(); 113 112 i++; 114 113 } 115 player .setPosition(startposplayer);114 player->setPosition(startposplayer); 116 115 } 117 116 -
code/branches/3DPacman_FS18/src/modules/Pacman/Pacman.h
r11872 r11873 97 97 Vector3 currentPosition; 98 98 bool bcolli = false; 99 Vector3 startposplayer = Vector3(0,10,245); 99 100 100 101
Note: See TracChangeset
for help on using the changeset viewer.