1234567891011121314151617181920212223242526272829303132 |
- #ifndef ALLY_H
- #define ALLY_H
- #include "SpaceShip.h"
- class Ally : public SpaceShip
- {
- public:
- Ally();
- virtual ~Ally();
- void scroll( int rel );
- virtual void loadShape( std::string path );
- virtual void update();
- void enableThruster( bool state );
- protected:
- Sint16 m_xFront;
- bool m_thruster;
- };
- #endif
|