PinkLiner.h 333 B

123456789101112131415161718192021
  1. #ifndef PINKLINER_H
  2. #define PINKLINER_H
  3. #include "../Car.h"
  4. class PinkLiner : public Car
  5. {
  6. /// Méthodes
  7. public:
  8. PinkLiner();
  9. virtual ~PinkLiner();
  10. virtual void init( b2World &world, float x, float y, float angle = 0.0f );
  11. /// Attributs
  12. protected:
  13. private:
  14. };
  15. #endif // PINKLINER_H