mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 12:42:11 +00:00
2793096b50
Conflicts: apps/openmw/CMakeLists.txt apps/openmw/mwbase/world.hpp apps/openmw/mwrender/renderingmanager.cpp apps/openmw/mwrender/renderingmanager.hpp apps/openmw/mwworld/worldimp.cpp apps/openmw/mwworld/worldimp.hpp
21 lines
406 B
C++
21 lines
406 B
C++
#ifndef _GAME_RENDER_CREATUREANIMATION_H
|
|
#define _GAME_RENDER_CREATUREANIMATION_H
|
|
|
|
#include "animation.hpp"
|
|
|
|
#include "components/nifogre/ogre_nif_loader.hpp"
|
|
|
|
|
|
namespace MWRender{
|
|
|
|
class CreatureAnimation: public Animation
|
|
{
|
|
public:
|
|
virtual ~CreatureAnimation();
|
|
CreatureAnimation(const MWWorld::Ptr& ptr);
|
|
virtual void runAnimation(float timepassed);
|
|
|
|
};
|
|
}
|
|
#endif
|