Files
wagic/projects/mtg/include/Effects.h
jean.chalard cb91a6e40c J :
* Match the .cpp
2009-06-15 00:56:30 +00:00

14 lines
196 B
C++

#ifndef _EFFECTS_H_
#define _EFFECTS_H_
#include <JGui.h>
class Effect : public JGuiObject
{
static int id_counter;
public:
Effect() : JGuiObject(++id_counter) {};
};
#endif // _EFFECTS_H_