Skip to content
Snippets Groups Projects
Commit 099f6ff0 authored by thest's avatar thest
Browse files

Merge branch 'master' of git.unistra.fr:deleted_user_177013/t4-foc21

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