summaryrefslogtreecommitdiff
path: root/src/standardBird.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/standardBird.h')
-rw-r--r--src/standardBird.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/standardBird.h b/src/standardBird.h
new file mode 100644
index 0000000..73d87fe
--- /dev/null
+++ b/src/standardBird.h
@@ -0,0 +1,15 @@
+#ifndef STANDARDBIRD_H
+#define STANDARDBIRD_H
+
+#include "bird.h"
+
+class StandardBird: public Bird
+{
+ public:
+ StandardBird();
+ void draw();
+ int hit();
+ void applyGravity();
+};
+
+#endif