home *** CD-ROM | disk | FTP | other *** search
- #ifndef __f15_h
- #define __f15_h
-
- #include "plane.h"
- #include "bullet.h"
-
- //--------------------------------------
- // F15
- // the F15 fighter
- // maintains a bullet ( his weapon ) list
- // draws itself
- //--------------------------------------
- class F15 : public Plane
- {
- // data
- private:
- protected:
- Bullet bullet[15];
- public:
-
- // functions
- private:
- protected:
- public:
- F15() {}
- void GetNewLocation(void);
- void Setup( Director* director );
- void Reset(void);
- void Move(void);
- void OnDraw(void);
- void FireBullet(void);
- void OnHit(int);
- void initialize();
- void SoundDestroy(void);
- };
-
- #endif //__f15_h