summaryrefslogtreecommitdiff
path: root/bulletpattern.h
blob: 50d5844f3f84f961925a0f816a9ccc8cd21f8d41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef BULLETPATTERN_H
#define BULLETPATTERN_H

class BulletPattern {
	protected:
		float* bullets;
		int num_bullets;
	public:
		BulletPattern();
		void update(unsigned int time, unsigned int step);
		void draw();
};

#endif