Polytech Tours - Projet C++ embarqué sur cible mbed
main.cpp@0:21e183c9ef81, 2016-04-24 (annotated)
- Committer:
- LecomteDelys
- Date:
- Sun Apr 24 15:43:51 2016 +0000
- Revision:
- 0:21e183c9ef81
Programme final
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
LecomteDelys | 0:21e183c9ef81 | 1 | #include "mbed.h" |
LecomteDelys | 0:21e183c9ef81 | 2 | #include <iostream> |
LecomteDelys | 0:21e183c9ef81 | 3 | #include <string> |
LecomteDelys | 0:21e183c9ef81 | 4 | #include "MatchColors.h" |
LecomteDelys | 0:21e183c9ef81 | 5 | int main() { |
LecomteDelys | 0:21e183c9ef81 | 6 | |
LecomteDelys | 0:21e183c9ef81 | 7 | /*Instanciation du jeu*/ |
LecomteDelys | 0:21e183c9ef81 | 8 | MatchColors* jeu = new MatchColors(); |
LecomteDelys | 0:21e183c9ef81 | 9 | |
LecomteDelys | 0:21e183c9ef81 | 10 | /*Initialisation du jeu*/ |
LecomteDelys | 0:21e183c9ef81 | 11 | jeu->InitGame(); |
LecomteDelys | 0:21e183c9ef81 | 12 | } |
LecomteDelys | 0:21e183c9ef81 | 13 |