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
Ajuste leve na velocidade permitindo movimentos mais sutis
[Projeto-PCG.git]
/
enemy.h
blob
56a6a049696933cb41faeef12616a4e2fe45945f
1
#ifndef ENEMY_H
2
#define ENEMY_H
3
4
#include
"shooter.h"
5
6
class
Enemy
:
public
Shooter
{
7
public
:
8
Enemy
(
Game
*
agame
);
9
void
die
();
10
void
think
();
11
double
distanceFromPlayer
();
12
virtual
void
collide
(
Thing
*
b
);
13
virtual
void
drawEquipment
();
14
};
15
16
#endif