mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-03-20 15:03:32 +00:00
25 lines
593 B
C++
Executable File
25 lines
593 B
C++
Executable File
#ifndef NET_MINECRAFT_CLIENT_MODEL__SheepFurModel_H__
|
|
#define NET_MINECRAFT_CLIENT_MODEL__SheepFurModel_H__
|
|
|
|
//package net.minecraft.client.model;
|
|
|
|
#include "QuadrupedModel.h"
|
|
|
|
class SheepFurModel: public QuadrupedModel
|
|
{
|
|
typedef QuadrupedModel super;
|
|
|
|
public:
|
|
SheepFurModel();
|
|
|
|
/*@Override*/
|
|
void prepareMobModel(Mob* mob, float time, float r, float a);
|
|
|
|
/*@Override*/
|
|
void setupAnim(float time, float r, float bob, float yRot, float xRot, float scale);
|
|
private:
|
|
float headXRot;
|
|
};
|
|
|
|
#endif /*NET_MINECRAFT_CLIENT_MODEL__SheepFurModel_H__*/
|