File: Spark.h

package info (click to toggle)
xbill 2.0-9
  • links: PTS
  • area: main
  • in suites: slink
  • size: 528 kB
  • ctags: 339
  • sloc: cpp: 1,803; makefile: 38; sh: 21
file content (16 lines) | stat: -rw-r--r-- 221 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef SPARK_H
#define SPARK_H

#include "Picture.h"

class Spark {
public:
	Picture pictures[2];
	int width, height;
	void draw();
	void load_pix();
	static const int speed = 5;
	int delay(unsigned int lev);
};

#endif