Skip to content
Snippets Groups Projects
Commit 5b404f06 authored by HUONG THOMAS's avatar HUONG THOMAS
Browse files

gamecontroller finished

parent 84cbfd8a
Branches
No related merge requests found
......@@ -5,8 +5,6 @@ using fichier1.Model;
namespace fichier1.Controllers
{
public class GameController : IGameController
{
private Partie game;
......@@ -59,8 +57,7 @@ namespace fichier1.Controllers
/// <returns>numero du mot</returns>
public int getCurrentWordNumber()
{
// TODO : implement
return 0;
return game.motCourant;
}
/// <summary>
......@@ -69,8 +66,7 @@ namespace fichier1.Controllers
/// <returns>nombre total de mots</returns>
public int getTotalWordNumber()
{
// TODO: implement
return 0;
return game.nbMots;
}
}
}
......@@ -10,7 +10,7 @@ namespace fichier1.Model
{
private List<string[]> correction;
private List<string[]> decoupage;
private int motCourant;
public int motCourant;
private readonly BddContext context;
private List<IObserver<Partie>> observers;
public int nbMots;
......
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