duck-hunt-ds

Duck Hunt clone for Nintendo DS
git clone https://git.neuralcrash.com/duck-hunt-ds.git
Log | Files | Refs | LICENSE

Canard.hpp (307B)


      1 class Canard
      2 {
      3 	unsigned int sonId;
      4 	unsigned int sonTick;
      5 	bool estAbattu;
      6 	bool estEnvole;
      7 	int sonX;
      8 	int sonY;
      9 	int sonMouvement;
     10 public :
     11 	Canard(unsigned int);
     12 	~Canard();
     13 	void Afficher() const;
     14 	void Bouger();
     15 	bool getEstEnvole() const;
     16 	unsigned int getSonTick() const;
     17 	bool Tirer(int, int);
     18 };
     19