Menudo puto lio de renamar coses, a vore si tot va quedant al lloc que els structs i els enums estan revolant i duplicats per tots llocs

This commit is contained in:
2024-10-11 20:12:50 +02:00
parent a9ca23138d
commit 3a6950f3a4
28 changed files with 445 additions and 454 deletions

View File

@@ -3,7 +3,7 @@
#include <string> // for string, basic_string
#include <vector> // for vector
enum class AssetType
enum class AssetType : int
{
BITMAP,
MUSIC,
@@ -42,7 +42,7 @@ private:
bool checkFile(std::string executable_path) const;
// Devuelve el nombre del tipo de recurso
std::string getTypeName(int type) const;
std::string getTypeName(AssetType type) const;
// Constructor
Asset(std::string path);