aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/DefaultRenderer.h
blob: 04b953907ad97a2418d3c467f2c3b67098f0d0cb (plain)
1
2
3
4
5
6
7
8
9
#pragma once
#include "EntityRenderer.h"

class DefaultRenderer : public EntityRenderer
{
public:
	virtual void render(shared_ptr<Entity> entity, double x, double y, double z, float rot, float a);
	virtual ResourceLocation *getTextureLocation(shared_ptr<Entity> mob) { return NULL; };
};