summaryrefslogtreecommitdiff
path: root/src/bullet.h
blob: ff9bb8086b18ab321257985701051a5a33db947a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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