feat: armorstand from decomp

This commit is contained in:
Lord_Cambion
2026-04-18 03:46:45 +02:00
parent 27d0a8ffc3
commit 383302eb2e
64 changed files with 2880 additions and 1574 deletions

View File

@@ -321,3 +321,14 @@ void ModelPart::mimic(ModelPart *o)
yRot = o->yRot;
zRot = o->zRot;
}
void ModelPart::copyModelPart(ModelPart* src, ModelPart* dst) {
if (!src || !dst) return;
dst->x = src->x;
dst->y = src->y;
dst->z = src->z;
dst->xRot = src->xRot;
dst->yRot = src->yRot;
dst->zRot = src->zRot;
}