mirror of
https://github.com/edubart/otclient.git
synced 2025-04-30 17:49:21 +02:00
22 lines
294 B
C++
22 lines
294 B
C++
#ifndef EFFECT_H
|
|
#define EFFECT_H
|
|
|
|
#include <global.h>
|
|
#include "thing.h"
|
|
|
|
class Effect;
|
|
typedef std::shared_ptr<Effect> EffectPtr;
|
|
|
|
class Effect : public Thing
|
|
{
|
|
public:
|
|
Effect();
|
|
|
|
virtual ThingAttributes *getAttributes();
|
|
void draw(int x, int y);
|
|
|
|
private:
|
|
};
|
|
|
|
#endif // EFFECT_H
|