Corrigindo a correção (é...) em game.h
[Projeto-PCG.git] / game.h
blob70f1e12b373bb9b3f673753c16eb6c2820719d74
1 #ifndef GAME_H
2 #define GAME_H
4 #include "player.h"
6 class Game {
7 public:
8 Game();
9 void update();
10 void show(Player jogador);
11 void mainLoop();
14 #endif