mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-11 15:17:17 +00:00
15 lines
397 B
C++
15 lines
397 B
C++
#pragma once
|
|
#include "MobRenderer.h"
|
|
|
|
class BlazeRenderer : public MobRenderer {
|
|
private:
|
|
static ResourceLocation BLAZE_LOCATION;
|
|
int modelVersion;
|
|
|
|
public:
|
|
BlazeRenderer();
|
|
|
|
virtual void render(std::shared_ptr<Entity> mob, double x, double y,
|
|
double z, float rot, float a);
|
|
virtual ResourceLocation* getTextureLocation(std::shared_ptr<Entity> mob);
|
|
}; |