Tetris game on mikroTFT touchscreen and LPC1768

Dependencies:   Tetris

Dependents:   Tetris

playGround.h

Committer:
sergun2311
Date:
2017-02-25
Revision:
1:b4aa36ae11ac
Parent:
0:645509d95b8d
Child:
2:6b6986c3d2bd

File content as of revision 1:b4aa36ae11ac:

#include "mbed.h"
#include "SeeedStudioTFTv2.h"
#include "Block.h"

void drawMap();
void drawMapV2();
void setColor( int y, int x, int color );
void TFTInit();
void drawBlock(Block NewBlock);
void drawFrame();
void clrBlock(Block NewBlock);
void saveToField(Block NewBlock);
int getGesture();
bool TouchStatus();
Block doGest(Block NewBlock);
void gameOver(int score);