mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-22 12:58:13 +05:00
This is one of the first commits in a plan to remove all `using namespace std;` lines in the entire codebase as it is considered anti-pattern today.
13 lines
323 B
C++
13 lines
323 B
C++
#pragma once
|
|
#include "MobRenderer.h"
|
|
|
|
class SlimeRenderer : public MobRenderer
|
|
{
|
|
private:
|
|
Model *armor;
|
|
public:
|
|
SlimeRenderer(Model *model, Model *armor, float shadow);
|
|
protected:
|
|
virtual int prepareArmor(std::shared_ptr<Mob> _slime, int layer, float a);
|
|
virtual void scale(std::shared_ptr<Mob> _slime, float a);
|
|
}; |