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
Adicionando cabeca a caixa de colisao
[Projeto-PCG.git]
/
shotmanager.h
blob
0765d3efbb19ab4574ac6b1c89c1cc47efcfcfe2
1
#ifndef SHOTMANAGER_H
2
#define SHOTMANAGER_H
3
4
#include <vector>
5
6
class
Shot
;
7
8
class
ShotManager
{
9
private
:
10
std
::
vector
<
Shot
*>
shots
;
11
public
:
12
void
addShot
(
Shot
*
shot
);
13
void
desenha
();
14
void
move
();
15
void
deleteShot
(
Shot
*
shot
);
16
void
clearShots
();
17
};
18
19
#endif