1 #ifndef PUYO_STORY_H
2 #define PUYO_STORY_H
3 
4 #include "PuyoCommander.h"
5 extern int NB_STORIES;
6 
7 class PuyoStory : public PuyoDrawable {
8   public:
9     PuyoStory(PuyoCommander *com, int num);
10     virtual ~PuyoStory();
11     void loop();
12     void draw();
13 
14     PuyoCommander *commander;
15 
16   private:
17     int num;
18 };
19 
20 #endif
21