#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