add block.materials table

This commit is contained in:
MihailRis
2024-11-22 09:36:48 +03:00
parent a641099d36
commit 8543be87df
3 changed files with 23 additions and 0 deletions
+9
View File
@@ -8,6 +8,15 @@
#include "presets/ParticlesPreset.hpp"
#include "util/stringutil.hpp"
dv::value BlockMaterial::serialize() const {
return dv::object({
{"name", name},
{"stepsSound", stepsSound},
{"placeSound", placeSound},
{"breakSound", breakSound}
});
}
std::string to_string(BlockModel model) {
switch (model) {
case BlockModel::none: