Reticadas las classes de la carpeta utils

This commit is contained in:
2022-10-18 19:48:13 +02:00
parent 5c68006cb5
commit 07a9ba5b87
15 changed files with 846 additions and 504 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ Asset::~Asset()
void Asset::add(std::string file, enum assetType type, bool required)
{
item_t temp;
temp.file = executablePath + "/.." + file;
temp.file = executablePath + file;
temp.type = type;
temp.required = required;
fileList.push_back(temp);