// // ShootMeter.h // // // Created by Matthew Pick on 12/7/14. // // #ifndef ____ShootMeter__ #define ____ShootMeter__ #include #include "Squirrel.h" class ShootMeter{ public: ShootMeter(float xPos, float yPos); bool draw(float max, float rightX); private: float topLeftX; float topLeftY; void drawMeter(float rightX); bool drawBar(float maxFreq, float rightX); int delayCounter; }; #endif /* defined(____ShootMeter__) */