From 0987666dc8d896a860ecf4fe8c08c0d8941da70d Mon Sep 17 00:00:00 2001 From: HUONG THOMAS <thomas.huong@etu.unistra.fr> Date: Tue, 30 Mar 2021 11:24:12 +0200 Subject: [PATCH] =?UTF-8?q?squelette=20m=C3=A9thodes=20classe=20Partie?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fichier1/fichier1/Model/Partie.cs | 48 +++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/fichier1/fichier1/Model/Partie.cs b/fichier1/fichier1/Model/Partie.cs index 8152681..3bb0a3c 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) + { + + } } } -- GitLab