Files
4jcraft/minecraft/Minecraft.Client/net/minecraft/client/model/WitherBossModel.h
T
MatthewBeshay 7ddfaeb59e refactor: remove arrayWithLength, replace with std::vector
Eliminates the custom arrayWithLength<T> wrapper and all typedefs, replacing with std::vector<T> directly.
2026-03-31 12:06:19 +11:00

23 lines
826 B
C++

#pragma once
#include "geom/Model.h"
#include "geom/ModelPart.h"
class WitherBossModel : public Model {
private:
std::vector<ModelPart*> upperBodyParts;
std::vector<ModelPart*> heads;
public:
WitherBossModel();
int modelVersion();
virtual void render(std::shared_ptr<Entity> entity, float time, float r,
float bob, float yRot, float xRot, float scale,
bool usecompiled);
virtual void setupAnim(float time, float r, float bob, float yRot,
float xRot, float scale,
std::shared_ptr<Entity> entity,
unsigned int uiBitmaskOverrideAnim = 0);
virtual void prepareMobModel(std::shared_ptr<LivingEntity> mob, float time,
float r, float a);
};