* 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.
This commit is contained in:
jean.chalard
2009-06-05 01:58:41 +00:00
parent c822b245c1
commit 01bd44025d
5 changed files with 21 additions and 25 deletions

View File

@@ -1,9 +1,11 @@
#ifndef _EFFECTS_H_
#define _EFFECTS_H_
class Effect
{
#include <JGui.h>
class Effect : public JGuiObject
{
Effect(int id) : JGuiObject(id) {};
};
#endif // _EFFECTS_H_