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
Block.h
- Committer:
- sergun2311
- Date:
- 2017-02-20
- Revision:
- 0:645509d95b8d
- Child:
- 1:b4aa36ae11ac
File content as of revision 0:645509d95b8d:
#ifndef BLOCK_H #define BLOCK_H class Block { public: Block(); ~Block(); int form; int angle; int x; int y; bool Active; void rotateLeft(); void rotateRight(); bool CheckBottom(); }; #endif