4jcraft/minecraft/Minecraft.Client/net/minecraft/client/model/SkiModel.h
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

22 lines
655 B
C++

#pragma once
#include "geom/Model.h"
#include "geom/ModelPart.h"
class SkiModel : public Model {
public:
std::vector<ModelPart*> cubes;
private:
bool leftSki;
public:
SkiModel(); // 4J added
SkiModel(bool leftSki);
void _init(bool leftSki); // 4J added
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);
};