feat: refactoring

This commit is contained in:
2025-10-22 14:25:02 +02:00
parent 71f1b2c6d2
commit ea593feb8d
36 changed files with 220 additions and 71 deletions

View File

@ -4,6 +4,8 @@
#include <iostream>
#include <sstream>
namespace Engine {
FileManager::FileManager()
{
}
@ -30,4 +32,6 @@ std::string FileManager::read(const std::string &filename)
}
return fileStream.str();
}
}
}