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
Boneco completo
[Projeto-PCG.git]
/
player.h
blob
c0153050ffdcc73bff59fa2fe880cfc27d68939e
1
#ifndef PLAYER_H
2
#define PLAYER_H
3
4
#define CINTURA 0,-30
5
#define PESCOCO 0,-60
6
7
#include
"game.h"
8
#include
"geometry.h"
9
#include
"thing.h"
10
11
class
Game
;
12
13
class
Player
:
public
Thing
{
14
private
:
15
Game
*
game
;
16
Ponto
leftFeet
();
17
Ponto
rightFeet
();
18
Ponto
body
();
19
Ponto
leftArm
();
20
Ponto
rightArm
();
21
public
:
22
Player
(
Game
*
agame
);
23
void
desenha
();
24
virtual
Rect
getBaseRect
();
25
};
26
27
#endif