tibia-client/src/otclient/core/effect.h

20 lines
253 B
C++

#ifndef EFFECT_H
#define EFFECT_H
#include <framework/global.h>
#include "thing.h"
class Effect : public Thing
{
public:
Effect();
virtual const ThingAttributes& getAttributes();
void draw(int x, int y);
private:
};
#endif // EFFECT_H