diff options
Diffstat (limited to 'src/bullet.h')
-rw-r--r-- | src/bullet.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/bullet.h b/src/bullet.h new file mode 100644 index 0000000..ff9bb80 --- /dev/null +++ b/src/bullet.h @@ -0,0 +1,16 @@ +#ifndef BULLET_H +#define BULLET_H + +#include "velocity.h" +#include "point.h" +#include "UFO.h" + +class Bullet: public UFO +{ + public: + Bullet(); + void draw(); + void fire( Point point , float angle ); +}; + +#endif |