Select Git revision
HighScore.java
-
Mail Ladjali authoredMail Ladjali authored
HighScore.java 231 B
class HighScore{
Score[] top;
HighScore(){
this.top=new Score[100];
}
HighScore(int taillejeu){
int taille=100;
this.top=new Score[taille];
}
int getNbfreeSlot(){
}
}