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
Corrigindo a correção (é...) em game.h
[Projeto-PCG.git]
/
game.h
blob
70f1e12b373bb9b3f673753c16eb6c2820719d74
1
#ifndef GAME_H
2
#define GAME_H
3
4
#include
"player.h"
5
6
class
Game
{
7
public
:
8
Game
();
9
void
update
();
10
void
show
(
Player jogador
);
11
void
mainLoop
();
12
};
13
14
#endif