blob: 092713ece3c1c730f8c333379e9b35fad38f56fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef BULLETPATTERN_H
#define BULLETPATTERN_H
class BulletPattern {
protected:
float* bullets;
int num_bullets;
int stride;
public:
float color_r, color_g, color_b;
BulletPattern();
virtual void update(unsigned int time, unsigned int step);
void draw();
};
#endif
|