Consertando sumiço misterioso do Makefile
[Projeto-PCG.git] / shot.h
blobe3b20efd2685a32cf2d545634c7ecad5be17d277
1 #ifndef SHOT_H
2 #define SHOT_H
4 #include "thing.h"
6 class Weapon;
7 class Game;
9 class Shot: public Thing {
10 private:
11 Game* game;
12 public:
13 Polygon sprite;
14 Shot(double x, double y, double angle, double speed, double gravityRate, Weapon* w);
15 ~Shot();
16 void desenha();
17 virtual Polygon getCollision();
18 virtual void collide(Thing* b);
21 #endif