mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-17 20:10:23 +03:00
18 lines
311 B
C++
18 lines
311 B
C++
#pragma once
|
|
|
|
#include "MobRenderer.hpp"
|
|
|
|
class HumanoidMobRenderer : public MobRenderer
|
|
{
|
|
public:
|
|
HumanoidMobRenderer(HumanoidModel*, float);
|
|
virtual void additionalRendering(Mob*, float) override;
|
|
virtual void onGraphicsReset() override;
|
|
|
|
void renderHand();
|
|
|
|
public:
|
|
HumanoidModel* m_pHumanoidModel;
|
|
};
|
|
|