forked from Kolyah35/minecraft-pe-0.6.1
24 lines
573 B
C++
Executable File
24 lines
573 B
C++
Executable File
#ifndef NET_MINECRAFT_CLIENT_MODEL__SheepModel_H__
|
|
#define NET_MINECRAFT_CLIENT_MODEL__SheepModel_H__
|
|
|
|
//package net.minecraft.client.model;
|
|
|
|
#include "QuadrupedModel.h"
|
|
|
|
class SheepModel: public QuadrupedModel
|
|
{
|
|
typedef QuadrupedModel super;
|
|
public:
|
|
SheepModel();
|
|
|
|
/*@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__SheepModel_H__*/
|