mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 06:49:55 +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
20 lines
406 B
C++
20 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
|