Sound update

Dependencies:   4DGL-uLCD-SE Physac-MBED PinDetect SDFileSystem mbed-rtos mbed

tetris/Pieces.h

Committer:
jaybalar
Date:
21 months ago
Revision:
31:b08cc3c126d6
Parent:
19:6d9bee043ede

File content as of revision 31:b08cc3c126d6:

#ifndef _PIECES_
#define _PIECES_

// Pieces Header to Support Game Pieces

class Pieces
{
    public:
    
    int GetBlockType(int pPiece, int pRotation, int pX, int pY);
    int GetXInitialPosition(int pPiece, int pRotation);
    int GetYInitialPosition(int pPiece, int pRotation);
};

#endif  // _PIECES_