Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of Tetris by
Tetris/playGround.h@6:d2aa47c92687, 2017-03-18 (annotated)
- Committer:
- WiredHome
- Date:
- Sat Mar 18 23:53:12 2017 +0000
- Revision:
- 6:d2aa47c92687
- Parent:
- 5:5ce8976cd303
- Child:
- 7:0e426e81c566
Minor refactoring primarily to the include relationship.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
WiredHome | 5:5ce8976cd303 | 1 | #include "mbed.h" |
WiredHome | 5:5ce8976cd303 | 2 | #include "RA8875.h" |
WiredHome | 5:5ce8976cd303 | 3 | #include "Block.h" |
WiredHome | 5:5ce8976cd303 | 4 | #include "Define.h" |
WiredHome | 6:d2aa47c92687 | 5 | #include "Field.h" |
WiredHome | 5:5ce8976cd303 | 6 | |
WiredHome | 5:5ce8976cd303 | 7 | void TFTInit(); |
WiredHome | 5:5ce8976cd303 | 8 | void ReInitGame(); |
WiredHome | 5:5ce8976cd303 | 9 | bool ReplayTouched(); |
WiredHome | 5:5ce8976cd303 | 10 | void drawMap(); |
WiredHome | 5:5ce8976cd303 | 11 | void drawMapV2(); |
WiredHome | 5:5ce8976cd303 | 12 | void drawBlock(Block NewBlock); |
WiredHome | 5:5ce8976cd303 | 13 | void drawFrame(); |
WiredHome | 5:5ce8976cd303 | 14 | void clrBlock(Block NewBlock); |
WiredHome | 5:5ce8976cd303 | 15 | int getGesture(); |
WiredHome | 5:5ce8976cd303 | 16 | bool TouchStatus(); |
WiredHome | 5:5ce8976cd303 | 17 | Block doGest(Block NewBlock); |
WiredHome | 5:5ce8976cd303 | 18 | void gameOver(int score); |
WiredHome | 5:5ce8976cd303 | 19 | void drawScore(int score); |
WiredHome | 5:5ce8976cd303 | 20 | void drawNextBlock(Block NewBlock); |
WiredHome | 5:5ce8976cd303 | 21 | void clrNextBlock(Block NewBlock); |