Tiro criado em lua, shotgun atira varios e outros efeitos legais possiveis agora
[Projeto-PCG.git] / shot.h
blobce367b0b95e1a337c782ffcdad6a7d9f70d48a7e
1 #ifndef SHOT_H
2 #define SHOT_H
4 #include "thing.h"
6 class Weapon;
7 class ShotManager;
9 class Shot: public Thing {
10 private:
11 Weapon* weapon;
12 public:
13 ShotManager* shotManager;
14 void desenha();
15 Shot(double x, double y, double angle, Weapon* w, ShotManager* s);
18 #endif