mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-05 15:55:45 +00:00
22 lines
343 B
C++
22 lines
343 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();
|
|
};
|
|
}
|
|
|
|
#endif
|