00001 #ifndef SPARK_H 00002 #define SPARK_H 00003 00004 #include "Picture.h" 00005 00006 class Spark { 00007 public: 00008 Picture pictures[2]; 00009 int width, height; 00010 void draw(); 00011 void load_pix(); 00012 static const int speed = 5; 00013 int delay(unsigned int lev); 00014 }; 00015 00016 #endif
1.4.2