replace biomes.json with biomes.toml & make it combined object

This commit is contained in:
MihailRis
2024-10-13 21:50:39 +03:00
parent e7d7753d47
commit 7c56d8fd7f
12 changed files with 130 additions and 95 deletions
+2 -2
View File
@@ -322,11 +322,11 @@ void Engine::loadContent() {
// Load content
{
ContentLoader(&corePack, contentBuilder).load();
ContentLoader(&corePack, contentBuilder, *resPaths).load();
load_configs(corePack.folder);
}
for (auto& pack : contentPacks) {
ContentLoader(&pack, contentBuilder).load();
ContentLoader(&pack, contentBuilder, *resPaths).load();
load_configs(pack.folder);
}