mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-30 21:46:35 +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);
|
|
}; |