David Smart / Mbed OS PUB_RA8875_Tetris

Dependencies:   RA8875

Fork of Tetris by Sergejs Popovs

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