You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
450 B
C++
25 lines
450 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, const std::string &model);
|
|
virtual ~ActivatorAnimation();
|
|
|
|
void addLight(const ESM::Light *light);
|
|
void removeParticles();
|
|
};
|
|
}
|
|
|
|
#endif
|