contentpack removal feature + refactor

This commit is contained in:
MihailRis
2024-03-11 13:21:06 +03:00
parent 3f0c710a47
commit daaba374a3
24 changed files with 345 additions and 295 deletions
+7
View File
@@ -67,6 +67,13 @@ bool List::flag(size_t index) const {
}
}
Value* List::getValueWriteable(size_t index) const {
if (index > values.size()) {
throw std::runtime_error("index error");
}
return values.at(index).get();
}
List& List::put(std::string value) {
valvalue val;
val.str = new std::string(value);