diff options
Diffstat (limited to 'src/bullet.h')
-rw-r--r-- | src/bullet.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/bullet.h b/src/bullet.h new file mode 100644 index 0000000..6aee4b0 --- /dev/null +++ b/src/bullet.h @@ -0,0 +1,7 @@ +#include "object.h" + +class Bullet : public Object { + public: + Bullet(const Point &point, const Velocity &velocity) : Object(point, velocity) { + } +} |