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-06
- Revision:
- 8:92d0c4961a16
- Child:
- 9:6f3d8b714a59
File content as of revision 8:92d0c4961a16:
#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 _matrice; public: // CONSTRUCTEURS cJeu(); // METHODES void initialiser(); void nouvellePiece(); void disparitionLigne(); // MUTATEUR void set_matrice(cMatrice &mat); // ACCESSEUR cMatrice get_matrice(); }; #endif //JEU_H