0aedc098dc68d7bf167ae9273116b5cf50386b92
[supertux.git] / src / object / fireworks.h
1 #ifndef __FIREWORKS_H__
2 #define __FIREWORKS_H__
3
4 #include "video/drawing_context.h"
5 #include "special/game_object.h"
6 #include "timer.h"
7
8 class Fireworks : public SuperTux::GameObject
9 {
10 public:
11     Fireworks();
12     ~Fireworks();
13     
14     virtual void action(float elapsed_time);
15     virtual void draw(SuperTux::DrawingContext& context);
16
17 private:
18     Timer2 timer;
19 };
20
21 #endif
22