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 hp em config, renomeando opçoes de config para tipos para ser mais generico
[Projeto-PCG.git]
/
player.h
blob
19a7bb89a129494cb802d615973c450079ae5da5
1
#ifndef PLAYER_H
2
#define PLAYER_H
3
4
#include
"game.h"
5
#include
"shooter.h"
6
7
class
Player
:
public
Shooter
{
8
public
:
9
Player
(
Game
*
agame
,
Ponto pos
,
Ponto speed
);
10
void
desenha
();
11
virtual
void
collide
(
Thing
*
b
);
12
int
hp
;
13
virtual
void
drawEquipment
();
14
};
15
16
#endif