2011-11-24 06:48:54 +00:00
|
|
|
#ifndef _GAME_RENDER_CREATUREANIMATION_H
|
|
|
|
#define _GAME_RENDER_CREATUREANIMATION_H
|
|
|
|
|
|
|
|
#include "animation.hpp"
|
2011-12-12 03:40:00 +00:00
|
|
|
|
2013-01-06 05:12:08 +00:00
|
|
|
namespace MWWorld
|
|
|
|
{
|
|
|
|
class Ptr;
|
|
|
|
}
|
2011-11-24 06:48:54 +00:00
|
|
|
|
2013-01-06 05:12:08 +00:00
|
|
|
namespace MWRender
|
|
|
|
{
|
|
|
|
class CreatureAnimation : public Animation
|
2012-09-14 22:57:29 +00:00
|
|
|
{
|
2011-12-12 03:40:00 +00:00
|
|
|
public:
|
2012-09-14 22:57:29 +00:00
|
|
|
CreatureAnimation(const MWWorld::Ptr& ptr);
|
2013-01-06 05:12:08 +00:00
|
|
|
virtual ~CreatureAnimation();
|
2012-09-14 22:57:29 +00:00
|
|
|
};
|
2011-11-24 06:48:54 +00:00
|
|
|
}
|
2013-01-06 05:12:08 +00:00
|
|
|
|
2012-04-23 13:27:03 +00:00
|
|
|
#endif
|