mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 14:23:43 +00:00
16 lines
401 B
C++
16 lines
401 B
C++
#pragma once
|
|
#include "minecraft/client/model/geom/Model.h"
|
|
|
|
class ModelPart;
|
|
|
|
class SlimeModel : public Model {
|
|
public:
|
|
ModelPart* cube;
|
|
ModelPart *eye0, *eye1, *mouth;
|
|
|
|
SlimeModel(int vOffs);
|
|
|
|
virtual void render(std::shared_ptr<Entity> entity, float time, float r,
|
|
float bob, float yRot, float xRot, float scale,
|
|
bool usecompiled);
|
|
}; |