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
Criada classe Controle.
[Projeto-PCG.git]
/
player.h
blob
a546e7ee09b4f14bc1d0bdf12350a793af67a31e
1
#ifndef PLAYER_H
2
#define PLAYER_H
3
4
#include
"geometry.h"
5
6
class
Player
{
7
private
:
8
Ponto posicao
;
9
Vetor velocidade
;
10
public
:
11
Player
(
int
x
,
int
y
);
12
void
desenha
();
13
};
14
15
#endif