Space Sheep Xtreme Turbo Penguin Edition
Tir.h
Aller à la documentation de ce fichier.
1 #ifndef TIR_H
2 #define TIR_H
3 
10 #include "MovableElement.h"
11 #include "TypeTir.h"
12 
19 class Tir : public MovableElement
20 {
21  private :
22  bool my_fromPlayer;
23  TypeTir* my_type;
24 
25  public :
26 
35  Tir(int x, int y, bool fromPlayer, TypeTir* type);
36 
47  Tir(int x, int y, int dx, int dy, bool fromPlayer, TypeTir* type);
48 
52  virtual ~Tir();
53 
54 
62  bool getPlayer() const;
63 
71  TypeTir* getType() const;
72 };
73 
74 #endif