summaryrefslogtreecommitdiff
path: root/engine/bulletpattern.h
blob: 9acda5ffd0fef8e6ca0e2ec3f237851ba6d95a67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef BULLETPATTERN_H
#define BULLETPATTERN_H

class BulletPattern {
	protected:
		float* bullets;
		unsigned int num_bullets;
		unsigned int stride;
		unsigned int steps;
	public:
		float color_r, color_g, color_b;

		BulletPattern();
		virtual void update();
		void draw();
};

#endif