#ifndef EFFECT_H #define EFFECT_H #include #include "thing.h" class Effect; typedef std::shared_ptr EffectPtr; class Effect : public Thing { public: Effect(); virtual ThingAttributes *getAttributes(); void draw(int x, int y); private: }; #endif // EFFECT_H