Files
wagic/projects/mtg/include/Effects.h
jean.chalard 01bd44025d J :
* Performance improvement for the deck editor when scrolling cards
  (transform 2*N*log(N)<Cmp1> + N*<read> into log(N)<Cmp1> +
  N*<read>). I expect this improvement to be much more significant,
  performance-wise, than last night's one.
2009-06-05 01:58:41 +00:00

12 lines
158 B
C++

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