Space Sheep Xtreme Turbo Penguin Edition
Bonus.h
Aller à la documentation de ce fichier.
1 #ifndef BONUS_H
2 #define BONUS_H
3 
11 #include "MovableElement.h"
12 #include "TypeBonus.h"
13 
21 class Bonus : public MovableElement
22 {
23  private:
24  TypeBonus* my_type;
26  public:
34  Bonus(int x, int y, TypeBonus* type);
35 
43  TypeBonus* getType() const;
44 
45 };
46 
47 #endif