mirror of
https://git.neolegacy.dev/neoStudiosLCE/neoLegacy.git
synced 2026-07-16 02:50:39 +00:00
+ Added Magma Block, Nether Wart Block, Bone Block, End Stone Block + All Beetroot Items + Polar Bear (excluding audio) + / now opens chat for commands
10 lines
255 B
C++
10 lines
255 B
C++
#pragma once
|
|
#include "QuadrupedModel.h"
|
|
|
|
class PolarBearModel : public QuadrupedModel
|
|
{
|
|
public:
|
|
PolarBearModel();
|
|
virtual void render(shared_ptr<Entity> entity, float time, float r, float bob, float yRot, float xRot, float scale, bool usecompiled);
|
|
};
|