예제 #1
0
파일: main.cpp 프로젝트: brock37/Khorse
int main()
{
 
    /* initialize random */
    srand (time(NULL));

    cout << "Jeu des petits chevaux" << endl;
	system("sleep 1");

    Jeu game;
    Plateau& plateauJeu= game.getPlateau();
    game.jouerPartie();

    return 0;
}