migrate from dynamic::Value to dv::value & total erase namespace 'dynamic'

This commit is contained in:
MihailRis
2024-09-18 23:31:18 +03:00
parent d3ba4b2e3e
commit 34d2e6d400
69 changed files with 1247 additions and 2248 deletions
+3 -7
View File
@@ -12,11 +12,7 @@
#include "interfaces/Task.hpp"
#include "typedefs.hpp"
#include "Assets.hpp"
namespace dynamic {
class Map;
class List;
}
#include "data/dv.hpp"
class ResPaths;
class AssetsLoader;
@@ -61,9 +57,9 @@ class AssetsLoader {
void tryAddSound(const std::string& name);
void processPreload(
AssetType tag, const std::string& name, dynamic::Map* map
AssetType tag, const std::string& name, const dv::value& map
);
void processPreloadList(AssetType tag, dynamic::List* list);
void processPreloadList(AssetType tag, const dv::value& list);
void processPreloadConfig(const std::filesystem::path& file);
void processPreloadConfigs(const Content* content);
public: