* Add ChickenRenderer

This commit is contained in:
iProgramInCpp
2023-12-05 21:50:03 +02:00
parent efebfdd122
commit 3c433c2858
6 changed files with 187 additions and 2 deletions

View File

@@ -0,0 +1,30 @@
/********************************************************************
Minecraft: Pocket Edition - Decompilation Project
Copyright (C) 2023 iProgramInCpp
The following code is licensed under the BSD 1 clause license.
SPDX-License-Identifier: BSD-1-Clause
********************************************************************/
#pragma once
#include "Model.hpp"
class ChickenModel : public Model
{
public:
ChickenModel();
~ChickenModel();
void render(float, float, float, float, float, float) override;
void setupAnim(float, float, float, float, float, float) override;
private:
ModelPart m_head;
ModelPart m_unknown;
ModelPart m_body;
ModelPart m_leg1;
ModelPart m_leg2;
ModelPart m_wing1;
ModelPart m_wing2;
ModelPart m_beak;
ModelPart m_wattle;
};