BastatDoreau / Mbed 2 deprecated MoveYourTetris

Dependencies:   mbed APDS_9960 mbed-rtos

Dependents:   MoveYourTetris_OK

include/cCarre.h

Committer:
clementdoreau
Date:
2016-04-21
Revision:
30:c647da947bd9
Parent:
29:95469b25e187
Child:
31:7313366789f2

File content as of revision 30:c647da947bd9:

#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 x,  int y);
	// METHODES
	virtual void rotationHoraire();

};

#endif