home *** CD-ROM | disk | FTP | other *** search
- #ifndef __bullet_h
- #define __bullet_h
-
- #include "weapon.h"
-
- //--------------------------------------
- // Bullet
- // the F15's weapon
- // draws itself
- //--------------------------------------
- class Bullet : public Weapon
- {
- // data
- private:
- protected:
- public:
-
- // functions
- private:
- protected:
- public:
- Bullet();
- boolean Move(void);
- boolean CheckForCollision();
- void OnDraw(void);
- void initialize();
- };
-
- #endif //__bullet_h