repo.or.cz
/
Projeto-PCG.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Consertando sumiço misterioso do Makefile
[Projeto-PCG.git]
/
shot.h
blob
e3b20efd2685a32cf2d545634c7ecad5be17d277
1
#ifndef SHOT_H
2
#define SHOT_H
3
4
#include
"thing.h"
5
6
class
Weapon
;
7
class
Game
;
8
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
);
19
};
20
21
#endif