#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