canvi de pc

This commit is contained in:
2025-02-05 10:17:49 +01:00
parent 0a9a92d4b7
commit 7e2021da70
3 changed files with 10 additions and 5 deletions
+6 -5
View File
@@ -14,12 +14,13 @@
// Estructura para las entradas de la tabla de recirds
struct HiScoreEntry
{
std::string name; // Nombre
int score; // Puntuación
std::string name; // Nombre
int score = 0; // Puntuación
bool one_credit_complete = false; // Indica si se ha conseguido 1CC
// Constructor
explicit HiScoreEntry(const std::string &n = "", int s = 0)
: name(n), score(s) {}
// Constructor
explicit HiScoreEntry(const std::string &n = "", int s = 0)
: name(n), score(s) {}
};
// Clase ManageHiScoreTable