BastatDoreau / Mbed 2 deprecated MoveYourTetris

Dependencies:   mbed APDS_9960 mbed-rtos

Dependents:   MoveYourTetris_OK

include/cCarre.h

Committer:
clementdoreau
Date:
2016-04-21
Revision:
31:7313366789f2
Parent:
30:c647da947bd9

File content as of revision 31:7313366789f2:

#ifndef CCARRE_H
#define CCARRE_H

#include "cForme.h"

// Classe Carré, fille de Forme, représentant un carré dans la matrice

class cCarre: public cForme {

private:

public:
	// CONSTRUCTEURS
	cCarre();
	cCarre( int y,  int x);
	// METHODES
	virtual void rotationHoraire();

};

#endif