2011-11-24 01:48:54 -05:00
|
|
|
#ifndef _GAME_RENDER_CREATUREANIMATION_H
|
|
|
|
#define _GAME_RENDER_CREATUREANIMATION_H
|
|
|
|
|
|
|
|
#include "animation.hpp"
|
2011-12-11 22:40:00 -05:00
|
|
|
|
|
|
|
#include "components/nifogre/ogre_nif_loader.hpp"
|
|
|
|
|
|
|
|
|
2011-11-24 01:48:54 -05:00
|
|
|
namespace MWRender{
|
|
|
|
|
2011-12-11 22:40:00 -05:00
|
|
|
class CreatureAnimation: public Animation{
|
2012-04-23 15:27:03 +02:00
|
|
|
|
2011-12-11 22:40:00 -05:00
|
|
|
public:
|
2012-03-15 17:40:42 +01:00
|
|
|
virtual ~CreatureAnimation();
|
2012-04-23 15:27:03 +02:00
|
|
|
CreatureAnimation(const MWWorld::Ptr& ptr, OEngine::Render::OgreRenderer& _rend);
|
2012-07-13 03:51:58 -07:00
|
|
|
virtual void runAnimation(float timepassed);
|
2011-12-25 22:37:26 -05:00
|
|
|
|
2011-11-24 01:48:54 -05:00
|
|
|
};
|
|
|
|
}
|
2012-04-23 15:27:03 +02:00
|
|
|
#endif
|