Changeset 9090 for code/branches/pCuts/src/modules/tetris
- Timestamp:
- Apr 16, 2012, 10:29:49 PM (13 years ago)
- Location:
- code/branches/pCuts/src/modules/tetris
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pCuts/src/modules/tetris/CMakeLists.txt
r9082 r9090 4 4 TetrisStone.cc 5 5 TetrisBrick.cc 6 TetrisScore.cc 6 7 ) 7 8 -
code/branches/pCuts/src/modules/tetris/Tetris.cc
r9089 r9090 31 31 *BUG e) multiple rows are not cleared in one round 32 32 * 33 * TASK a) give points for winning33 * 34 34 *TASK b) write a hud (show points gained; new brick) 35 35 *TASK c) end the game in a nicer way 36 36 *TASK d) save the highscore 37 37 *TASK e) eye candy 38 *TASK f) increasing speed39 38 */ 40 39 … … 409 408 { 410 409 clearRow(row); 411 this->playerScored(this->player_); 410 this->playerScored(this->player_);// add points 411 //increase the stone's speed 412 this->center_->setStoneSpeed(this->center_->getStoneSpeed()+1.0f); 412 413 } 413 414 } -
code/branches/pCuts/src/modules/tetris/TetrisPrereqs.h
r9082 r9090 69 69 class TetrisStone; 70 70 class TetrisBrick; 71 class TetrisScore; 71 72 } 72 73
Note: See TracChangeset
for help on using the changeset viewer.