home *** CD-ROM | disk | FTP | other *** search
- #ifndef __plasma_h
- #define __plasma_h
-
- #include "weapon.h"
-
- //--------------------------------------
- // Plasma
- // the stealth's weapons
- // draws itself
- //--------------------------------------
- class Plasma : public Weapon
- {
- // data
- private:
- protected:
- public:
-
- // functions
- private:
- protected:
- public:
- Plasma(); // default constructor
- void Reset(void);
- boolean Move(void);
- void OnDraw(void); // draws plasma's image
- boolean CheckForHeliCollision(void);
- boolean CheckForF15Collision(void);
- void initialize();
- };
-
- #endif //__plasma_h