mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 16:43:39 +00:00
14 lines
355 B
C++
14 lines
355 B
C++
#pragma once
|
|
#include "Model.h"
|
|
|
|
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);
|
|
}; |