Bestenliste

This commit is contained in:
2025-05-02 12:38:45 +02:00
parent dad3d8826d
commit b36d7a4274
4 changed files with 40 additions and 13 deletions

View File

@@ -39,6 +39,18 @@ class ScoreManager{
return allSortetScores.indexOf(score) + 1;
}
async getSplitedScoreCount(){
const allSortetScores = await this.getAllScores();
const count = Math.ceil(allSortetScores.lenght / 25);
return count;
}
async getSpiltedScore(count){
}
}
module.exports = ScoreManager;