Skip to content
Snippets Groups Projects
Commit cf666a53 authored by LENERTZ PIERRE's avatar LENERTZ PIERRE
Browse files

Merge branch 'master' into 'master'

gamecontroller methods

See merge request deleted_user_177013/t4-foc21!19
parents 7ac0a550 57e8980f
No related merge requests found
......@@ -21,8 +21,7 @@ namespace fichier1.Controllers
/// <returns>Un tableau contenant un string, representant un string pret a etre decoupe</returns>
public string[] getMotSuivant()
{
// TODO: implement
return null;
return game.getMotCourant();
}
/// <summary>
......@@ -31,7 +30,7 @@ namespace fichier1.Controllers
/// <param name="mot"></param>
public void validerMot(string[] mot)
{
// TODO: implement
game.validerMotCourant(mot);
}
/// <summary>
......@@ -41,8 +40,7 @@ namespace fichier1.Controllers
/// <returns>un tableau de string des morceaux de mot decoupes</returns>
public string[] getMot(int nb)
{
// TODO: implement
return null;
return game.getMot(nb);
}
/// <summary>
......@@ -52,8 +50,7 @@ namespace fichier1.Controllers
/// <returns>un tableau de string des morceaux de mot decoupes</returns>
public string[] getCorrection(int nb)
{
// TODO: implement
return null;
return game.getCorrection(nb);
}
/// <summary>
......@@ -62,7 +59,7 @@ namespace fichier1.Controllers
/// <returns>numero du mot</returns>
public int getCurrentWordNumber()
{
// TODO: implement
// TODO : implement
return 0;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment