#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