* Add CowRenderer

This commit is contained in:
iProgramInCpp
2023-12-05 21:12:05 +02:00
parent 5882d2dc7f
commit efebfdd122
8 changed files with 235 additions and 4 deletions

View File

@@ -0,0 +1,17 @@
/********************************************************************
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 "QuadrupedModel.hpp"
class CowModel : public QuadrupedModel
{
public:
CowModel();
~CowModel();
};