4jcraft/Minecraft.Client/Rendering/EntityRenderers/DefaultRenderer.h
MatthewBeshay dfb0e3b03e refactor: replace NULL with nullptr across C++ codebase
Excludes vendored C libs (zlib, Miles, DirectXMath, boost, Iggy).
2026-03-30 16:25:52 +11:00

11 lines
342 B
C++

#pragma once
#include "EntityRenderer.h"
class DefaultRenderer : public EntityRenderer {
public:
virtual void render(std::shared_ptr<Entity> entity, double x, double y,
double z, float rot, float a);
virtual ResourceLocation* getTextureLocation(std::shared_ptr<Entity> mob) {
return nullptr;
};
};