memory-related refactor

This commit is contained in:
MihailRis
2024-05-19 07:09:58 +03:00
parent f47c7d00a2
commit c5f663b7cb
16 changed files with 205 additions and 209 deletions
+1 -7
View File
@@ -12,17 +12,11 @@ class EnginePaths;
namespace fs = std::filesystem;
namespace scripting {
class Environment;
}
class contentpack_error : public std::runtime_error {
std::string packId;
fs::path folder;
public:
contentpack_error(std::string packId,
fs::path folder,
std::string message);
contentpack_error(std::string packId, fs::path folder, std::string message);
std::string getPackId() const;
fs::path getFolder() const;