canvi de pc
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user