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

squelette méthodes classe Partie

parent 5f4aa593
Branches
No related merge requests found
......@@ -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)
{
}
}
}
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