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

20 lines
253 B
C
Raw Normal View History

2011-08-15 16:11:24 +02:00
#ifndef EFFECT_H
#define EFFECT_H
#include <framework/global.h>
#include "thing.h"
class Effect : public Thing
{
public:
Effect();
2011-08-15 21:15:49 +02:00
virtual const ThingAttributes& getAttributes();
2011-08-15 16:11:24 +02:00
void draw(int x, int y);
private:
};
#endif // EFFECT_H