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
17 lines
427 B
C++
17 lines
427 B
C++
#pragma once
|
|
#include "HumanoidMobRenderer.h"
|
|
|
|
class SkeletonRenderer : public HumanoidMobRenderer
|
|
{
|
|
private:
|
|
static ResourceLocation SKELETON_LOCATION;
|
|
static ResourceLocation WITHER_SKELETON_LOCATION;
|
|
|
|
public:
|
|
SkeletonRenderer();
|
|
|
|
protected:
|
|
virtual void scale(shared_ptr<LivingEntity> mob, float a);
|
|
void translateWeaponItem();
|
|
virtual ResourceLocation *getTextureLocation(shared_ptr<Entity> entity);
|
|
}; |