diff --git a/fichier1/fichier1/Model/Partie.cs b/fichier1/fichier1/Model/Partie.cs index 8152681502ad8a6e2cb2c271c63e459565e42c5e..3bb0a3cce6c9e7cf19e78200222dd56f3b802500 100644 --- a/fichier1/fichier1/Model/Partie.cs +++ b/fichier1/fichier1/Model/Partie.cs @@ -6,5 +6,53 @@ namespace fichier1.Model { class Partie { + private List<string[]> correction; + private List<string[]> decoupage; + private int motCourant; + + public Partie(int nbMots, float complexite) + { + + } + + public List<string[]> genererMots(int nb, float complexite) + { + return null; + } + + public void formaterPropositions() + { + + } + + public string[] getMot(int nb) + { + return null; + } + + public void setMot(int nb, string[] mot) + { + + } + + public int compterPoints() + { + return 0; + } + + public string[] getCorrection(int nb) + { + return null; + } + + public string[] getMotCourant() + { + return null; + } + + public void validerMotCourant(string[] mot) + { + + } } }