示例#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;
}