1 2 3 4 5 6 7
#include "object.h" class Bullet : public Object { public: Bullet(const Point &point, const Velocity &velocity) : Object(point, velocity) { } }