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 headers de lua
[Projeto-PCG.git]
/
player.h
blob
ea57a6ec2d7626dfe14702edfa8615535bf73669
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
void
desenha
();
12
};
13
14
#endif