summaryrefslogtreecommitdiff
path: root/src/toughBird.h
blob: e5e6826a75736afed664ddd9d57ac2fb4e11606a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef TOUGHBIRD_H
#define TOUGHBIRD_H

#include "bird.h"
#include "bullet.h"
class ToughBird: public Bird
{
   public:
	   ToughBird ();
	   void draw();
	   int hit();
      void applyGravity();
   private:
      int health;
};

#endif