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.
Dependencies: mbed APDS_9960 mbed-rtos
include/cCollision.h
- Committer:
- clementdoreau
- Date:
- 2016-04-11
- Revision:
- 15:3782eb2bc312
- Child:
- 16:5c3d61584f51
File content as of revision 15:3782eb2bc312:
#ifndef CCOLLISION_H #define CCOLLISION_H #include "cJeu.h" class cCollision{ private: // ATTRIBUTS public: // CONSTRUCTEURS cCollision(); // DESTRUCTEURS ~cCollision(); // METHODES bool bordDroit(const cForme &, const cMatrice &); bool bordGauche(const cForme &, const cMatrice &); bool bordBas(const cForme &, const cMatrice &); bool pieceBas(const cForme &, const cMatrice &); bool pieceGauche(const cForme &, const cMatrice &); bool pieceDroite(const cForme &, const cMatrice &); }; #endif