summaryrefslogtreecommitdiff
path: root/src/toughBird.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/toughBird.h')
-rw-r--r--src/toughBird.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/toughBird.h b/src/toughBird.h
new file mode 100644
index 0000000..e5e6826
--- /dev/null
+++ b/src/toughBird.h
@@ -0,0 +1,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