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
Corrigido erro em game.h
[Projeto-PCG.git]
/
game.h
blob
fa083aeac65e70355404a296ad731ca949877e2c
1
#ifndef GAME_H
2
#define GAME_H
3
4
class
Game
{
5
public
:
6
Game
();
7
void
update
();
8
void
show
(
Player jogador
);
9
void
mainLoop
();
10
};
11
12
#endif