summaryrefslogtreecommitdiff
path: root/src/bullet.h
blob: 6aee4b0e42ec16c393c35acf077a972364e87830 (plain)
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) {
		}
}