Lecomte Delys / MatchColors

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 #include <iostream>
00003 #include <string>
00004 #include "MatchColors.h"
00005 int main() {
00006     
00007     /*Instanciation du jeu*/
00008     MatchColors* jeu = new MatchColors();
00009     
00010     /*Initialisation du jeu*/
00011     jeu->InitGame();
00012 }
00013