Arreglos en la estructura i format del codi

This commit is contained in:
2025-03-01 17:01:50 +01:00
parent 3562b139c3
commit 31cded15cc
35 changed files with 496 additions and 755 deletions

View File

@@ -1,7 +1,7 @@
#pragma once
#include <string> // for string
#include <vector> // for vector
#include <string> // for string
#include <vector> // for vector
// Struct para los logros
struct Achievement
@@ -45,7 +45,7 @@ private:
void saveToFile();
// Constructor
Cheevos(const std::string &file);
explicit Cheevos(const std::string &file);
// Destructor
~Cheevos();
@@ -76,5 +76,5 @@ public:
int unlocked();
// Devuelve el número total de logros
int count() { return cheevos_list_.size(); }
int size() { return cheevos_list_.size(); }
};