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/cJeu.h
- Committer:
- Willheisen
- Date:
- 2016-04-10
- Revision:
- 12:7afdbc7465ac
- Parent:
- 10:9ef3f520ff6c
- Child:
- 13:336220ac9a8b
File content as of revision 12:7afdbc7465ac:
#ifndef JEU_H #define JEU_H #include "cMatrice.h" #include "cCarre.h" #include "cZed.h" #include "cEl.h" #include "cTe.h" #include "cLigne.h" class cJeu { private: cMatrice *mat; public: // CONSTRUCTEURS cJeu(); // DESTRUCTEUR ~cJeu(); // SETTERS void set_matrice(cMatrice &mat); // GETTERS cMatrice get_matrice(); // METHODES void initialiser(); cForme* nouvellePiece(); void disparitionLigne(); unsigned char ligneComplete(); }; #endif //JEU_H