Add Discord RPC back with new features, add beta splitscreen support, PR's from MCLCE used in this https://github.com/MCLCE/MinecraftConsoles/pull/1044 https://github.com/MCLCE/MinecraftConsoles/pull/1136 https://github.com/MCLCE/MinecraftConsoles/pull/1245
16 lines
365 B
C++
16 lines
365 B
C++
#pragma once
|
|
#include "MobRenderer.h"
|
|
|
|
class GiantMobRenderer : public MobRenderer
|
|
{
|
|
private:
|
|
static ResourceLocation ZOMBIE_LOCATION;
|
|
float _scale;
|
|
|
|
public:
|
|
GiantMobRenderer(Model *model, float shadow, float scale);
|
|
|
|
protected:
|
|
virtual void scale(shared_ptr<LivingEntity> mob, float a);
|
|
virtual ResourceLocation *getTextureLocation(shared_ptr<Entity> mob);
|
|
}; |