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
Tiro criado em lua, shotgun atira varios e outros efeitos legais possiveis agora
[Projeto-PCG.git]
/
shot.h
blob
ce367b0b95e1a337c782ffcdad6a7d9f70d48a7e
1
#ifndef SHOT_H
2
#define SHOT_H
3
4
#include
"thing.h"
5
6
class
Weapon
;
7
class
ShotManager
;
8
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
);
16
};
17
18
#endif