blob: b3ffba6a9a06426abdcdb2780daa991379c7678c (
plain)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
#include "QuadrupedModel.h"
class CowModel : public QuadrupedModel
{
public:
CowModel();
// virtual void render(std::shared_ptr<Entity> entity, float time, float r, float bob, float yRot, float xRot, float scale, bool usecompiled);
// virtual void setupAnim(float time, float r, float bob, float yRot, float xRot, float scale);
};
|