Skip to content
Snippets Groups Projects
Select Git revision
  • b73ff1a44446e6c17a0c1e95997714997745b84c
  • main default protected
2 results

HighScore.java

Blame
  • 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(){
            
        }
    }