content pack dependency levels draft

This commit is contained in:
MihailRis
2024-04-04 06:09:43 +03:00
parent 13ae6c6950
commit f298d6ef1d
4 changed files with 32 additions and 16 deletions
+3 -1
View File
@@ -75,7 +75,9 @@ ContentPack ContentPack::read(fs::path folder) {
auto dependencies = root->list("dependencies");
if (dependencies) {
for (size_t i = 0; i < dependencies->size(); i++) {
pack.dependencies.push_back(dependencies->str(i));
pack.dependencies.push_back(
{DependencyLevel::required, dependencies->str(i)}
);
}
}