mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 13:49:55 +00:00
24 lines
399 B
C++
24 lines
399 B
C++
|
#ifndef _GAME_RENDER_ACTIVATORANIMATION_H
|
||
|
#define _GAME_RENDER_ACTIVATORANIMATION_H
|
||
|
|
||
|
#include "animation.hpp"
|
||
|
|
||
|
namespace MWWorld
|
||
|
{
|
||
|
class Ptr;
|
||
|
}
|
||
|
|
||
|
namespace MWRender
|
||
|
{
|
||
|
class ActivatorAnimation : public Animation
|
||
|
{
|
||
|
public:
|
||
|
ActivatorAnimation(const MWWorld::Ptr& ptr);
|
||
|
virtual ~ActivatorAnimation();
|
||
|
|
||
|
virtual void runAnimation(float timepassed);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|